/* ================================================
   VARIABLES
   ================================================ */
:root {
    /* Color verde oscuro ajustado para coincidir con los títulos e iconos de las imágenes de referencia */
    --mockup-green: #1b5e20;
    --mockup-bg-grey: #e8e8e6;
}

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

body {
    min-width: 320px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* ================================================
   SECCIÓN HERO (SERVICIOS)
   ================================================ */
.hero-mockup {
    position: relative;
    padding: 60px 0;
    background-color: white;
    overflow-x: hidden;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    margin-left: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-big-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 16px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-em {
    color: var(--mockup-green);
    font-size: 1.12em;
    display: inline-block;
    font-weight: 500;
}

.hero-desc-text {
    margin-top: 16px;
    max-width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 20px;
}

.service-btn {
    display: block;
    width: 100%;
    max-width: 100%;
    background-color: var(--mockup-green, #21784D);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(33, 120, 77, 0.2);
    margin-top: 20px;
    box-sizing: border-box;
    white-space: normal;
}

.service-btn:hover {
    background-color: #1a613e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 120, 77, 0.3);
}

.hero-image-box {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    background: none;
    padding: 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
    margin-right: 0;
    overflow: hidden;
}

.hero-image-box img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

@media (min-width: 1025px) {
    .hero-mockup {
        padding: 80px 50px 60px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr auto;
        gap: 120px;
    }

    .hero-left {
        width: 740px;
        height: 521px;
        margin-left: 50px;
    }

    .hero-big-title {
        font-size: 50px;
        line-height: 110%;
        margin: 0;
    }

    .hero-desc-text {
        margin-top: 21.31px;
        font-size: 23px;
        line-height: 31px;
        letter-spacing: -0.05em;
        margin-bottom: 25px;
    }

    .service-btn {
        font-size: 18px;
        padding: 12px 30px;
        margin-top: auto;
        white-space: nowrap;
    }

    .hero-image-box {
        width: 836px;
        height: 521px;
        max-width: none;
    }

    .hero-image-box img {
        height: 100%;
        max-height: none;
    }
}


/* ================================================
   WHY / FEATURE SECTION
   ================================================ */
.why-mockup {
    padding: 40px 0;
    background: white;
    overflow-x: hidden;
    width: 100%;
}

.why-top-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.section-title-mockup {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.why-text-col {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    margin-right: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-text-col p {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 16px;
}

.why-image-col {
    position: relative;
    padding: 0;
    order: -1;
}

.team-image-box {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    background: none;
    padding: 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

@media (min-width: 1025px) {
    .why-mockup {
        padding: 80px 0;
    }

    .why-top-split {
        grid-template-columns: 1fr 1fr;
        gap: 88px;
    }

    .section-title-mockup {
        font-size: 50px;
        line-height: 110%;
        margin-bottom: 25px;
    }

    .why-text-col {
        width: 864px;
        height: 521px;
        margin-right: 50px;
        margin-left: -30px;
    }

    .why-text-col p {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.05em;
        margin-bottom: 20px;
    }

    .why-image-col {
        padding: 10px;
        padding-left: 50px;
        order: 0;
    }

    .team-image-box {
        width: 868px;
        height: 521px;
    }

    .team-img {
        height: 100%;
        max-height: none;
    }
}


/* ================================================
   SECCIÓN DE TARJETAS DE SERVICIOS (Icono a la derecha)
   ================================================ */
.services-cards-section {
    padding: 40px 0;
    padding-left: 0;
    padding-right: 0;
    background-color: white;
    overflow-x: hidden;
    width: 100%;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 0;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.service-card-item {
    background: #F8FEFB;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 200px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    box-sizing: border-box;
}

.card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    color: #006045;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i,
.card-icon svg {
    width: 60px;
    height: 60px;
    stroke: #006045;
    stroke-width: 2px;
}

.service-card-item h3 {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    color: #21784D;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card-item p {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .services-cards-section {
        padding: 50px 0;
    }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-card-item {
        padding: 24px;
        min-height: 200px;
    }

    .service-card-item h3 {
        font-size: 22px;
    }

    .service-card-item p {
        font-size: 15px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i,
    .card-icon svg {
        width: 60px;
        height: 60px;
    }
}

@media (min-width: 1025px) {
    .services-cards-section {
        padding: 80px 0;
        padding-left: 50px;
        padding-right: 51px;
    }

    .services-cards-grid {
        grid-template-columns: repeat(3, 497px);
        gap: 164px;
        justify-content: flex-start;
    }

    .service-card-item {
        width: 497px;
        height: 236px;
        padding: 0;
        display: block;
    }

    .card-icon {
        position: absolute;
        width: 85px;
        height: 85px;
        left: 365px;
        top: 28px;
        margin-bottom: 0;
        align-self: auto;
    }

    .card-icon i,
    .card-icon svg {
        width: 85px;
        height: 85px;
    }

    .service-card-item h3 {
        position: absolute;
        width: 300px;
        height: 120px;
        left: 20px;
        top: 21px;
        font-size: 40px;
        line-height: 45px;
        margin: 0;
    }

    .service-card-item p {
        position: absolute;
        width: 410px;
        height: 68px;
        left: 32px;
        top: 157px;
        font-size: 18px;
        line-height: 22px;
    }
}


/* ================================================
   SECCIÓN MUDANZAS INTERNACIONALES
   ================================================ */
.international-section {
    padding: 40px 0;
    background-color: white;
    overflow-x: hidden;
    width: 100%;
}

.international-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.international-image-col {
    padding-left: 0;
    order: -1;
}

.international-image-box {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    background: none;
    padding: 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
    overflow: hidden;
}

.international-image-box img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.international-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.international-text-col {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    margin-right: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: flex-start;
}

.international-text-col p {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 16px;
}

@media (min-width: 1025px) {
    .international-section {
        padding: 80px 0;
    }

    .international-grid {
        grid-template-columns: 1fr 1fr;
        gap: 88px;
    }

    .international-image-col {
        padding-left: 50px;
        order: 0;
    }

    .international-image-box {
        width: 868px;
        height: 521px;
    }

    .international-image-box img {
        height: 100%;
        max-height: none;
    }

    .international-title {
        font-size: 50px;
        line-height: 110%;
        margin-bottom: 25px;
    }

    .international-text-col {
        width: 864px;
        height: 521px;
        margin-right: 50px;
        margin-left: -30px;
    }

    .international-text-col p {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.05em;
        margin-bottom: 0;
    }
}


/* ================================================
   NUEVA SECCIÓN: CARACTERÍSTICAS INTERNACIONALES
   (Estilo basado en Imagen 2: Icono a la derecha, fondo claro)
   ================================================ */
.international-features-section {
    padding: 40px 0;
    padding-left: 0;
    padding-right: 0;
    background-color: white;
    overflow-x: hidden;
    width: 100%;
}

.international-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 0;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.intl-feature-card {
    background: #F8FEFB;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 200px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}





/* Icon positioned like service cards */
.intl-feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    left: 0;
    top: 0;
    color: #006045;
    margin-bottom: 16px;
    align-self: flex-end;
    flex-shrink: 0;
}

.intl-feature-icon svg {
    width: 60px;
    height: 60px;
    stroke: #006045;
    fill: none;
    stroke-width: 2px;
}

/* Title positioned absolutely like service cards */
.intl-feature-card h3 {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #21784D;
    margin: 0 0 12px 0;
    word-wrap: break-word;
}

.intl-feature-card p {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

/* Responsive para las nuevas tarjetas */
@media (min-width: 768px) {
    .international-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .international-features-section {
        padding: 80px 0;
        padding-left: 50px;
        padding-right: 51px;
    }

    .international-features-grid {
        grid-template-columns: repeat(3, 497px);
        gap: 164px;
        justify-content: flex-start;
    }

    .intl-feature-card {
        width: 497px;
        height: 236px;
        padding: 0;
        display: block;
    }

    .intl-feature-icon {
        position: absolute;
        width: 85px;
        height: 85px;
        left: 365px;
        top: 28px;
        margin-bottom: 0;
        align-self: auto;
    }

    .intl-feature-icon svg {
        width: 85px;
        height: 85px;
    }

    .intl-feature-card h3 {
        position: absolute;
        width: 270px;
        height: 110px;
        left: calc(50% - 270px/2 - 81.5px);
        top: 21px;
        font-size: 40px;
        line-height: 50px;
        margin: 0;
    }

    .intl-feature-card p {
        position: absolute;
        width: 433px;
        height: 68px;
        left: calc(50% - 433px/2);
        top: 147px;
        font-size: 20px;
        line-height: 20px;
    }
}


/* ================================================
   SECCIÓN SOLUCIONES LOGÍSTICAS
   ================================================ */
.solutions-section {
    padding: 40px 0;
    background: white;
    overflow-x: hidden;
    width: 100%;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.solutions-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.solutions-text-col {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.solutions-text-col p {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 16px;
}

.solutions-image-col {
    margin-right: 0;
    order: -1;
}

.solutions-image-box {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    background: none;
    padding: 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
    overflow: hidden;
}

.solutions-image-box img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

@media (min-width: 1025px) {
    .solutions-section {
        padding: 80px 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .solutions-title {
        font-size: 50px;
        line-height: 110%;
        margin-bottom: 25px;
    }

    .solutions-text-col {
        width: 783px;
        height: 521px;
        margin-left: 50px;
    }

    .solutions-text-col p {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.05em;
        margin-bottom: 0;
    }

    .solutions-image-col {
        margin-right: 50px;
        order: 0;
    }

    .solutions-image-box {
        width: 836px;
        height: 521px;
    }

    .solutions-image-box img {
        height: 100%;
        max-height: none;
    }
}


/* ================================================
   SECCIÓN VACIADO DE PISOS
   ================================================ */
.clearance-section {
    padding: 40px 0;
    background-color: white;
    overflow-x: hidden;
    width: 100%;
}

.clearance-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: flex-start;
}

.clearance-text-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    height: auto;
    min-height: auto;
}

.clearance-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.clearance-text-col p {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0 0 16px 0;
}

.clearance-gallery-col {
    margin-right: 0;
    order: -1;
}

.clearance-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.clearance-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    background: none;
    padding: 0;
    border-radius: 20px;
    box-shadow: none;
    border: none;
    overflow: hidden;
}

.clearance-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

@media (min-width: 768px) {
    .clearance-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1025px) {
    .clearance-section {
        padding: 80px 0;
    }

    .clearance-main {
        grid-template-columns: 1fr 1fr;
        gap: 123px;
    }

    .clearance-text-col {
        padding-left: 50px;
        height: 521px;
    }

    .clearance-title {
        font-size: 50px;
        line-height: 110%;
        margin-bottom: 25px;
    }

    .clearance-text-col p {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.05em;
        margin: 0;
    }

    .clearance-gallery-col {
        margin-right: 50px;
        order: 0;
    }

    .clearance-gallery {
        grid-template-columns: repeat(3, 267px);
        gap: 55px;
    }

    .clearance-image {
        width: 267px;
        height: 521px;
    }

    .clearance-image img {
        height: 100%;
        max-height: none;
    }
}

/* ================================================
   SECCIÓN LIMPIEZA FINAL
   ================================================ */
.cleaning-section {
    padding: 40px 0;
    background: white;
    overflow-x: hidden;
    width: 100%;
}

.cleaning-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.cleaning-image-col {
    padding-left: 0;
    order: -1;
}

.cleaning-image-box {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    background: none;
    padding: 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
    overflow: hidden;
}

.cleaning-image-box img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.cleaning-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.cleaning-text-col {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    margin-right: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: flex-start;
}

.cleaning-text-col p {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 16px;
}

@media (min-width: 1025px) {
    .cleaning-section {
        padding: 80px 0;
    }

    .cleaning-grid {
        grid-template-columns: 1fr 1fr;
        gap: 88px;
    }

    .cleaning-image-col {
        padding-left: 50px;
        order: 0;
    }

    .cleaning-image-box {
        width: 868px;
        height: 521px;
    }

    .cleaning-image-box img {
        height: 100%;
        max-height: none;
    }

    .cleaning-title {
        font-size: 50px;
        line-height: 110%;
        margin-bottom: 25px;
    }

    .cleaning-text-col {
        width: 864px;
        height: 521px;
        margin-right: 50px;
        margin-left: -30px;
    }

    .cleaning-text-col p {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.05em;
        margin-bottom: 0;
    }
}


/* ================================================
   RESPONSIVE GENERAL
   ================================================ */

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-big-title {
        font-size: 2.5rem;
    }

    .section-title-mockup,
    .solutions-title,
    .international-title,
    .clearance-title,
    .cleaning-title {
        font-size: 2.2rem;
    }

    .hero-desc-text,
    .why-text-col p,
    .international-text-col p,
    .solutions-text-col p,
    .clearance-text-col p,
    .cleaning-text-col p {
        font-size: 18px;
    }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-card-item {
        padding: 22px;
        min-height: 190px;
    }

    .service-card-item h3 {
        font-size: 21px;
    }

    .service-card-item p {
        font-size: 15px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
    }

    .card-icon i,
    .card-icon svg {
        width: 55px;
        height: 55px;
    }

    .clearance-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Móvil (480px - 767px) */
@media (max-width: 767px) {
    .hero-mockup {
        padding: 40px 0;
    }

    .hero-big-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero-desc-text {
        font-size: 15px;
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .service-btn {
        font-size: 15px;
        padding: 10px 20px;
    }

    .why-mockup,
    .international-section,
    .solutions-section,
    .clearance-section,
    .cleaning-section {
        padding: 32px 0;
    }

    .section-title-mockup,
    .solutions-title,
    .international-title,
    .clearance-title,
    .cleaning-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .why-text-col p,
    .international-text-col p,
    .solutions-text-col p,
    .clearance-text-col p,
    .cleaning-text-col p {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .services-cards-section {
        padding: 32px 0;
    }

    .service-card-item {
        padding: 20px;
        min-height: 180px;
        flex-direction: row;
        gap: 12px;
    }

    .card-content {
        gap: 8px;
    }

    .service-card-item h3 {
        font-size: 20px;
        margin: 0;
    }

    .service-card-item p {
        font-size: 14px;
        margin: 0;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i,
    .card-icon svg {
        width: 50px;
        height: 50px;
    }

    .international-features-section {
        padding: 32px 0;
    }

    .intl-feature-card {
        padding: 20px;
        min-height: 180px;
    }

    .intl-feature-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .intl-feature-card p {
        font-size: 14px;
    }

    .intl-feature-icon {
        width: 50px;
        height: 50px;
    }

    .intl-feature-icon svg {
        width: 50px;
        height: 50px;
    }

    .clearance-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .clearance-image {
        min-height: 250px;
    }
}

/* Móvil pequeño (320px - 479px) */
@media (max-width: 480px) {
    .hero-mockup {
        padding: 32px 0;
    }

    .hero-big-title {
        font-size: 1.6rem;
    }

    .hero-desc-text {
        font-size: 14px;
    }

    .service-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    .why-mockup,
    .international-section,
    .solutions-section,
    .clearance-section,
    .cleaning-section {
        padding: 24px 0;
    }

    .section-title-mockup,
    .solutions-title,
    .international-title,
    .clearance-title,
    .cleaning-title {
        font-size: 1.4rem;
    }

    .why-text-col p,
    .international-text-col p,
    .solutions-text-col p,
    .clearance-text-col p,
    .cleaning-text-col p {
        font-size: 14px;
    }

    .services-cards-section {
        padding: 24px 0;
    }

    .service-card-item {
        padding: 16px;
        min-height: 160px;
        flex-direction: row;
        gap: 10px;
    }

    .card-content {
        gap: 6px;
    }

    .service-card-item h3 {
        font-size: 18px;
        margin: 0;
    }

    .service-card-item p {
        font-size: 13px;
        margin: 0;
    }

    .card-icon {
        width: 45px;
        height: 45px;
    }

    .card-icon i,
    .card-icon svg {
        width: 45px;
        height: 45px;
    }

    .international-features-section {
        padding: 24px 0;
    }

    .intl-feature-card {
        padding: 16px;
        min-height: 160px;
    }

    .intl-feature-card h3 {
        font-size: 18px;
    }

    .intl-feature-card p {
        font-size: 13px;
    }

    .intl-feature-icon {
        width: 45px;
        height: 45px;
    }

    .intl-feature-icon svg {
        width: 45px;
        height: 45px;
    }

    .clearance-image {
        min-height: 200px;
    }
}

/* Móvil muy pequeño (hasta 320px) */
@media (max-width: 320px) {
    .hero-big-title {
        font-size: 1.4rem;
    }

    .hero-desc-text {
        font-size: 13px;
    }

    .section-title-mockup,
    .solutions-title,
    .international-title,
    .clearance-title,
    .cleaning-title {
        font-size: 1.3rem;
    }

    .service-card-item {
        padding: 14px;
        gap: 8px;
    }

    .service-card-item h3 {
        font-size: 16px;
        margin: 0;
    }

    .service-card-item p {
        font-size: 12px;
        margin: 0;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-icon i,
    .card-icon svg {
        width: 40px;
        height: 40px;
    }

    .service-card-item p {
        font-size: 12px;
    }
}