@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

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

:root {
    --ig: #E1306C;
    --fb: #4267B2;
    --wa: #25D366;
    --tg: #0088cc;
    --google-red: #ea4335;
    
    /* 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 {
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.5px;
}

.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 {
    font-family: 'Anton', sans-serif;
    background-color: var(--yellow-accent);
    color: var(--slate-dark);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0.5px;
    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 {
    font-family: 'Anton', sans-serif;
    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: 400;
    font-size: 17px;
    letter-spacing: 0.5px;
    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: 70px;
    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 {
    font-family: 'Anton', sans-serif;
    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);
    font-size: 16px;
    letter-spacing: 2px;
}

.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
   ========================================================== */
.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;
}

.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: 4rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.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: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 1px;
}

.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;
}

.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: 18px;
    font-weight: 400;
    color: var(--yellow-accent);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.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: 3.25rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--slate-dark);
    letter-spacing: 1px;
}

.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: 3rem;
    font-weight: 400;
    color: var(--slate-dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.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;
}

.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: 15px;
    font-weight: 700;
    color: var(--slate-dark);
}

/*Piso*/

.floors-slider-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

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

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

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

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

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

.floors-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    flex-shrink: 0;
    text-align: center;
}

.floors-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floors-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floors-image-wrapper:hover {
    transform: scale(1.08);
    transition: transform 0.3s ease;
}

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

/*Techo*/

.Tech-slider-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

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

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

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

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

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

.Tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    flex-shrink: 0;
    text-align: center;
}

.Tech-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.Tech-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Tech-image-wrapper:hover {
    transform: scale(1.08);
    transition: transform 0.3s ease;
}

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

/* ==========================================================
   PORTAFOLIO OCTOGONAL CON LUCES LED FLUIDAS Y DINÁMICAS
   ========================================================== */
.portfolio-section {
    padding: 20px;
    background-color: var(--bg-light);
}

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

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    height: 360px;
    width: 360px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-3px);
}

/* Marco Octogonal y Contenedor de Imagen */
.octagon-frame {
    position: relative;
    width: 360px;
    height: 360px;
    clip-path: polygon(
        30% 0%, 70% 0%, 
        100% 30%, 100% 70%, 
        70% 100%, 30% 100%, 
        0% 70%, 0% 30%
    );
    background-color: var(--slate-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
}

.octagon-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .octagon-frame img {
    transform: scale(1.12);
}

/* Capa de Luces LED Octogonales Fluidas */
.octagon-led-border {
    position: absolute;
    inset: -6px;
    pointer-events: none;
    clip-path: polygon(
        30% 0%, 70% 0%, 
        100% 30%, 100% 70%, 
        70% 100%, 30% 100%, 
        0% 70%, 0% 30%
    );
    z-index: 3;
    border: 4px solid transparent;
    transition: border-color 0.8s ease, box-shadow 0.8s ease;
}

.portfolio-item.led-active .octagon-led-border {
    border-color: var(--led-color, var(--yellow-accent));
    box-shadow: 
        0 0 18px var(--led-color, var(--yellow-accent)), 
        inset 0 0 12px var(--led-color, var(--yellow-accent));
    animation: led-pulse-glow 1.5s infinite alternate ease-in-out;
}

@keyframes led-pulse-glow {
    0% {
        filter: brightness(0.9);
        box-shadow: 0 0 10px var(--led-color, var(--yellow-accent)), inset 0 0 8px var(--led-color, var(--yellow-accent));
    }
    100% {
        filter: brightness(1.4);
        box-shadow: 0 0 28px var(--led-color, var(--yellow-accent)), inset 0 0 18px var(--led-color, var(--yellow-accent));
    }
}

/* Overlay de Información */
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    padding: 20px;
    background: linear-gradient(to top, rgba(20,94,40,0.96), rgba(27,38,36,0.8));
    backdrop-filter: blur(5px);
    border-radius: 12px;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 5;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    visibility: visible;
    bottom: 10px;
}

.portfolio-overlay h4 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--yellow-accent);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

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

/* ==========================================================
   ESTILOS SECCIÓN GOOGLE MY BUSINESS (RESEÑAS)
   ========================================================== */
.gmb-reviews-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f0f4f1, #e6eee8);
    position: relative;
}

.gmb-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: stretch;
}

.gmb-summary-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 5px solid var(--google-red);
    text-align: center;
}

.gmb-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.gmb-google-icon {
    font-size: 36px;
    color: var(--google-red);
}

.gmb-brand h3 {
    font-size: 1.4rem;
    color: var(--slate-dark);
    margin: 0;
}

.gmb-location {
    font-size: 0.85rem;
    color: var(--slate-gray);
    font-weight: 500;
}

.gmb-rating-box {
    margin: 20px 0;
}

.gmb-score {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    color: var(--slate-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.gmb-stars-container {
    color: #fbbc05;
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.gmb-reviews-count {
    font-size: 0.9rem;
    color: var(--slate-gray);
}

.gmb-cta-btn {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
    background-color: var(--slate-dark);
    color: var(--white);
}

.gmb-cta-btn:hover {
    background-color: var(--green-main);
    color: var(--white);
}

.gmb-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gmb-review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.gmb-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gmb-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.gmb-reviewer-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--google-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.gmb-reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-dark);
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.gmb-review-date {
    font-size: 0.8rem;
    color: var(--slate-gray);
}

.gmb-card-g-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: #4285F4;
    font-size: 1.2rem;
}

.gmb-stars {
    color: #fbbc05;
    font-size: 0.95rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.gmb-review-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.gmb-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-main);
    background-color: var(--green-light);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    width: fit-content;
}


.btn-primary-res {
    font-family: Anton, sans-serif;
    background-color: var(--slate-dark);
    color: var(--white);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(20, 94, 40, 0.25) 0px 8px 20px;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    gap: 10px;
    margin-top: 20px;
    transition: 0.3s;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
}

.btn-primary-res:hover {
    background-color: var(--green-main);
    color: var(--white);
}


/* ==========================================================
   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: 3rem;
    font-weight: 400;
    color: var(--slate-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.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.2rem;
    font-weight: 400;
    color: var(--slate-dark);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.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: 2rem;
    font-weight: 400;
    color: var(--slate-dark);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.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: rgb(0 0 0 / 71%);
    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: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--yellow-accent);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.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: 1200px) {
    .gmb-container {
        grid-template-columns: 1fr;
    }
    .gmb-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@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: 3rem;
    }
}

@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: 900px;
        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;
    }

    .video-banner-section {
        min-height: auto;
        padding: 70px 15px;
    }

    .video-banner-content h1 {
        font-size: 2.3rem;
        line-height: 1.2;
        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: 16px;
    }

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

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

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

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