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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 75px;
}

body {
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    overflow-x: hidden;
}

img,
svg,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   PRELOADER
========================================= */
#preloader {
    position: fixed;
    inset: 0;
    background: #ff5764 url(../img/back-body.png) repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner i {
    font-size: 70px;
    color: #fff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =========================================
   CONTENEDOR
========================================= */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HEADER Y NAVEGACIÓN
========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 20px 0;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #aaa;
}

nav a.active {
    color: #ff5764;
}

.client-login a {
    font-weight: 400 !important;
    color: #aaa;
    font-size: 0.9em;
}

.client-login a:hover {
    color: #7566fa;
}

nav ul li i {
    margin: 0 5px 0 10px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* =========================================
   SECCIONES
========================================= */
section {
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
}

/* =========================================
   TIPOGRAFÍA GENERAL
========================================= */
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    line-height: 1em;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    color: #bbb;
}

.features {
    margin-top: 20px;
    margin-left: 20px;
    font-size: 1.1rem;
}

.features li {
    margin-bottom: 10px;
}

/* =========================================
   INTRO / VIDEO DE FONDO
========================================= */
#intro {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: transparent !important;
    margin-top: 70px;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.content-over-video {
    position: relative;
    z-index: 3;
}

#intro .content-split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 20px;
}

#intro .text-box {
    max-width: 100%;
}

#intro .image-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#intro .image-box img {
    width: 100%;
    max-width: 700px;
    margin-top: -30px;
}

#intro .intro-slideshow {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 620px;
}

#intro .intro-slideshow .slide {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    max-width: 760px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

#intro .intro-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
}

#intro h2 {
    font-size: 3.8em;
    letter-spacing: -0.6pt;
}

#intro .container {
    margin-top: -70px;
}

.intro-line {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

#intro h2 span span {
    background: #7566fa;
    padding: 0 10px 5px 15px;
    line-height: 1.2em;
    --cut: 20px;
    clip-path: polygon(
        0 0,
        calc(100% - var(--cut)) 0,
        100% var(--cut),
        100% 100%,
        var(--cut) 100%,
        0 calc(100% - var(--cut))
    );
}

#intro .intro-mobile-image {
    display: none;
}

#intro .intro-slideshow {
    display: flex;
}

/* =========================================
   FONDOS POR SECCIÓN
========================================= */
#intro { background-color: #f4f1ea; color: #111; }
#formato { background-color: #000; color: #111; background-image: url(../img/back-04.jpg); }
#romaphonic { background-color: #24ffcd; background-image: url(../img/back-10.jpg?v=1); }
#vrodas { background-color: #df5863; background-image: url(../img/back-12.jpg?v=1); }
#costos { background-color: #ecf0f1; color: #2c3e50; }
#session { background-color: #8e44ad; background-image: url(../img/back-18.jpg); }
#contacto { background-color: #000; color: #fff; background-image: url(../img/back-07.jpg); }

/* =========================================
   LAYOUT GENERAL TEXTO + IMAGEN
========================================= */
.content-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    color: #fff;
}

.content-split.reverse {
    flex-direction: row-reverse;
}

.text-box {
    flex: 1;
}

.cut-box {
    --cut: 90px;
    clip-path: polygon(
        0 0,
        calc(100% - var(--cut)) 0,
        100% var(--cut),
        100% 100%,
        var(--cut) 100%,
        0 calc(100% - var(--cut))
    );
}

.text-box p {
    color: #888;
    font-family: Roboto, Arial, sans-serif;
    font-size: 1.1em;
    line-height: 1.4em;
}

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

.image-box img {
    max-width: 100%;
    height: auto;
}

.form-box {
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    color: #111;
    margin: 0;
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.text-box .subtitle {
    font-size: 2.1em;
    color: #111;
    line-height: 1.2em;
    margin-bottom: 14px;
    font-family: Inter, Arial, sans-serif;
    font-weight: 300;
}

.text-box .subtitle span {
    padding: 2px 10px;
    font-weight: 700;
    color: #111;
}

#session .text-box,
#formato .text-box,
#romaphonic .text-box,
#vrodas .text-box {
    background: #fff;
    padding: 60px;
}

/* =========================================
   FORMATO
========================================= */
#formato .subtitle span {
    background-color: #ff5764;
    color: #fff;
}

#formato .content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
}

#formato .text-box {
    max-width: 100%;
}

#formato .image-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#formato .image-box img {
    width: 100%;
    max-width: 700px;
    margin-top: -30px;
}

#formato .formato-mobile-image {
    display: none;
}

#formato .formato-desktop-image {
    display: flex;
}

#formato h2 {
    margin-top: 30px;
}

#formato i {
    color: #37e18c;
}

#formato ul {
    margin-left: 40px;
    color: #bbb;
}

/* =========================================
   SESSION
========================================= */
#session ul {
    list-style: none;
    margin: 0;
    padding: 50px 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

#session ul.list-audio {
    margin-bottom: 10px;
}

#session li {
    width: 33%;
    display: flex;
    align-items: center;
    gap: 16px;
}

#session li:first-child {
    width: 200px;
}

#session li i {
    color: #86e091;
}

#session ul img {
    width: 80px;
}

#session ul p {
    margin: 0;
    color: #666;
    line-height: 1.2em;
}

#session ul h2 {
    color: #666;
}

#session .subtitle {
    margin-bottom: 40px;
}

#session .subtitle span {
    background-color: #86e091;
    color: #fff;
}

.session-subtitle {
    color: #111;
    font-size: 2em;
    margin-bottom: 20px;
}

/* =========================================
   EQUIPAMIENTO
========================================= */
#equipamiento {
    display: none;
}

/* =========================================
   ROMAPHONIC
========================================= */
#romaphonic .text-box {
    background: #111;
    display: flex;
    flex-direction: column;
}

#romaphonic .subtitle {
    color: #fff;
    font-family: Inter, Arial, sans-serif;
    font-size: 2.5em;
    font-weight: 300;
    margin-bottom: 25px;
}

#romaphonic .subtitle span {
    background-color: #86e090;
    font-weight: 900;
}

#romaphonic .text-box div p {
    color: #bbb;
}

#romaphonic .text-box a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 5px;
    background: #86e090;
    color: #111;
    font-weight: bold;
    align-self: flex-end;
    margin-top: 16px;
    text-decoration: none;
    width: auto;
}

#romaphonic .text-box a i {
    margin-right: 6px;
}

/* =========================================
   VRODAS
========================================= */
#vrodas .text-box {
    background: #111;
    display: flex;
    flex-direction: column;
}

#vrodas .subtitle {
    color: #fff;
    font-family: Inter, Arial, sans-serif;
    font-size: 2.5em;
    font-weight: 300;
    margin-bottom: 25px;
}

#vrodas .subtitle span {
    background-color: #ff5764;
    font-weight: 900;
}

#vrodas .text-box div p {
    color: #bbb;
}

#vrodas .text-box a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 5px;
    background: #ff5764;
    color: #fff;
    font-weight: bold;
    align-self: flex-end;
    margin-top: 16px;
    text-decoration: none;
    width: auto;
}

#vrodas .text-box a i {
    margin-right: 6px;
}

/* =========================================
   CONTACTO
========================================= */
#contacto {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

#contacto .container.content-split {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-text,
.form-box {
    width: 100%;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text h2 {
    font-size: 3em;
    line-height: 1.05;
    margin: 0 0 18px 0;
    color: #7566fb;
}

.contact-text .subtitle-text {
    font-size: 1.6em;
    font-weight: 200;
    margin-bottom: 50px;
}

.contact-text .subtitle {
    font-size: 1.3em;
    line-height: 1.5;
    margin: 0 0 40px 0;
    opacity: 0.8;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-item h3 {
    font-size: 1em;
}

.contact-item i {
    color: #7566fa;
    margin-right: 3px;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
    font-family: Roboto, Arial, sans-serif;
}

.contact-item a {
    color: #aaa;
    text-decoration: none;
    font-weight: 300;
}

.contact-item a:hover {
    text-decoration: underline;
}

.form-box h2 {
    font-size: 2.2em;
    line-height: 1.1;
    margin: 0;
}

.div-subtitle {
    display: flex;
    gap: 15px;
    align-items: stretch;
    margin-bottom: 16px;
}

.div-subtitle i {
    font-size: 2em;
}

.form-box .subtitle {
    font-size: 1.3em !important;
    line-height: 1.2;
    opacity: 0.8;
    color: #111;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row label {
    font-size: 0.95em;
    margin: 0;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    color: inherit;
    font: inherit;
    padding: 5px 0;
    box-sizing: border-box;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #ccc;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #111;
}

.form-row textarea {
    height: 80px;
    resize: vertical;
}

.btn-submit {
    margin-top: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    background: #7566fa;
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    align-self: flex-end;
    font-size: 1em;
}

.btn-submit i {
    margin-right: 4px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    background-color: #85df8f;
}

/* =========================================
   ESTADOS DEL FORMULARIO CONTACTO
========================================= */
.form-default-view,
.form-success-view {
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.form-default-view {
    position: relative;
    z-index: 2;
    padding-top: 12px;
}

.form-success-view {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #fff;
}

.form-box.success-state .form-default-view {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.form-box.success-state .form-success-view {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.form-success-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 320px;
    margin: 0 auto;
}

.form-success-inner i {
    font-size: 2.4em;
    color: #7566fa;
}

.form-success-inner h3 {
    margin: 0;
    font-size: 1.5em;
    line-height: 1.1;
    color: #111;
}

.form-success-inner p {
    margin: 0;
    color: #555;
    line-height: 1.4;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* =========================================
   ANIMACIONES FADE-IN
========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-box.fade-in {
    transition-delay: 0.2s;
}

/* =========================================
   BOTÓN "CONOCÉ EL FORMATO"
========================================= */
.scroll-down-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 12px 24px;
    border: 4px solid #7566fa;
    color: #7566fa;
    border-radius: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.scroll-down-btn.fade-in {
    transform: translate(-50%, 40px);
}

.scroll-down-btn.fade-in.visible {
    transform: translate(-50%, 0);
}

.scroll-down-btn:hover {
    background-color: #7566fa;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.scroll-down-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: #fff;
}

.scroll-down-btn:hover i {
    transform: translateY(3px);
}

/* =========================================
   RESPONSIVE (MOBILE)
========================================= */
@media screen and (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        scroll-snap-type: none;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    header,
    section,
    .container {
        max-width: 100%;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: 0;
        margin-right: 0;
    }

    .content-split {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }

    .text-box,
    .image-box {
        width: 100%;
        max-width: 100%;
    }

    .image-box img {
        width: 100%;
        max-width: 100%;
    }

    .features {
        text-align: left;
        display: inline-block;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .menu-toggle i {
        color: #ff5764;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 84px;
        left: 0;
        width: 100%;
        background-color: #111;
        text-align: center;
        gap: 0;
        border-top: 1px solid #222;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
        padding: 8px 0;
        font-size: 1.5em;
        border-bottom: 1px solid #222;
    }

    nav ul li span {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    .cut-box {
        --cut: 30px;
        clip-path: polygon(
            0 0,
            calc(100% - var(--cut)) 0,
            100% var(--cut),
            100% 100%,
            var(--cut) 100%,
            0 calc(100% - var(--cut))
        );
    }

    /* INTRO */
    #intro {
        min-height: 100dvh;
        padding-top: 115px;
        padding-bottom: 40px;
        margin-top: 0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    #intro .container.content-split.content-over-video {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 24px;
        margin-top: 0;
        padding-left: 28px;
        padding-right: 28px;
    }

    #intro .container {
        margin-top: 0;
    }

    #intro .text-box {
        width: 100%;
        max-width: 100%;
        order: 2;
    }

    #intro h2 {
        font-size: 2.1em;
        line-height: 0.95;
        letter-spacing: -0.03em;
        margin: 0;
        text-align: center;
    }

    #intro h2 span {
        line-height: 1.15;
        --cut: 10px;
        clip-path: polygon(
            0 0,
            calc(100% - var(--cut)) 0,
            100% var(--cut),
            100% 100%,
            var(--cut) 100%,
            0 calc(100% - var(--cut))
        );
    }

    #intro .intro-line {
        margin-top: 20px;
        padding: 0 14px;
    }

    #intro .intro-mobile-image {
        display: flex;
        justify-content: center;
        width: 100%;
        order: 1;
    }

    #intro .intro-mobile-image img {
        max-width: 280px;
        margin: 0 auto;
    }

    #intro .intro-slideshow {
        display: none;
    }

    #intro .scroll-down-btn {
        display: none;
    }

    /* FORMATO */
    #formato {
        min-height: auto;
        padding: 20px 0;
        align-items: flex-start;
        justify-content: flex-start;
    }

    #formato .container.content-split {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #formato .image-box {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #formato .image-box img {
        max-width: 300px;
        margin: 0 auto;
    }

    #formato .formato-mobile-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        order: 1;
    }

    #formato .formato-mobile-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    #formato .formato-desktop-image {
        display: none;
    }

    #formato .text-box {
        width: 100%;
        max-width: 100%;
        padding: 30px 24px;
        order: 2;
    }

    #formato .subtitle {
        font-size: 1.55em;
        line-height: 1.15em;
        margin-bottom: 26px;
    }

    #formato .subtitle span {
        display: inline-block;
        padding: 4px 10px;
    }

    #formato h2 {
        margin-top: 18px;
        font-size: 1.35em;
        line-height: 1.15em;
    }

    #formato ul {
        margin-left: 20px;
        margin-top: 12px;
    }

    #formato ul li {
        font-size: 1em;
        line-height: 1.4em;
        margin-bottom: 8px;
    }

    /* SESSION */
    #session {
        min-height: auto;
        padding: 20px 0;
        align-items: flex-start;
        justify-content: flex-start;
    }

    #session .container.content {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    #session .text-box {
        width: 100%;
        max-width: 100%;
        padding: 30px 24px;
    }

    #session .subtitle {
        font-size: 1.55em;
        line-height: 1.15em;
        margin-bottom: 26px;
    }

    #session .subtitle span {
        display: inline-block;
        padding: 4px 10px;
    }

    #session .session-subtitle {
        font-size: 1.5em;
        line-height: 1.1em;
        margin-bottom: 20px;
    }

    #session .text-box > div {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    #session .text-box > div > div {
        width: 100%;
    }

    #session ul {
        width: 100%;
        margin: 0;
        padding: 22px 18px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
        border-radius: 0;
    }

    #session ul.list-audio {
        margin-bottom: 0;
    }

    #session li {
        width: 100% !important;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    #session li:first-child {
        width: 100% !important;
        margin-bottom: 2px;
    }

    #session li h2 {
        font-size: 1.3em;
        line-height: 1.1em;
        margin: 0;
    }

    #session li img {
        width: 52px;
        min-width: 52px;
    }

    #session ul p {
        margin: 0;
        font-size: 0.98em;
        line-height: 1.3em;
    }

    #session li i {
        margin-right: 6px;
    }

    /* ROMAPHONIC */
    #romaphonic {
        min-height: auto;
        padding: 20px 0;
        align-items: flex-start;
        justify-content: flex-start;
    }

    #romaphonic .container.content-split {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    #romaphonic .text-box {
        width: 100%;
        max-width: 100%;
        padding: 30px 24px;
    }

    #romaphonic .subtitle {
        font-size: 1.9em;
        line-height: 1.1em;
        margin-bottom: 20px;
    }

    #romaphonic .subtitle span {
        display: inline-block;
        padding: 4px 10px;
    }

    #romaphonic .text-box div p {
        font-size: 1em;
        line-height: 1.45em;
        margin-bottom: 14px;
    }

    #romaphonic .text-box a {
        display: inline-flex;
        align-items: center;
        align-self: center;
        margin-top: 12px;
        padding: 10px 14px;
        font-size: 0.95em;
    }

    #romaphonic .text-box a i {
        margin-right: 6px;
    }

    #romaphonic .image-box {
        display: none;
    }

    /* VRODAS */
    #vrodas {
        min-height: auto;
        padding: 20px 0;
        align-items: flex-start;
        justify-content: flex-start;
    }

    #vrodas .container.content-split {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    #vrodas .text-box {
        width: 100%;
        max-width: 100%;
        padding: 30px 24px;
    }

    #vrodas .subtitle {
        font-size: 1.9em;
        line-height: 1.1em;
        margin-bottom: 20px;
    }

    #vrodas .subtitle span {
        display: inline-block;
        padding: 4px 10px;
    }

    #vrodas .text-box div p {
        font-size: 1em;
        line-height: 1.45em;
        margin-bottom: 14px;
    }

    #vrodas .text-box a {
        display: inline-flex;
        align-items: center;
        align-self: center;
        margin-top: 12px;
        padding: 10px 14px;
        font-size: 0.95em;
    }

    #vrodas .text-box a i {
        margin-right: 6px;
    }

    #vrodas .image-box {
        display: none;
    }

    /* CONTACTO */
    #contacto {
        display: flex;
        min-height: auto;
        padding: 60px 0;
        align-items: flex-start;
        justify-content: flex-start;
    }

    #contacto .container.content-split.contacto-grid {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 32px;
        padding-left: 28px;
        padding-right: 28px;
    }

    #contacto .contact-text {
        width: 100%;
    }

    #contacto .contact-text h2 {
        font-size: 2.1em;
        line-height: 1.05em;
        margin-bottom: 16px;
    }

    #contacto .contact-text .subtitle-text {
        font-size: 1.15em;
        line-height: 1.35em;
        margin-bottom: 28px;
    }

    #contacto .contact-info-grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    #contacto .contact-item h3 {
        font-size: 1em;
        line-height: 1.2em;
        margin-bottom: 6px;
    }

    #contacto .contact-item p {
        font-size: 0.98em;
        line-height: 1.4em;
    }

    #contacto .form-box {
        width: 100%;
        padding: 24px 20px;
        border-radius: 14px;
        min-height: 420px;
    }

    #contacto .div-subtitle {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
    }

    #contacto .div-subtitle i {
        font-size: 1.4em;
        margin-top: 2px;
    }

    #contacto .form-box .subtitle {
        font-size: 1.05em !important;
        line-height: 1.3em;
        margin: 0;
    }

    #contacto .contact-form {
        gap: 12px;
    }

    #contacto .form-row input,
    #contacto .form-row textarea {
        font-size: 1em;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    #contacto .form-row textarea {
        min-height: 110px;
    }

    #contacto .btn-submit {
        align-self: stretch;
        justify-content: center;
        text-align: center;
        font-size: 1em;
        padding: 12px 16px;
        margin-top: 10px;
    }
}