:root {
    --bg: #0B0F1A;
    --blue: #0066FF;
    --orange: #FF7A00;
    --ice: #39C8FF;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-width: 0;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--white);
}

    body.menu-open {
        overflow: hidden;
    }

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    scroll-margin-top: 100px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

/* HEADER */

header {
    position: sticky;
    top: 0;
    background: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
}

.brand img {
    height: 45px;
    object-fit: contain;
}

/* HAMBURGER - Glass Style */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
}

    .hamburger:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .hamburger span {
        width: 24px;
        height: 3px;
        background: var(--white);
        border-radius: 3px;
        transition: 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

/* MENU */

.menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .menu a {
        color: var(--white);
        font-weight: 600;
        font-size: 0.95rem;
        position: relative;
        transition: 0.25s ease;
    }

        .menu a:hover {
            color: var(--orange);
        }

        .menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: 0.25s ease;
        }

        .menu a:hover::after {
            width: 100%;
        }

/* BOTONES BASE - Glass Style */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

    .btn:hover {
        transform: translateY(-2px);
    }

/* Botón Primario - Glass Naranja */
.primary {
    background: rgba(255, 122, 0, 0.15);
    border-color: rgba(255, 122, 0, 0.3);
    color: var(--orange);
}

    .primary:hover {
        background: rgba(255, 122, 0, 0.25);
        border-color: rgba(255, 122, 0, 0.5);
        box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
        color: var(--orange);
    }

/* Botón Secundario - Glass Blanco */
.secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

    .secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

/* Botón WhatsApp - Glass Verde */
.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

    .whatsapp:hover {
        background: rgba(37, 211, 102, 0.25);
        border-color: rgba(37, 211, 102, 0.5);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        color: #25D366;
    }

/* HERO */

.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 90vh;
    padding: 40px 24px;
}

    .hero h1 {
        font-size: 3.2rem;
        line-height: 1.1;
        margin-bottom: 16px;
    }

.changing-word {
    color: var(--orange);
    display: inline-block;
    min-width: 140px;
}

.fade-out {
    opacity: 0;
    transform: translateY(-8px);
    transition: 0.3s ease;
}

.sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-box {
    display: flex;
    justify-content: center;
}

.imgHero {
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* SECTION */

.section {
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 70px 24px;
}

    .section h2 {
        font-size: 2.4rem;
        margin-bottom: 8px;
    }

.service-tag {
    display: inline-block;
    color: var(--ice);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

.about-img {
    width: 100%;
    max-width: 420px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

.intro-text {
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ACCORDION */

.accordion-list {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .accordion-header:hover {
        background: rgba(255, 255, 255, 0.05);
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 8px;
    }

    .accordion-header .number {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--orange);
        margin-right: 16px;
    }

    .accordion-header h3 {
        flex: 1;
        font-size: 1rem;
    }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

    .accordion-content p {
        padding-bottom: 16px;
        color: rgba(255,255,255,0.75);
        line-height: 1.6;
    }

.accordion-item.active .accordion-content {
    max-height: 180px;
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 32px;
}

.service-card-item {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 28px 24px;
    min-height: 340px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .service-card-item h3 {
        position: relative;
        z-index: 2;
        font-size: 1.4rem;
        margin-bottom: 6px;
    }

.service-card-subtitle {
    position: relative;
    z-index: 2;
    color: var(--orange);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.service-card-desc {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

/* BOTÓN INGRESAR - Glass effect */
.btn-enter {
    position: relative;
    z-index: 2;
    padding: 12px 28px;
    background: rgba(255, 122, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 12px;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: 20px;
}

    .btn-enter:hover {
        background: rgba(255, 122, 0, 0.25);
        border-color: rgba(255, 122, 0, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
    }

    .btn-enter:active {
        transform: translateY(0);
    }

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
}

/* PARTNER BOX */

.partner-box {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: center;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.partner-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .partner-image img {
        width: 100%;
        max-width: 220px;
        object-fit: contain;
    }

.partner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partner-tag {
    display: inline-block;
    color: var(--orange);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.partner-content h3 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 18px;
}

.partner-content p {
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 700px;
}

/* MODAL */

.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

    .modal.active {
        opacity: 1;
        visibility: visible;
    }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 650px;
    background: var(--bg);
    border-radius: 24px;
    padding: 32px 28px;
    z-index: 2;
    overflow-y: auto;
    max-height: 92vh;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Botón Cerrar Modal - Glass Style */
.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-close:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        transform: rotate(90deg);
    }

/* CAROUSEL */

.carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #151a25;
    margin-top: 20px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 240px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

    .carousel-slide.active {
        opacity: 1;
        z-index: 2;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Botones Carrusel - Glass Style */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

    .carousel-btn:hover {
        background: rgba(0, 0, 0, 0.6);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-btn.prev {
        left: 12px;
    }

    .carousel-btn.next {
        right: 12px;
    }

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 5;
}

/* Dots Carrusel - Glass Style */
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .carousel-dot:hover {
        background: rgba(255, 255, 255, 0.5);
        transform: scale(1.2);
    }

    .carousel-dot.active {
        background: var(--orange);
        box-shadow: 0 0 10px rgba(255, 122, 0, 0.5);
    }

/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 24px;
}

    .gallery-grid img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 16px;
    }

/* CONTACT */

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
}

    .contact-box h3 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .contact-box p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 24px;
    }

/* FOOTER */

footer {
    text-align: center;
    padding: 28px 24px;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ASISTENTE FLOTANTE - Glass Style (Reemplaza a WhatsApp Float) */
.assistant-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 65px;
    height: 65px;
    background: rgba(255, 122, 0, 0.2); /* Naranja glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 122, 0, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.2);
    animation: pulseAssistantFloat 2.5s infinite;
    text-decoration: none;
}

    .assistant-float:hover {
        background: rgba(255, 122, 0, 0.35);
        border-color: rgba(255, 122, 0, 0.6);
        transform: scale(1.1);
        box-shadow: 0 12px 30px rgba(255, 122, 0, 0.4);
        animation: none; /* Detiene el pulso al hacer hover para que se vea limpio */
    }

    .assistant-float img {
        width: 55px;
        height: 55px;
        object-fit: contain;
        border-radius: 50%; /* Hace la imagen redonda por si el JPG es cuadrado */
    }

@keyframes pulseAssistantFloat {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 122, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
    }
}

.services-nav,
.services-dots,
.gallery-nav,
.gallery-dots {
    display: none;
}

/* CHATBOT */

.assistant-chat {
    width: 95%;
    max-width: 700px;
    height: 85vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.assistant-header {
    background: #151a25;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.assistant-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #0f1520;
    min-height: 0;
}

.assistant-footer {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: #111827;
    flex-shrink: 0;
}

.assistant-avatar {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .assistant-avatar img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.bot-message {
    background: #1d2635;
    color: white;
    padding: 12px 16px;
    border-radius: 14px;
    width: max-content;
    max-width: 80%;
    margin-bottom: 10px;
}

.user-message {
    background: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 14px;
    max-width: 80%;
    margin-left: auto;
    margin-bottom: 10px;
}

.assistant-footer input {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
}

    .assistant-footer input:focus {
        outline: none;
        border-color: rgba(37, 211, 102, 0.5);
        background: rgba(255, 255, 255, 0.08);
    }

/* Botón Enviar Chatbot - Glass Style */
.assistant-footer button,
.send-btn {
    border: none;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    border-radius: 12px;
    padding: 14px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .assistant-footer button:hover,
    .send-btn:hover {
        background: rgba(37, 211, 102, 0.25);
        border-color: rgba(37, 211, 102, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }

    .send-btn i {
        color: #25D366;
        font-size: 22px;
    }

    .assistant-footer input:focus,
    .assistant-footer button:focus,
    .send-btn:focus {
        outline: none;
    }

.modal-content.assistant-chat {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    height: 85vh;
    overflow: hidden;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .assistant-chat {
        width: 100%;
        max-width: 100%;
        height: 92vh;
        margin: 0;
        border-radius: 20px;
    }

    .assistant-messages {
        flex: 1;
        min-height: 0;
    }

    .container {
        padding: 0 18px;
    }

    .hamburger {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 75%;
        max-width: 280px;
        height: 100dvh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: transform 0.35s ease;
        z-index: 1000;
        padding: 20px;
        border-left: 1px solid rgba(255,255,255,0.1);
    }

        .menu.active {
            transform: translateX(0);
        }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        min-height: auto;
        padding-top: 30px;
    }

        .hero h1 {
            font-size: 2.2rem;
        }

    .hero-box {
        display: none;
    }

    .actions {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-left {
        display: none;
    }

    /* ===== SERVICES CAROUSEL ===== */

    .services-grid {
        position: relative;
        width: 100%;
        margin-top: 28px;
        min-height: 430px;
        overflow: hidden;
    }

    .service-card-item {
        width: 100%;
        min-height: 430px;
        padding: 32px 24px;
        border-radius: 22px;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s ease, transform .35s ease;
        transform: translateX(20px);
    }

        .service-card-item.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            z-index: 2;
        }

    /* ===== GALLERY CAROUSEL ===== */

    .gallery-grid {
        position: relative;
        width: 100%;
        margin-top: 28px;
        min-height: 340px;
        overflow: hidden;
    }

        .gallery-grid img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            border-radius: 20px;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity .35s ease, transform .35s ease;
            transform: translateX(20px);
        }

            .gallery-grid img.active {
                opacity: 1;
                visibility: visible;
                transform: translateX(0);
                z-index: 2;
            }

    /* ===== DOTS ===== */

    .services-dots,
    .gallery-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    /* Dots Móviles - Glass Style */
    .services-dot,
    .gallery-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .services-dot:hover,
        .gallery-dot:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.2);
        }

        .services-dot.active,
        .gallery-dot.active {
            background: var(--orange);
            box-shadow: 0 0 10px rgba(255, 122, 0, 0.5);
            transform: scale(1.15);
        }

    /* ===== NAV ===== */

    .services-nav,
    .gallery-nav {
        display: flex;
        justify-content: center;
        gap: 18px;
        margin-top: 18px;
    }

    /* Botones Nav Móviles - Glass Style */
    .services-nav-btn,
    .gallery-nav-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .services-nav-btn:hover,
        .gallery-nav-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
        }

    /* ===== MODAL ===== */

    .modal {
        padding: 14px;
        align-items: center;
    }

    .modal-content {
        width: 100%;
        max-width: 100%;
        border-radius: 24px;
        padding: 22px 18px 26px;
        max-height: 92vh;
        overflow-y: auto;
    }

    .modal-header {
        margin-bottom: 18px;
    }

        .modal-header h2 {
            font-size: 1.9rem;
            line-height: 1.15;
            margin-bottom: 14px;
            padding-right: 42px;
        }

        .modal-header p {
            font-size: 1rem;
            line-height: 1.5;
            color: rgba(255,255,255,0.72);
        }

    .modal-list {
        margin-top: 22px;
        padding-left: 22px;
    }

        .modal-list li {
            margin-bottom: 12px;
            line-height: 1.55;
        }

    .carousel-track {
        height: 240px;
    }

    .carousel-slide img {
        height: 240px;
    }

    .section h2 {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .contact-box {
        padding: 34px 24px;
    }

    /* ===== PARTNER ===== */

    .partner-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 28px 22px;
        margin-top: 36px;
    }

    .partner-image img {
        max-width: 180px;
    }

    .partner-content {
        align-items: center;
    }

        .partner-content h3 {
            font-size: 1.7rem;
        }

        .partner-content p {
            font-size: .98rem;
            line-height: 1.6;
        }
}
