/* ==========================================================
   VILANOVA PINTURAS Y SERVICIOS - DISEÑO RENOVADO 2026 CON SUBMENÚS
   ========================================================== */

:root {
    --ig: #E1306C;
    --fb: #4267B2;
    --wa: #25D366;
    --tg: #0088cc;
    
    /* Paleta Principal renovada */
    --green-main: #145e28;
    --green-hover: #0f471e;
    --green-light: #e8f5ec;
    --yellow-accent: #f0e41f;
    --yellow-dark: #ccb800;
    --slate-dark: #1b2624;
    --slate-gray: #718084;
    --bg-light: #f7faf8;
    --white: #ffffff;
    --text-main: #232d29;
    --shadow-soft: 0 10px 30px rgba(20, 94, 40, 0.08);
    --shadow-hover: 0 20px 40px rgba(20, 94, 40, 0.15);
    --radius-lg: 16px;
    --radius-pill: 50px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .nav-links, .baths-subtitle, .section-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Etiquetas y Pills */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green-main);
    background-color: var(--green-light);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 15px;
}

.section-tag.light-tag {
    color: var(--yellow-accent);
    background-color: rgba(255, 255, 255, 0.15);
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Botones */
.btn-primary {
    background-color: var(--yellow-accent);
    color: var(--slate-dark);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(20, 94, 40, 0.25);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(20, 94, 40, 0.35);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--slate-dark);
    transform: translateY(-3px);
}

/* Botón flotante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: var(--wa);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2.5s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================
   HEADER MODERNO Y SUBMENÚS (DROPDOWN)
   ========================================================== */
.site-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--yellow-accent);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    max-height: 55px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--green-main);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--green-main);
}

/* Estilos de Submenú (Dropdown) */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--green-main);
    z-index: 1002;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.dropdown-item i {
    color: var(--green-main);
    font-size: 15px;
    width: 18px;
    text-align: center;
}

.dropdown-item:hover {
    background-color: var(--green-light);
    color: var(--green-main);
    padding-left: 25px;
}

.btn-nav-cta {
    background-color: var(--green-main);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(20, 94, 40, 0.2);
}

.btn-nav-cta::after {
    display: none;
}

.btn-nav-cta:hover {
    background-color: var(--green-hover);
}

/* Menú hamburguesa móvil */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* ==========================================================
   BANNER DE VIDEO INMERSIVO (MEJORADO PARA RESPONSIVE)
   ========================================================== */
.video-banner-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 20px; /* Padding vertical generoso para evitar desbordes en móviles */
}

.video-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 38, 36, 0.88), rgba(0,0,0,0.3));
    z-index: 2;
}

.video-banner-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.video-banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.video-banner-content h1 span {
    color: var(--yellow-accent);
    position: relative;
}

.video-banner-content p {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 35px auto;
    color: #e2e8f0;
}

.banner-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================
   SECCIÓN MISIÓN Y SLIDER CONDIMENTERO
   ========================================================== */
.mission {
    padding: 120px 5%;
    background: linear-gradient(135deg, var(--slate-dark), #111a18);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mission-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--white);
}

.mission-text h2 span {
    color: var(--yellow-accent);
}

.mission-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.8;
}

.mission-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--white);
}

.feature-item i {
    color: var(--yellow-accent);
    font-size: 1.25rem;
}

.mission-slider-container {
    flex: 1;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    cursor: grab;
    border-left: 4px solid var(--yellow-accent);
    border-right: 4px solid var(--yellow-accent);
    touch-action: pan-y;
}

.mission-slider-container:active {
    cursor: grabbing;
}

.movie-slider-track {
    display: flex;
    gap: 25px;
    padding: 20px;
    width: max-content;
    will-change: transform;
}

.mission-slider-container:hover .movie-slider-track {
    animation-play-state: paused;
}

@keyframes infinite-movie-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 280px;
    width: 280px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.movie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(240, 228, 31, 0.3);
}

.movie-card:hover img {
    transform: scale(1.08);
}

.movie-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(27,38,36,0.95), transparent);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-card:hover .movie-card-info {
    opacity: 1;
}

.movie-card-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--yellow-accent);
    margin-bottom: 4px;
}

.movie-card-info p {
    font-size: 13px;
    color: #e2e8f0;
}

/* ==========================================================
   SECCIÓN BAÑOS
   ========================================================== */
.baths {
    padding: 120px 5%;
    background-color: var(--white);
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.baths-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.baths-text {
    flex: 1;
}

.baths-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--slate-dark);
}

.baths-text h2 span {
    color: var(--green-main);
}

.baths-subtitle {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green-main);
    margin-bottom: 20px;
}

.baths-text p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.baths-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.baths-image-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(20, 94, 40, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.baths-image {
    width: 380px;
    height: 380px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
    border: 4px solid var(--green-main);
}

.paint-splash {
    position: relative;
    width: 350px;
    height: 80px;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: -40px;
    z-index: 1;
}

.splash-shape {
    width: 60px;
    height: 60px;
    background-color: var(--green-main);
    border-radius: 50% 50% 20% 80%;
    animation: splash 3s infinite ease-in-out;
}

.splash-shape:nth-child(2) {
    animation-delay: 0.5s;
    background-color: var(--yellow-accent);
    border-radius: 60% 40% 30% 70%;
}

.splash-shape:nth-child(3) {
    animation-delay: 1s;
    background-color: var(--slate-dark);
    border-radius: 40% 60% 70% 30%;
}

@keyframes splash {
    0%, 100% { transform: scale(0.85) translateY(0); }
    50% { transform: scale(1.15) translateY(8px); }
}

/* ==========================================================
   SLIDER DE COLORES Y TEXTURAS
   ========================================================== */
.paint-slider-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.section-header-center h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--slate-dark);
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #64748b;
}

.paint-slider-container {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    padding: 20px 0;
    position: relative;
    touch-action: pan-y;
}

.paint-slider-container::-webkit-scrollbar {
    display: none;
}

.paint-slider-container:active {
    cursor: grabbing;
}

.paint-track {
    display: flex;
    gap: 50px;
    padding: 0 30px;
    width: max-content;
    will-change: transform;
}

.paint-slider-container:hover .paint-track {
    animation-play-state: paused;
}

@keyframes infinite-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.paint-blob-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    flex-shrink: 0;
    text-align: center;
}

.paint-blob {
    width: 130px;
    height: 120px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.paint-blob svg {
    width: 100%;
    height: 100%;
}

.paint-blob:hover {
    transform: scale(1.15) rotate(5deg);
}

.paint-blob-title {
    margin-top: 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-dark);
}

/* ==========================================================
   PORTAFOLIO
   ========================================================== */
.portfolio-section {
    padding: 120px 5%;
    background-color: var(--bg-light);
}

.portfolio-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-soft);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(20,94,40,0.95), rgba(27,38,36,0.4));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--yellow-accent);
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 0.95rem;
    color: #e2e8f0;
}

/* ==========================================================
   SECCIÓN DE CONTACTO
   ========================================================== */
.contact-section {
    padding: 120px 5%;
    background-color: var(--white);
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-box h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--slate-dark);
    margin-bottom: 20px;
}

.contact-info-box p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: var(--green-light);
    color: var(--green-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-dark);
    margin-bottom: 2px;
}

.contact-detail-item p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.contact-form-box {
    flex: 1;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid #e2e8f0;
}

.contact-form-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--slate-dark);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background-color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-main);
    box-shadow: 0 0 0 3px rgba(20, 94, 40, 0.15);
}

.w-100 {
    width: 100%;
}

/* ==========================================================
   ESTILOS PARA EL MAPA DE CONTACTO
   ========================================================== */
.contact-map-wrapper {
    margin-top: 30px;
    width: 100%;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #cbd5e1;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
    background-color: var(--slate-dark);
    color: var(--white);
    padding: 80px 5% 30px 5%;
    border-top: 4px solid var(--yellow-accent);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-height: 55px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yellow-accent);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow-accent);
    padding-left: 5px;
}

.social-grid-final {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-box {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-box:hover {
    transform: translateY(-5px);
}

.box-ig:hover { background-color: var(--ig); }
.box-fb:hover { background-color: var(--fb); }
.box-wa:hover { background-color: var(--wa); }
.box-tg:hover { background-color: var(--tg); }

.footer-bottom {
    max-width: 1300px;
    margin: 30px auto 0 auto;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
}

/* ==========================================================
   MEDIA QUERIES RESPONSIVE & SUBMENÚ MÓVIL
   ========================================================== */
@media (max-width: 1024px) {
    .mission-container,
    .baths-container,
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .video-banner-content h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        gap: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .nav-links.active {
        max-height: 800px;
        overflow-y: auto;
    }

    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-toggle {
        justify-content: center;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-light);
        border-top: none;
        border-left: 3px solid var(--green-main);
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin-top: 0;
        transition: max-height 0.3s ease, padding 0.3s ease, margin-top 0.3s ease;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        max-height: 400px;
        padding: 10px 0;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-item {
        justify-content: center;
        padding: 8px 15px;
    }

    .dropdown-item:hover {
        padding-left: 15px;
    }

    /* MEJORAS ESPECÍFICAS PARA EL BANNER DE VIDEO EN MÓVILES */
    .video-banner-section {
        min-height: auto;
        padding: 70px 15px;
    }

    .video-banner-content h1 {
        font-size: 2.1rem;
        line-height: 1.25;
        margin-bottom: 15px;
    }

    .video-banner-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .badge-pill {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 15px;
    }

    .banner-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .banner-cta-group .btn-primary,
    .banner-cta-group .btn-secondary {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .mission-text h2,
    .baths-text h2,
    .contact-info-box h2,
    .section-header-center h2 {
        font-size: 2.2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .video-banner-content h1 {
        font-size: 1.8rem;
    }
    .video-banner-content p {
        font-size: 0.95rem;
    }
}
