/* RESET GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: #000;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #FCF6DB !important;
}

/* HEADER PRINCIPAL - Medidas exactas de Figma */
.header-principal {
    position: fixed;
    top: 28px;
    left: 32px;
    right: 32px;
    height: 71px;
    max-width: 1220px;
    margin: 0 auto;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-custom {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 11px;
    padding: 8px 0;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 3px 3px rgba(0, 0, 0, 0.5);
    height: 71px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-custom .container {
    max-width: 1220px;
    padding: 0 32px;
    width: 100%;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 42px;
    width: 115px;
    transition: transform 0.3s ease;
}

/* Layout para centrado perfecto */
.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.navbar-left {
    flex: 1;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 13px;
    margin: 0 20px;
    line-height: 100%;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 12px;
    border-radius: 6px;
}

.navbar-nav .nav-link:hover {
    color: #f0f0f0 !important;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link:active {
    transform: translateY(0);
}

/* Íconos sociales */
.social-icons {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 0px;
    z-index: 10;
}

.social-icons a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 17.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.15);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.social-icons a:active {
    transform: scale(1);
}

/* Botón del menú móvil */
.navbar-toggler {
    border: none;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

/* SECCIÓN SERVICIOS */
.seccion-servicios {
    position: relative;
    width: 100%;
    height: 434px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen de fondo */
.bg-servicios {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Capa oscura encima de la imagen */
.overlay-servicios {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 4, 10, 0.53);
    z-index: 2;
}

/* Contenedor del título centrado */
.contenedor-servicios {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1283px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    margin: 0 auto;
}

/* Caja que contiene el título con fondo blur */
.titulo-box {
    padding: 16px 42px;
}

/* Texto del título */
.titulo-servicios {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* SECCIÓN QUIÉNES SOMOS */
.quienes-somos {
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.quienes-somos h1 {
    color: #47060E;
    font-size: 44px;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -1.9%;
}

.quienes-somos h2 {
    color: #47060E;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 120%;
    letter-spacing: -1.9%;
}

.quienes-somos h3 {
    font-weight: 700;
    font-size: 35px;
    color: #28040A;
    max-width: 794px;
    margin: 0 auto 30px auto;
    letter-spacing: -1.9%;
    line-height: 120%;
}

.quienes-somos p {
    max-width: 967px;
    margin: 0 auto 16px auto;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
}

/* Contenedor general */
.coffee-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Título principal */
.main-title {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #47060E;
    line-height: 50px;
    letter-spacing: 0%;
}

/* Secciones de contenido */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    justify-content: center;
}

.content-section.reverse {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
}

/* Centrado vertical */
.content-section>div,
.content-section.reverse>div {
    align-self: center;
}

/* Ajuste visual de alineación entre secciones */
@media (min-width: 769px) {
    .content-section .text-content {
        margin-top: 30px;
    }

    .content-section.reverse .text-content {
        margin-top: -50px;
    }
}

/* Contenedor de imagen */
.image-container-1 {
    border-radius: 41px;
    overflow: hidden;
    height: 333px;
    width: 481px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-left: 10px;
}

.image-container-2 {
    border-radius: 41px;
    overflow: hidden;
    height: 423px;
    width: 437px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-container-1 img,
.image-container-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenido textual */
.section-subtitle {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 150%;
    letter-spacing: -1.9%;
    color: #47060E;
    width: 492px;
}

.highlight-text {
    font-size: 35px;
    font-weight: 700;
    color: #28040A;
    line-height: 40px;
    letter-spacing: -1.9%;
}

.section-text {
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    letter-spacing: -1.9%;
    font-weight: 400;
    width: 407px;
}

/* Títulos tecnológicos */
.tech-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #47060E;
    letter-spacing: -1.9%;
    line-height: 150%;
    width: 566px;
}

.anchos {
    width: 487px;
}

.tech-highlight {
    font-size: 30px;
    font-weight: 500;
    color: #28040A;
    display: block;
    margin-bottom: 12px;
    width: 504px;
}

.tech-highlight strong {
    font-weight: 800;
}

/* === IMAGEN FULL === */
.imagen-full {
    width: 100%;
    height: 257px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.imagen-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === FOOTER === */
.footer-coffeecol {
    background-image: url('../assets/imagenes/banner17.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.footer-coffeecol::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(13, 43, 2, 0.9);
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 1;
    position: relative;
}

.footer-logo {
    width: 164px;
    height: 155px;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav a:hover {
    color: #E8E8E8;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer-social {
    display: flex;
    gap: 0px;
    margin-top: 5px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    color: white;
}

.footer-social a,
.footer-social a i {
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* =============================================== */
/* RESPONSIVE DESIGN - MEDIA QUERIES OPTIMIZADAS */
/* =============================================== */

/* Pantallas extra grandes (1400px+) */
@media (min-width: 1400px) {
    .coffee-section {
        max-width: 1300px;
    }
    
    .content-section {
        gap: 80px;
    }
    
    .image-container-1 {
        width: 520px;
        height: 360px;
    }
    
    .image-container-2 {
        width: 470px;
        height: 450px;
    }
}

/* Tablets horizontales y pantallas medianas (992px - 1399px) */
@media (max-width: 1399.98px) {
    .coffee-section {
        max-width: 1100px;
    }
}

/* Tablets horizontales (992px - 1199px) */
@media (max-width: 1199.98px) {
    /* Header */
    .header-principal {
        left: 20px;
        right: 20px;
        top: 20px;
    }

    .navbar-custom .container {
        padding: 0 20px;
    }

    /* Sección Servicios */
    .seccion-servicios {
        height: 400px;
    }

    .titulo-servicios {
        font-size: 32px;
    }

    /* Quiénes Somos */
    .quienes-somos {
        padding: 50px 20px;
    }

    .quienes-somos h1 {
        font-size: 40px;
        margin-bottom: 35px;
    }

    .quienes-somos h2 {
        font-size: 28px;
    }

    .quienes-somos h3 {
        font-size: 32px;
        max-width: 700px;
    }

    .quienes-somos p {
        max-width: 850px;
        font-size: 17px;
    }

    /* Coffee Section */
    .coffee-section {
        padding: 50px 20px;
        max-width: 1000px;
    }

    .main-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .content-section {
        gap: 50px;
        margin-bottom: 70px;
    }

    .image-container-1 {
        width: 450px;
        height: 310px;
        margin-left: 0;
    }

    .image-container-2 {
        width: 410px;
        height: 390px;
    }

    .section-subtitle,
    .tech-title,
    .tech-highlight,
    .section-text,
    .anchos {
        width: auto;
        max-width: 480px;
    }

    .section-subtitle {
        font-size: 28px;
    }

    .highlight-text {
        font-size: 32px;
    }

    .tech-title {
        font-size: 40px;
    }

    .tech-highlight {
        font-size: 28px;
    }

    .section-text {
        font-size: 17px;
    }
}

/* Tablets medianas (768px - 991px) */
@media (max-width: 991.98px) {
    /* Header responsive para tablets */
    .header-principal {
        left: 16px;
        right: 16px;
        top: 16px;
        height: auto;
        min-height: 71px;
    }

    .navbar-custom {
        height: auto;
        min-height: 71px;
        padding: 12px 0;
    }

    .navbar-custom .container {
        padding: 0 16px;
    }

    .navbar-collapse {
        flex-direction: column;
        align-items: stretch;
    }

    .navbar-left,
    .navbar-center,
    .navbar-right {
        flex: none;
        width: 100%;
    }

    .navbar-center {
        justify-content: center;
        margin: 15px 0;
    }

    .navbar-right {
        justify-content: center;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 8px;
    }

    .navbar-nav .nav-link {
        margin: 0 10px;
        padding: 12px 16px;
        text-align: center;
    }

    /* Sección servicios para tablets */
    .seccion-servicios {
        height: 350px;
    }

    .titulo-servicios {
        font-size: 28px;
    }

    .titulo-box {
        padding: 12px 32px;
    }

    /* Sección quiénes somos para tablets */
    .quienes-somos {
        padding: 45px 16px;
    }

    .quienes-somos h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .quienes-somos h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .quienes-somos h3 {
        font-size: 28px;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .quienes-somos p {
        font-size: 16px;
        line-height: 140%;
        max-width: 100%;
        margin-bottom: 14px;
    }

    /* Coffee section para tablets */
    .coffee-section {
        padding: 40px 16px;
    }

    .main-title {
        font-size: 34px;
        margin-bottom: 45px;
        line-height: 40px;
    }

    .content-section,
    .content-section.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
        margin-bottom: 60px;
    }

    .image-container-1,
    .image-container-2 {
        margin: 0 auto;
        width: 85%;
        max-width: 450px;
        height: 300px;
        border-radius: 30px;
    }

    .section-subtitle {
        font-size: 24px;
        width: auto;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .highlight-text {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 15px;
    }

    .tech-title {
        font-size: 34px;
        width: auto;
        max-width: 100%;
        line-height: 40px;
    }

    .tech-highlight {
        font-size: 24px;
        width: auto;
        max-width: 100%;
    }

    .section-text,
    .anchos {
        width: auto;
        max-width: 100%;
        font-size: 16px;
    }

    /* Elimina márgenes específicos en tablets */
    .content-section .text-content,
    .content-section.reverse .text-content {
        margin-top: 0;
    }
}

/* Móviles grandes (576px - 767px) */
@media (max-width: 767.98px) {
    /* Header para móviles grandes */
    .header-principal {
        left: 12px;
        right: 12px;
        top: 12px;
    }

    .navbar-brand img {
        height: 36px;
        width: auto;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 10px 12px;
    }

    .social-icons {
        padding: 4px 10px;
    }

    .social-icons a {
        width: 22px;
        height: 22px;
        font-size: 16px;
    }

    /* Sección servicios para móviles grandes */
    .seccion-servicios {
        height: 280px;
    }

    .titulo-servicios {
        font-size: 24px;
        line-height: 28px;
    }

    .titulo-box {
        padding: 10px 24px;
    }

    .contenedor-servicios {
        padding: 0 20px;
    }

    /* Sección quiénes somos para móviles grandes */
    .quienes-somos {
        padding: 35px 12px;
    }

    .quienes-somos h1 {
        font-size: 30px;
        margin-bottom: 25px;
        line-height: 130%;
    }

    .quienes-somos h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .quienes-somos h3 {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 115%;
    }

    .quienes-somos p {
        font-size: 15px;
        line-height: 135%;
        margin-bottom: 12px;
    }

    /* Coffee section para móviles grandes */
    .coffee-section {
        padding: 30px 12px;
    }

    .main-title {
        font-size: 28px;
        margin-bottom: 35px;
        line-height: 32px;
    }

    .content-section {
        gap: 30px;
        margin-bottom: 50px;
    }

    .image-container-1,
    .image-container-2 {
        width: 90%;
        height: 260px;
        border-radius: 24px;
    }

    .section-subtitle {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .highlight-text {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 12px;
    }

    .tech-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 8px;
    }

    .tech-highlight {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .section-text {
        font-size: 15px;
        line-height: 140%;
    }

    /* Imagen full para móviles grandes */
    .imagen-full {
        height: 220px;
    }

    /* Footer para móviles grandes */
    .footer-coffeecol {
        padding: 30px 12px;
    }

    .footer-logo {
        width: 100px;
        height: 94px;
    }

    .footer-nav {
        gap: 12px;
        margin: 8px 0;
    }

    .footer-nav a {
        font-size: 12px;
    }

    .footer-social {
        gap: 12px;
        margin-top: 10px;
    }

    .footer-social a {
        width: 22px;
        height: 22px;
    }
}

/* Móviles medianos (480px - 575px) */
@media (max-width: 575.98px) {
    /* Header para móviles medianos */
    .header-principal {
        left: 10px;
        right: 10px;
        top: 10px;
    }

    .navbar-custom .container {
        padding: 0 12px;
    }

    .navbar-brand img {
        height: 34px;
    }

    .navbar-nav .nav-link {
        font-size: 13px;
        margin: 0 8px;
        padding: 9px 12px;
    }

    .social-icons {
        padding: 3px 8px;
    }

    .social-icons a {
        width: 20px;
        height: 20px;
        font-size: 15px;
    }

    /* Sección servicios para móviles medianos */
    .seccion-servicios {
        height: 260px;
    }

    .contenedor-servicios {
        padding: 0 16px;
    }

    .titulo-servicios {
        font-size: 22px;
        line-height: 26px;
    }

    .titulo-box {
        padding: 8px 20px;
    }

    /* Sección quiénes somos para móviles medianos */
    .quienes-somos {
        padding: 30px 10px;
    }

    .quienes-somos h1 {
        font-size: 27px;
        margin-bottom: 22px;
        line-height: 125%;
    }

    .quienes-somos h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .quienes-somos h3 {
        font-size: 22px;
        margin-bottom: 18px;
        line-height: 110%;
    }

    .quienes-somos p {
        font-size: 14px;
        line-height: 130%;
        margin-bottom: 10px;
    }

    /* Coffee section para móviles medianos */
    .coffee-section {
        padding: 25px 10px;
    }

    .main-title {
        font-size: 25px;
        margin-bottom: 30px;
        line-height: 29px;
    }

    .content-section {
        gap: 25px;
        margin-bottom: 45px;
    }

    .image-container-1,
    .image-container-2 {
        width: 95%;
        height: 240px;
        border-radius: 20px;
    }

    .section-subtitle {
        font-size: 19px;
        margin-bottom: 7px;
        line-height: 125%;
    }

    .highlight-text {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .tech-title {
        font-size: 25px;
        line-height: 29px;
        margin-bottom: 7px;
    }

    .tech-highlight {
        font-size: 19px;
        margin-bottom: 7px;
        line-height: 125%;
    }

    .section-text {
        font-size: 14px;
        line-height: 135%;
    }

    /* Imagen full para móviles medianos */
    .imagen-full {
        height: 200px;
    }

    /* Footer para móviles medianos */
    .footer-coffeecol {
        padding: 25px 10px;
    }

    .footer-logo {
        width: 85px;
        height: 80px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }

    .footer-nav a {
        font-size: 11px;
    }

    .footer-social {
        gap: 10px;
        margin-top: 12px;
    }

    .footer-social a {
        width: 20px;
        height: 20px;
    }
}

/* Móviles pequeños (hasta 479px) */
@media (max-width: 479.98px) {
    /* Header para móviles pequeños */
    .header-principal {
        left: 8px;
        right: 8px;
        top: 8px;
    }

    .navbar-custom .container {
        padding: 0 10px;
    }

    .navbar-brand img {
        height: 30px;
    }

    .navbar-nav .nav-link {
        font-size: 12px;
        margin: 0 6px;
        padding: 8px 10px;
    }

    .social-icons {
        padding: 2px 6px;
    }

    .social-icons a {
        width: 18px;
        height: 18px;
        font-size: 13px;
    }

    /* Sección servicios para móviles pequeños */
    .seccion-servicios {
        height: 240px;
    }

    .contenedor-servicios {
        padding: 0 12px;
    }

    .titulo-servicios {
        font-size: 20px;
        line-height: 24px;
    }

    .titulo-box {
        padding: 6px 16px;
    }

    /* Sección quiénes somos para móviles pequeños */
    .quienes-somos {
        padding: 25px 8px;
    }

    .quienes-somos h1 {
        font-size: 24px;
        margin-bottom: 18px;
        line-height: 120%;
    }

    .quienes-somos h2 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .quienes-somos h3 {
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 105%;
    }

    .quienes-somos p {
        font-size: 13px;
        line-height: 125%;
        margin-bottom: 8px;
    }

    /* Coffee section para móviles pequeños */
    .coffee-section {
        padding: 20px 8px;
    }

    .main-title {
        font-size: 22px;
        margin-bottom: 25px;
        line-height: 26px;
    }

    .content-section {
        gap: 20px;
        margin-bottom: 40px;
    }

    .image-container-1,
    .image-container-2 {
        width: 100%;
        height: 220px;
        border-radius: 16px;
    }

    .section-subtitle {
        font-size: 17px;
        margin-bottom: 6px;
        line-height: 120%;
    }

    .highlight-text {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 8px;
    }

    .tech-title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 6px;
    }

    .tech-highlight {
        font-size: 17px;
        margin-bottom: 6px;
        line-height: 120%;
    }

    .section-text {
        font-size: 13px;
        line-height: 130%;
    }

    /* Imagen full para móviles pequeños */
    .imagen-full {
        height: 180px;
    }

    /* Footer para móviles pequeños */
    .footer-coffeecol {
        padding: 20px 8px;
    }

    .footer-logo {
        width: 70px;
        height: 66px;
    }

    .footer-nav a {
        font-size: 10px;
    }

    .footer-social a {
        width: 18px;
        height: 18px;
    }
}

/* Móviles muy pequeños (hasta 374px) */
@media (max-width: 374.98px) {
    .header-principal {
        left: 4px;
        right: 4px;
        top: 4px;
    }

    .navbar-custom .container {
        padding: 0 8px;
    }

    .navbar-brand img {
        height: 26px;
    }

    .titulo-servicios {
        font-size: 18px;
        line-height: 22px;
    }

    .quienes-somos h1 {
        font-size: 22px;
        line-height: 115%;
    }

    .quienes-somos h2 {
        font-size: 16px;
    }

    .quienes-somos h3 {
        font-size: 18px;
        line-height: 100%;
    }

    .quienes-somos p {
        font-size: 12px;
        line-height: 120%;
    }

    .main-title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .highlight-text {
        font-size: 18px;
        line-height: 22px;
    }

    .tech-title {
        font-size: 20px;
        line-height: 24px;
    }

    .tech-highlight {
        font-size: 16px;
    }

    .section-text {
        font-size: 12px;
        line-height: 125%;
    }

    .image-container-1,
    .image-container-2 {
        height: 200px;
        border-radius: 12px;
    }

    .imagen-full {
        height: 160px;
    }

    .footer-logo {
        width: 60px;
        height: 56px;
    }
}

/* Ajuste adicional para pantallas grandes (1200px+) */
@media (min-width: 1200px) {
    .header-principal {
        top: 28px;
        left: 32px;
        right: 32px;
    }

    .content-section {
        gap: 60px;
    }
}
/* Base styles for image containers */
.image-container {
    position: absolute;
}

.coffee-ms img,
.object-0 img,
.object-1 img,
.object-2 img,
.object-3 img,
.coffeee-xr img {
    position: absolute;
}

/* Large screens (1320px and above) - Original sizes Melo */
@media (min-width: 1288px) {
    .coffee-ms img {
        width: 290.48px;
        height: 290.48px;
        top: -1355px;
        left: -108px;
        transform: rotate(-25.25deg);
    }
    
    .object-0 img {
        width: 280.24px;
        height: 464.64px;
        top: -1930.7px;
        left: 0px;
    }
    
    .object-1 img {
        width: 380.27px;
        height: 400.06px;
        top: -1830.09px;
        left: 1140.02px;
    }
    
    .object-2 img {
        width: 165.27px;
        height: 418.06px;
        top: -827.37px;
        left: 0px;
    }
    
    .object-3 img {
        width: 361.73px;
        height: 545.83px;
        top: -705.09px;
        left: 1158.02px;
    }
    
    .coffeee-xr img {
        width: 290.48px;
        height: 290.48px;
        top: -260px;
        left: 1182px;
        transform: rotate(-25.25deg);
    }
}

/* Large screens (1320px and above) - Original sizes Melo */
@media (max-width: 1287.99px) and (min-width: 1284px) {
    .coffee-ms img {
        width: 250.48px;
        height: 250.48px;
        top: -1295px;
        left: -103px;
        transform: rotate(-25.25deg);
    }
    
    .object-0 img {
        width: 230.24px;
        height: 324.64px;
        top: -1815.7px;
        left: 0px;
    }
    
    .object-1 img {
        width: 360.27px;
        height: 340.06px;
        top: -1763.09px;
        left: 910.02px;
    }
    
    .object-2 img {
        width: 125.27px;
        height: 418.06px;
        top: -797.37px;
        left: 0px;
    }
    
    .object-3 img {
        width: 261.73px;
        height: 545.83px;
        top: -692.09px;
        left: 1008.02px;
    }
    
    .coffeee-xr img {
        width: 250.48px;
        height: 250.48px;
        top: -235px;
        left: 972px;
        transform: rotate(-25.25deg);
    }
}

/* Large screens (1320px and above) - Original sizes Melo */
@media (max-width: 1283.99px) and (min-width: 1279px) {
    .coffee-ms img {
        width: 250.48px;
        height: 250.48px;
        top: -1295px;
        left: -103px;
        transform: rotate(-25.25deg);
    }
    
    .object-0 img {
        width: 230.24px;
        height: 324.64px;
        top: -1815.7px;
        left: 0px;
    }
    
    .object-1 img {
        width: 360.27px;
        height: 340.06px;
        top: -1763.09px;
        left: 903.02px;
    }
    
    .object-2 img {
        width: 125.27px;
        height: 418.06px;
        top: -797.37px;
        left: 0px;
    }
    
    .object-3 img {
        width: 261.73px;
        height: 545.83px;
        top: -692.09px;
        left: 1002.02px;
    }
    
    .coffeee-xr img {
        width: 250.48px;
        height: 250.48px;
        top: -235px;
        left: 972px;
        transform: rotate(-25.25deg);
    }
}

/* Large screens (1320px and above) - Original sizes Melo */
@media (max-width: 1278.99px) and (min-width: 1267px) {
    .coffee-ms img {
        width: 250.48px;
        height: 250.48px;
        top: -1295px;
        left: -103px;
        transform: rotate(-25.25deg);
    }
    
    .object-0 img {
        width: 230.24px;
        height: 324.64px;
        top: -1815.7px;
        left: 0px;
    }
    
    .object-1 img {
        width: 360.27px;
        height: 340.06px;
        top: -1763.09px;
        left: 890.02px;
    }
    
    .object-2 img {
        width: 125.27px;
        height: 418.06px;
        top: -797.37px;
        left: 0px;
    }
    
    .object-3 img {
        width: 261.73px;
        height: 545.83px;
        top: -692.09px;
        left: 990.02px;
    }
    
    .coffeee-xr img {
        width: 250.48px;
        height: 250.48px;
        top: -235px;
        left: 952px;
        transform: rotate(-25.25deg);
    }
}

/* Large screens (1320px and above) - Original sizes */
@media (max-width: 1266.99px) and (min-width: 1255px) {
    .coffee-ms img {
        width: 230.48px;
        height: 230.48px;
        top: -1295px;
        left: -93px;
        transform: rotate(-25.25deg);
    }
    
    .object-0 img {
        width: 210.24px;
        height: 324.64px;
        top: -1815.7px;
        left: 0px;
    }
    
    .object-1 img {
        width: 360.27px;
        height: 340.06px;
        top: -1763.09px;
        left: 880.02px;
    }
    
    .object-2 img {
        width: 105.27px;
        height: 418.06px;
        top: -797.37px;
        left: 0px;
    }
    
    .object-3 img {
        width: 261.73px;
        height: 545.83px;
        top: -692.09px;
        left: 975.02px;
    }
    
    .coffeee-xr img {
        width: 220.48px;
        height: 220.48px;
        top: -235px;
        left: 932px;
        transform: rotate(-25.25deg);
    }
}

/* Large screens (1320px and above) - Original sizes */
@media (max-width: 1254.99px) and (min-width: 1240px) {
    .coffee-ms img {
        width: 230.48px;
        height: 230.48px;
        top: -1295px;
        left: -93px;
        transform: rotate(-25.25deg);
    }
    
    .object-0 img {
        width: 210.24px;
        height: 324.64px;
        top: -1815.7px;
        left: 0px;
    }
    
    .object-1 img {
        width: 360.27px;
        height: 460.06px;
        top: -1788.09px;
        left: 865.02px;
    }
    
    .object-2 img {
        width: 95.27px;
        height: 418.06px;
        top: -797.37px;
        left: 0px;
    }
    
    .object-3 img {
        width: 261.73px;
        height: 545.83px;
        top: -682.09px;
        left: 965.02px;
    }
    
    .coffeee-xr img {
        width: 220.48px;
        height: 220.48px;
        top: -225px;
        left: 922px;
        transform: rotate(-25.25deg);
    }
}

/* Large screens (1320px and above) - Original sizes */
@media (max-width: 1239.99px) and (min-width: 1226px) {
    .coffee-ms img {
        width: 230.48px;
        height: 230.48px;
        top: -1295px;
        left: -93px;
        transform: rotate(-25.25deg);
    }
    
    .object-0 img {
        width: 210.24px;
        height: 324.64px;
        top: -1815.7px;
        left: 0px;
    }
    
    .object-1 img {
        width: 260.27px;
        height: 430.06px;
        top: -1783.09px;
        left: 950.02px;
    }
    
    .object-2 img {
        width: 95.27px;
        height: 418.06px;
        top: -797.37px;
        left: 0px;
    }
    
    .object-3 img {
        width: 161.73px;
        height: 545.83px;
        top: -672.09px;
        left: 1048.02px;
    }
    
    .coffeee-xr img {
        width: 220.48px;
        height: 220.48px;
        top: -225px;
        left: 922px;
        transform: rotate(-25.25deg);
    }
}

/* Large screens (1320px and above) - Original sizes */
@media (max-width: 1225.99px) and (min-width: 1210px) {
    .coffee-ms img {
        width: 230.48px;
        height: 230.48px;
        top: -1295px;
        left: -93px;
        transform: rotate(-25.25deg);
    }
    
    .object-0 img {
        width: 210.24px;
        height: 324.64px;
        top: -1815.7px;
        left: 0px;
    }
    
    .object-1 img {
        width: 240.27px;
        height: 410.06px;
        top: -1778.09px;
        left: 953.02px;
    }
    
    .object-2 img {
        width: 75.27px;
        height: 418.06px;
        top: -797.37px;
        left: 0px;
    }
    
    .object-3 img {
        width: 141.73px;
        height: 545.83px;
        top: -672.09px;
        left: 1052.02px;
    }
    
    .coffeee-xr img {
        width: 200.48px;
        height: 200.48px;
        top: -225px;
        left: 922px;
        transform: rotate(-25.25deg);
    }
}

/* Hide elements on small screens */
@media (max-width: 1209.99px) {
    .image-container {
        display: none !important;
    }
    
    .coffee-ms,
    .object-0,
    .object-1,
    .object-2,
    .object-3,
    .coffeee-xr {
        display: none !important;
    }
}