/* ========================================
   TADAISA PHOTOGRAPHY - CLEAN CSS
   ======================================== */

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #c9a96e;
    --text-light: #666666;
    --text-dark: #333333;
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    padding-top: 95px;
}

html {
    scroll-behavior: smooth;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    min-height: 95px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Alinear el logo a la esquina izquierda en el navbar */
.navbar .nav-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 12px;
}

.logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 95px; /* Altura ajustada del navbar (65px logo + 30px padding) */
        gap: 0;
        flex-direction: column;
        background-color: #ffffff; /* Fondo sólido blanco */
        width: 100%;
        height: calc(100vh - 95px); /* Altura completa menos el navbar */
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        backdrop-filter: none; /* Mejor rendimiento en móviles */
        overflow-y: auto; /* Permitir scroll si el menú es muy largo */
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 16px 0;
    }
}

/* ========================================
   VIDEO HERO SECTION
   ======================================== */
.video-hero-section {
    position: relative;
    height: 30vh; /* Reducido de 60vh a 30vh (la mitad) */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: filter 0.5s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
    transition: background 0.5s ease;
}

.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    display: flex;
    align-items: center; /* Cambiado de flex-end a center */
    height: 100%;
    padding-top: 20px; /* Agregamos un pequeño padding superior para bajarlo un poquito */
}

/* Loading states for video background */
.video-background.loading .video-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.video-background.loading video {
    filter: blur(1px);
}

.video-background.loaded .video-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.video-background.loaded video {
    filter: none;
}

.video-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.5s both;
}

.decorative-line {
    width: 80px;
    height: 1px;
    background-color: var(--accent-color);
    position: relative;
}

.decorative-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.decorative-line:first-child {
    animation: fadeInUp 1s ease 0.3s both;
}

.decorative-line:last-child {
    animation: fadeInUp 1s ease 0.7s both;
}

.video-subtitle {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0.95;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    line-height: 1.4;
}
/* Estabilidad de imágenes para evitar CLS */
.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}
.video-thumbnail img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.equipment-photo,
.mockup-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ========================================
   OUR SERVICE SECTION
   ======================================== */
.our-service {
    padding: 70px 0;
    background-color: var(--secondary-color);
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.service-subtitle {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    font-style: italic;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.service-description {
    margin-bottom: 50px;
}

.service-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: justify;
}

.service-description .service-closing {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    color: var(--accent-color);
    font-style: italic;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
    position: relative;
}

.service-description .service-closing::before,
.service-description .service-closing::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: var(--accent-color);
}

.service-description .service-closing::before {
    left: -80px;
}

.service-description .service-closing::after {
    right: -80px;
}

.service-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   HERO SECTION WITH SLIDESHOW
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    gap: 40px;
}

.hero-content {
    flex: 1;
    padding: 0 60px;
    min-width: 0; /* Permite que el contenido se contraiga */
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.4;
}

.hero-emotional-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.8;
    max-width: 600px;
    text-align: center;
    font-family: var(--font-secondary);
    opacity: 0.9;
    padding: 0 20px;
}

.hero-slideshow {
    flex: 1;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-width: 0; /* Permite que el slideshow se contraiga */
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25), 0 0 30px rgba(201, 169, 110, 0.2);
    border: 3px solid var(--accent-color);
    background: linear-gradient(45deg, var(--accent-color), #d4af37, var(--accent-color));
    padding: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideshow-glow 8s ease-in-out infinite;
    margin: 0 auto; /* Centrar en contenedores flexibles */
}
 .slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slideshow::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 380px;
    height: 520px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(201,169,110,0.25) 0%, rgba(255,255,255,0.0) 60%);
    filter: blur(28px);
    z-index: 0;
}
.slideshow-container { z-index: 1; }

.hero-emotion {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--text-dark);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0.95;
    letter-spacing: 0.3px;
    text-align: right;
    margin-left: auto;
}
.hero-content .cta-button {
    display: block;
    margin-top: 12px;
    margin-left: auto;
    padding: 8px 12px;
    font-size: 10.5px;
    letter-spacing: 0.5px;
    border-width: 1px;
    width: fit-content;
    min-width: 88px;
    text-align: center;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .hero-content .cta-button {
        margin-left: 0;
        margin-right: auto;
    }
}

.slideshow-container::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(201,169,110,0.9);
    clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
    top: 0;
    left: 0;
    box-shadow:
      -22px 18px 0 0 rgba(201,169,110,0.9),
      -28px 160px 0 0 rgba(201,169,110,0.85),
      -20px 320px 0 0 rgba(201,169,110,0.9),
      140px -24px 0 0 rgba(201,169,110,0.8),
      280px -18px 0 0 rgba(201,169,110,0.9),
      300px 180px 0 0 rgba(201,169,110,0.85),
      270px 360px 0 0 rgba(201,169,110,0.9),
      140px 400px 0 0 rgba(201,169,110,0.8);
    filter: blur(0.3px);
    animation: twinkle 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}
.slideshow-container::after {
    content: '';
    position: absolute;
    inset: -24px;
    border-radius: 24px;
    background:
      radial-gradient(circle at 8% 12%, rgba(201,169,110,0.25), transparent 40%),
      radial-gradient(circle at 92% 20%, rgba(201,169,110,0.18), transparent 38%),
      radial-gradient(circle at 10% 85%, rgba(201,169,110,0.22), transparent 42%),
      radial-gradient(circle at 88% 82%, rgba(201,169,110,0.2), transparent 40%);
    filter: blur(12px);
    pointer-events: none;
    z-index: 0;
}
@keyframes twinkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}
@media (max-width: 768px) {
    .slideshow-container::before,
    .slideshow-container::after {
        display: none;
    }
}

/* Estrellas elegantes alrededor del hero-slideshow (responsive) */
.hero-slideshow::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    background: rgba(201,169,110,0.35);
    clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
    filter: blur(0.6px);
    box-shadow:
      -180px -140px 0 3px rgba(201,169,110,0.28),
      -210px 120px 0 2px rgba(201,169,110,0.25),
      -160px 260px 0 3px rgba(201,169,110,0.28),
      160px -160px 0 3px rgba(201,169,110,0.26),
      220px -40px 0 2px rgba(201,169,110,0.22),
      240px 160px 0 3px rgba(201,169,110,0.28),
      180px 300px 0 3px rgba(201,169,110,0.26),
      -10px -200px 0 2px rgba(201,169,110,0.22);
    animation: sparkleTwinkle 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes sparkleTwinkle {
    0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}
@media (max-width: 1024px) {
    .hero-slideshow::after {
        transform: translate(-50%, -50%) scale(0.9);
        box-shadow:
          -140px -110px 0 3px rgba(201,169,110,0.26),
          -160px 90px 0 2px rgba(201,169,110,0.22),
          -120px 200px 0 3px rgba(201,169,110,0.26),
          120px -130px 0 3px rgba(201,169,110,0.24),
          160px -30px 0 2px rgba(201,169,110,0.2),
          180px 130px 0 3px rgba(201,169,110,0.26),
          140px 240px 0 3px rgba(201,169,110,0.24),
          -8px -150px 0 2px rgba(201,169,110,0.2);
    }
}
@media (max-width: 768px) {
    .hero-slideshow::after {
        display: none; /* Evitar ruido visual en pantallas pequeñas */
    }
}
.slide {
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
}

.slide.active {
    display: block;
    animation: slideIn 0.8s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.05);
}

@keyframes slideshow-glow {
    0%, 100% {
        box-shadow: 0 25px 50px rgba(0,0,0,0.25), 0 0 30px rgba(201, 169, 110, 0.2);
    }
    50% {
        box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 40px rgba(201, 169, 110, 0.4);
    }
}

.slide {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    border-radius: 16px;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(5%) contrast(1.1) brightness(1.05);
    transition: all 0.8s ease;
    border-radius: 16px;
}

.slide.active img {
    filter: grayscale(0%) contrast(1.15) brightness(1.1);
}

/* ========================================
   BUTTONS
   ======================================== */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.cta-button.primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.cta-button.primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

/* ========================================
   SHARED STYLES
   ======================================== */
.section-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.page-hero {
    position: relative;
    height: 30vh; /* Misma altura que video-hero-section del index */
    display: flex;
    align-items: center; /* Mismo centrado que index */
    justify-content: center; /* Mismo centrado que index */
    overflow: hidden;
    text-align: center;
}

.page-hero .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: filter 0.4s ease;
}

/* Quitar gris del overlay en page-hero */
.page-hero .video-overlay {
    background: transparent;
    transition: background 0.4s ease;
}

.page-hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center; /* Mismo centrado que video-content del index */
    height: 100%;
    padding-top: 20px; /* Mismo padding que index para bajar un poquito */
}

.page-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.team-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 340px);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    justify-content: center;
}

/* Centrar los dos últimos elementos en la segunda fila */
.team-member:nth-child(4) {
    grid-column: 1 / 2;
    margin: 0;
}

.team-member:nth-child(5) {
    grid-column: 3 / 4;
    margin: 0;
}

/* Logo standalone centrado entre Borys (col 1) y Siboney (col 3) */
.team-logo-standalone {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-logo-standalone img {
    width: 80px;
    height: auto;
    border: none;
    filter: none;
}

.team-member {
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f5f5f5;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.member-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.team-member.team-logo .member-photo {
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.team-member:hover .member-photo img {
    filter: grayscale(0%);
}

.member-name {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.member-role {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.member-description {
    font-size: 12px;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.about-text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text-content .about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: justify;
}

/* Awards Section (Approach Section) */
.awards-section {
    padding: 50px 0;
    background: white;
    position: relative;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

/* Approach Section (formerly Awards) */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 20px;
    background: #fafafa;
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.approach-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-left-color: var(--accent-color);
    background: white;
}

.approach-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 3px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.approach-item:hover .approach-icon {
    filter: grayscale(0%);
}

.approach-info {
    flex: 1;
}

.approach-info h4 {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    position: relative;
}

.approach-info h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.approach-item:hover .approach-info h4::after {
    width: 30px;
}

.approach-info p {
    font-size: 12px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Responsive Team Section */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 0 15px;
        max-width: 600px;
    }
    
    /* Resetear posicionamiento en tablet */
    .team-member:nth-child(4),
    .team-member:nth-child(5),
    .team-logo-standalone {
        grid-column: auto;
        margin-left: 0;
        margin-right: 0;
    }
    .team-logo-standalone {
        grid-row: auto;
    }
    
    .team-member {
        padding: 20px 15px;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .member-name {
        font-size: 14px;
    }
    
    .member-role {
        font-size: 10px;
    }
    
    .member-description {
        font-size: 11px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 20px;
    }
    
    .approach-item {
        padding: 30px 25px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        border-left: none;
        border-top: 3px solid transparent;
    }
    
    .approach-item:hover {
        border-top-color: var(--accent-color);
        border-left-color: transparent;
    }
    
    .approach-icon {
        margin-top: 0;
        font-size: 28px;
    }
    
    .approach-info h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .approach-info h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .approach-info p {
        font-size: 13px;
    }
    
    .about-text-content .about-description {
        text-align: left;
        font-size: 15px;
    }
    
    .about-video-section {
        margin: 0 20px;
    }
    
    .video-container {
        height: 250px;
        border-radius: 8px;
    }
    
    .video-title {
        font-size: 16px;
        letter-spacing: 1.5px;
    }
    
    .video-text .decorative-line {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Resetear posicionamiento en móvil */
    .team-member:nth-child(4),
    .team-member:nth-child(5) {
        grid-column: auto;
        margin-left: 0;
        margin-right: 0;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .member-name {
        font-size: 16px;
    }
    
    .member-role {
        font-size: 12px;
    }
    
    .member-description {
        font-size: 13px;
    }
}

/* ========================================
   PRICING PLANS - ELEGANT MINIMAL DESIGN
   ======================================== */
.pricing-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.pricing-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.pricing-description {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-top: 15px;
}

/* Elegant Horizontal Grid */
.elegant-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.elegant-plan {
    background: white;
    border-radius: 8px;
    padding: 20px 15px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    height: 480px;
    display: flex;
    flex-direction: column;
}

.elegant-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.elegant-plan.featured {
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.15);
    position: relative;
    z-index: 1;
}

.plan-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    font-size: 9px;
    letter-spacing: 1px;
    border-radius: 12px;
    font-weight: 500;
}

.plan-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 12px;
}

.plan-header-section {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
    flex-shrink: 0;
}

.plan-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.plan-price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.price-amount {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.price-duration {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.plan-summary {
    font-size: 12px;
    color: var(--text-dark);
    line-height: 1.4;
    text-align: center;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 5px;
}

.plan-services-compact {
    text-align: center;
    margin: 10px 0;
    padding: 8px 10px;
    background: rgba(201, 169, 110, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    flex-shrink: 0;
}

.plan-services-compact p {
    font-size: 11px;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
    font-weight: 400;
}

.plan-services-compact small {
    font-size: 10px;
    color: var(--text-light);
    font-style: italic;
    display: block;
    margin-top: 4px;
}

.includes-btn {
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 4px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.includes-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-1px);
}

.plan-includes {
    text-align: center;
    margin: 8px 0;
    padding: 8px 10px;
    background: rgba(201, 169, 110, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    animation: slideDown 0.3s ease;
    overflow: hidden;
    word-wrap: break-word;
}

.plan-includes p {
    font-size: 11px;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
    font-weight: 400;
}

.plan-includes small {
    font-size: 10px;
    color: var(--text-light);
    font-style: italic;
    display: block;
    margin-top: 4px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding: 0 10px;
    }
    to {
        opacity: 1;
        max-height: 100px;
        padding: 8px 10px;
    }
}

.plan-examples-mini {
    text-align: center;
    margin: 6px 0 0 0;
    flex-shrink: 0;
}

.examples-label {
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.mini-examples {
    display: flex;
    gap: 3px;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 32px;
    align-items: center;
}

.mini-example {
    font-size: 7px;
    padding: 4px 6px;
    background: #f8f8f8;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    line-height: 1.2;
    white-space: nowrap;
    flex: 0 0 auto;
}

.mini-example:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 2px;
    flex-shrink: 0;
}

.action-btn {
    padding: 6px 12px;
    font-size: 9px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.primary-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border-color: #ddd;
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    margin-bottom: 4px;
}

.instagram-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Responsive Design for Elegant Pricing */
@media (max-width: 1200px) {
    .elegant-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin: 0 20px;
    }
    
    .elegant-plan {
        height: 460px;
    }
    
    .elegant-plan.featured {
        height: 480px;
    }
}

@media (max-width: 1024px) {
    .elegant-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin: 0 20px;
    }
    
    .elegant-plan {
        height: 460px;
    }
    
    .elegant-plan.featured {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .elegant-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 0 15px;
    }
    
    .elegant-plan {
        padding: 20px 15px;
        height: 440px;
    }
    
    .elegant-plan.featured {
        height: 460px;
    }
    
    .plan-title {
        font-size: 16px;
    }
    
    .price-amount {
        font-size: 20px;
    }
    
    .plan-summary {
        font-size: 12px;
        min-height: 45px;
    }
    
    .action-btn {
        padding: 7px 12px;
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .elegant-pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 15px;
    }
    
    .elegant-plan {
        height: auto;
        min-height: 400px;
        padding: 20px 15px;
    }
    
    .elegant-plan.featured {
        height: auto;
        min-height: 420px;
    }
    
    .plan-summary {
        min-height: 40px;
    }
    
    .action-btn {
        padding: 8px 14px;
        font-size: 9px;
    }
    
    /* Mejorar el espaciado en móviles */
    .plan-content {
        gap: 10px;
    }
    
    .plan-actions {
        gap: 6px;
        margin-top: 8px;
    }
    
    .plan-includes {
        margin: 6px 0;
        padding: 6px 8px;
    }
    
    .plan-includes p {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .plan-includes small {
        font-size: 9px;
        margin-top: 3px;
    }
}

/* ========================================
   RESPONSIVE HERO SECTION
   ======================================== */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 40px;
        text-align: center;
        gap: 30px;
        height: auto;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        padding: 0 20px;
        width: 100%;
        order: 1; /* Ensure content is first */
    }

    .hero-slideshow {
        width: 100%;
        height: auto;
        padding: 20px;
        justify-content: center;
        /* Move it down a bit as requested */
        margin-top: 30px;
        order: 2; /* Slideshow second */
        min-height: 400px; /* Give it space */
    }

    .slideshow-container {
        /* Make it responsive but keep the aspect ratio or max width */
        max-width: 280px;
        height: 380px;
        transform: translateY(20px); /* Visualmente más abajo */
    }
    
    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-slideshow {
        margin-top: 20px;
        min-height: 360px;
    }

    .slideshow-container {
        max-width: 240px;
        height: 320px;
    }
}


/* Media query adicional para pantallas muy pequeñas */
@media (max-width: 360px) {
    .elegant-plan {
        height: auto;
        min-height: 380px;
        padding: 15px 12px;
    }
    
    .elegant-plan.featured {
        height: auto;
        min-height: 400px;
    }
    
    .plan-title {
        font-size: 15px;
    }
    
    .price-amount {
        font-size: 18px;
    }
    
    .plan-summary {
        font-size: 11px;
        min-height: 35px;
    }
    
    .action-btn {
        padding: 6px 10px;
        font-size: 8px;
    }
    
    .plan-includes p {
        font-size: 9px;
    }
    
    .plan-includes small {
        font-size: 8px;
    }
    
    .mini-examples {
        gap: 4px;
    }
    
    .mini-example {
        padding: 3px 6px;
        font-size: 8px;
    }
}

/* ========================================
   FORMS
   ======================================== */
.contact-form,
.contact-form-detailed,
.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.contact-form-detailed select {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 13px;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.contact-form-detailed select:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-size: 11px;
    letter-spacing: 0.5px;
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-bottom-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 11px;
    margin-top: 5px;
    letter-spacing: 0.3px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Checkbox validation styles */
.checkbox-group .error-message {
    margin-top: 8px;
    margin-left: 25px;
}

.checkbox-group.error .checkmark {
    border-color: #e74c3c;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.submit-btn {
    align-self: flex-start;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.submit-btn:hover {
    background-color: var(--accent-color);
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--secondary-color);
    padding: 25px 0 15px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 0 0;
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
    text-align: left;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--accent-color);
}

.footer-about {
    text-align: left;
    padding-right: 15px;
    margin-left: -70px;
}

.footer-about p {
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    text-align: left;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info li span {
    font-size: 11px;
    color: var(--accent-color);
    width: 12px;
    text-align: center;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 11px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0 20px 0 0;
    text-align: left;
}

.footer-section:last-child {
    margin-right: -30px;
    padding-left: 15px;
}

.footer-services li {
    margin-bottom: 4px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 12px;
}

.footer-services li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 11px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    padding-top: 12px;
    text-align: center;
}

.footer-bottom p {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 0.5px;
    font-style: italic;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 12px;
    }
    
    .footer-about p {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .footer-about {
        margin-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .footer-about p {
        font-size: 14px;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-section:last-child {
        margin-right: 0;
        padding-left: 0;
    }

    .footer-contact-info li {
        font-size: 14px;
        margin-bottom: 10px;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-services {
        text-align: center;
        margin: 0;
    }

    .footer-services li {
        font-size: 14px;
        padding-left: 0;
    }

    .footer-services li::before {
        position: relative;
        left: auto;
        margin-right: 5px;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
        gap: 15px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .footer-links-grid {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
        padding: 0 15px;
    }
    
    .footer-section h3 {
        font-size: 14px;
    }
    
    .footer-about p {
        font-size: 13px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
    
    /* Video Section */
    .video-hero-section {
        height: 25vh; /* Reducido de 50vh a 25vh (la mitad) */
    }
    
    .video-title {
        font-size: 32px;
    }
    
    .video-subtitle {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .decorative-line {
        width: 60px;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px 40px;
    }
    
    .hero-content {
        padding: 0;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-slideshow {
        height: 50vh;
        padding: 20px;
    }
    
    .slideshow-container {
        max-width: 220px;
        height: 280px;
        border-radius: 15px;
    }
    
    /* Service Section */
    .service-title {
        font-size: 28px;
    }
    
    .service-subtitle {
        font-size: 26px;
        letter-spacing: 0.3px;
    }
    
    .service-description .service-closing {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    
    .service-description .service-closing::before,
    .service-description .service-closing::after {
        width: 40px;
    }
    
    .service-description .service-closing::before {
        left: -50px;
    }
    
    .service-description .service-closing::after {
        right: -50px;
    }
    
    .service-description p {
        text-align: left;
        font-size: 15px;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta .cta-button {
        width: 200px;
    }
}

/* Responsive adicional para móviles muy pequeños */
@media (max-width: 480px) {
    .service-subtitle {
        font-size: 22px;
        letter-spacing: 0.2px;
        padding: 0 10px;
    }
    
    .service-description .service-closing {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    
    .service-description .service-closing::before,
    .service-description .service-closing::after {
        display: none; /* Ocultar líneas decorativas en móviles pequeños */
    }
    
    /* Hero Section para móviles pequeños */
    .hero {
        padding: 60px 15px 30px;
        gap: 20px;
    }
    
    .hero-content {
        margin-bottom: 20px;
        flex: none;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .hero-emotional-text {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 15px;
        margin-bottom: 25px;
    }
    
    .hero-slideshow {
        height: 50vh;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        min-height: 300px;
    }
    
    .slideshow-container {
        max-width: 200px;
        height: 280px;
        border-radius: 15px;
        border-width: 2px;
        padding: 3px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 0 20px rgba(201, 169, 110, 0.3);
    }
    
    .slide {
        border-radius: 12px;
    }
    
    .slide img {
        border-radius: 12px;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 12px;
        margin-top: 15px;
    }
}

/* Media query adicional para pantallas muy pequeñas */
@media (max-width: 360px) {
    .hero {
        padding: 50px 10px 25px;
    }
    
    .hero-slideshow {
        height: 45vh;
        padding: 8px;
        min-height: 280px;
    }
    
    .slideshow-container {
        max-width: 180px;
        height: 250px;
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-emotional-text {
        font-size: 13px;
        line-height: 1.5;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 11px;
    }
}

/* Media query para pantallas horizontales en móviles */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        flex-direction: row;
        align-items: center;
        padding: 40px 20px;
        min-height: 100vh;
    }
    
    .hero-content {
        flex: 1;
        margin-bottom: 0;
        margin-right: 20px;
    }
    
    .hero-slideshow {
        flex: 1;
        height: 70vh;
        max-height: 400px;
    }
    
    .slideshow-container {
        max-width: 250px;
        height: 320px;
    }
}
    
/* Page Elements - Moved inside responsive query or fixed indentation */
@media (max-width: 768px) {
    .page-hero {
        height: 25vh; /* Misma altura que video-hero-section del index en móviles */
    }
    
    .page-title {
        font-size: 32px;
        letter-spacing: 1.5px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .plan-description p {
        font-size: 13px;
    }
    
    .plan-note {
        font-size: 11px;
    }
    
    /* Plan Examples */
    .plan-examples {
        padding: 12px;
        margin: 12px 0;
    }
    
    .plan-examples h4 {
        font-size: 13px;
    }
    
    .examples-subtitle {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .example-buttons {
        gap: 6px;
    }
    
    .example-btn {
        font-size: 8px;
        padding: 5px 10px;
        min-height: 22px;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ========================================
   ABOUT PAGE STYLES (QUIENES SOMOS)
   ======================================== */
.about-detailed {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-section h2 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: justify;
}

.about-image-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Vision & Mission Section */
.vision-mission {
    padding: 50px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
    margin-top: -5px;
}

/* Sections without subtitles need extra bottom margin */
.section-title.no-subtitle {
    margin-bottom: 50px;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.vm-item {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    border-top: 3px solid transparent;
}

.vm-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-top-color: var(--accent-color);
}

.vm-icon {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

.vm-item h3 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    position: relative;
}

.vm-item h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 1px;
    background: var(--accent-color);
}

.vm-item p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text-section h2 {
        font-size: 28px;
    }
    
    .about-description {
        text-align: left;
        font-size: 15px;
    }
    
    .about-image-section img {
        height: 300px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0 20px;
    }
    
    .vm-item {
        padding: 20px 15px;
    }
    
    .vm-icon {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .vm-item h3 {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .vm-item p {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .section-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
        margin-top: -3px;
    }
    
    .section-title.no-subtitle {
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 50px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .award-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .award-year {
        min-width: auto;
    }
}
/* ========================================
   GALLERY STYLES
   ======================================== */

/* Gallery Filters */
.gallery-filters {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    font-weight: 400;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Moments Description Section */
.moments-description {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.moment-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.moment-info h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.moment-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
    text-align: justify;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: #fafafa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}



.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.gallery-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Gallery CTA */
.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    text-align: center;
}

.gallery-cta h2 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.gallery-cta h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--accent-color);
}

.gallery-cta h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--accent-color);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .filter-buttons {
        gap: 15px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 11px;
    }
    
    .moments-description {
        padding: 40px 0;
    }
    
    .moment-info h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .moment-info p {
        font-size: 15px;
        text-align: left;
        padding: 0 10px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 45px;
        margin: 0 15px;
        padding: 25px;
    }
    
    .gallery-overlay h3 {
        font-size: 16px;
    }
    
    .gallery-overlay p {
        font-size: 13px;
    }
    
    .gallery-cta {
        padding: 60px 20px;
    }
    
    .gallery-cta h2 {
        font-size: 18px;
        line-height: 1.5;
        letter-spacing: 0.3px;
    }
    
    .gallery-cta h2::before,
    .gallery-cta h2::after {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .moments-description {
        padding: 30px 0;
    }
    
    .moment-info h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .moment-info p {
        font-size: 14px;
        padding: 0 5px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 0 20px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .filter-btn {
        width: 200px;
    }
}

/* ========================================
   PLAN DETAILS SECTION - ELEGANT MODAL
   ======================================== */
.plan-details-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.plan-details-content {
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    background: white;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.details-header {
    background: var(--primary-color);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.details-header .section-title {
    color: white;
    margin: 0;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1.5px;
}

.close-details-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-details-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 30px;
    max-height: calc(85vh - 80px);
    overflow-y: auto;
}

.details-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-section {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.detail-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-section h3 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.detail-section h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-color);
}

.detail-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.services-list li {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-dark);
    padding: 12px 15px;
    background: #fafafa;
    border-left: 3px solid var(--accent-color);
    position: relative;
}

.services-list li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 3px;
}

.examples-section {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
}

.examples-section h4 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0.5px;
}

.example-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.example-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: white;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    text-align: center;
}

.example-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.example-icon {
    font-size: 20px;
}

.example-info h5 {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.5px;
}

.example-info p {
    font-size: 10px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.3;
}

.details-cta {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.details-cta .cta-button {
    padding: 12px 30px;
    font-size: 11px;
    letter-spacing: 1.5px;
    min-width: 200px;
}

/* Responsive Design for Plan Details */
@media (max-width: 768px) {
    .plan-details-section {
        padding: 15px;
    }
    
    .plan-details-content {
        max-height: 90vh;
        border-radius: 0;
    }
    
    .details-header {
        padding: 20px;
    }
    
    .details-header .section-title {
        font-size: 18px;
    }
    
    .details-grid {
        padding: 20px;
    }
    
    .detail-section h3 {
        font-size: 14px;
    }
    
    .detail-section p {
        font-size: 13px;
    }
    
    .services-list li {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .example-links {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .example-link {
        flex-direction: row;
        text-align: left;
        padding: 12px;
    }
    
    .example-icon {
        font-size: 18px;
        min-width: 30px;
    }
}
/* ========================================
   EXCLUSIVE SERVICE SECTION - COMPACT & ELEGANT
   ======================================== */
.exclusive-service-section {
    padding: 60px 0;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.exclusive-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.exclusive-header {
    margin-bottom: 40px;
}

.exclusive-header .section-title {
    margin-bottom: 8px;
    font-size: 28px;
}

.exclusive-subtitle {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    color: var(--accent-color);
    font-style: italic;
    letter-spacing: 0.5px;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.exclusive-info {
    text-align: left;
}

.exclusive-info h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.exclusive-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.exclusive-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 10px;
    padding: 4px 12px;
    background: white;
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.exclusive-preview {
    display: flex;
    justify-content: center;
}

.browser-mockup {
    width: 320px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.browser-mockup:hover {
    transform: translateY(-3px);
}

.browser-header {
    background: #f5f5f5;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
    position: relative;
}

.browser-dots::before,
.browser-dots::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots::before {
    left: 14px;
    background: #ffbd2e;
}

.browser-dots::after {
    left: 28px;
    background: #28ca42;
}

.browser-url {
    font-size: 11px;
    color: var(--text-light);
    background: white;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.browser-content {
    padding: 0;
    background: white;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.browser-mockup:hover .mockup-image {
    transform: scale(1.05);
}

.exclusive-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.exclusive-cta .cta-button {
    padding: 10px 20px;
    font-size: 10px;
    letter-spacing: 1.5px;
    min-width: 120px;
}

/* Responsive Design for Exclusive Service */
@media (max-width: 768px) {
    .exclusive-service-section {
        padding: 50px 0;
    }
    
    .exclusive-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .exclusive-info {
        text-align: center;
    }
    
    .exclusive-info h3 {
        font-size: 18px;
    }
    
    .exclusive-info p {
        font-size: 13px;
    }
    
    .exclusive-features {
        justify-content: center;
    }
    
    .browser-mockup {
        width: 280px;
    }
    
    .browser-content {
        height: 180px;
    }
    
    .mockup-image {
        object-fit: cover;
    }
    
    .exclusive-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .exclusive-cta .cta-button {
        width: 160px;
    }
}
/* ========================================
   REVIEWS PAGE STYLES - ELEGANT & MINIMAL
   ======================================== */

/* Reviews Section with Form and Sidebar */
.reviews-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

/* Write Review Card */
.write-review-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 3px solid var(--accent-color);
}

.write-review-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-align: center;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 13px;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    font-family: var(--font-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Character counter styles */
.char-counter {
    font-size: 10px;
    color: var(--text-light);
    margin-top: 5px;
    display: block;
    letter-spacing: 0.3px;
    font-style: italic;
}

.textarea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.char-count {
    font-size: 10px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
}

.rating-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-input label {
    font-size: 12px;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.star-rating {
    display: flex;
    gap: 3px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 20px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--accent-color);
}

.submit-btn {
    align-self: center;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    font-size: 10px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    font-family: var(--font-secondary);
    font-weight: 500;
}

.submit-btn:hover {
    background-color: var(--accent-color);
}

/* Rating Sidebar */
.rating-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-summary-compact {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.rating-score-small {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.score-small {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stars-small {
    margin-bottom: 10px;
}

.stars-small .star {
    font-size: 16px;
    color: var(--accent-color);
    margin: 0 1px;
}

.clients-count {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 0.5px;
}

.rating-text-small h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.rating-text-small p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* Featured Reviews Section */
.featured-reviews {
    padding: 60px 0;
    background: #fafafa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px; /* Aumentado para dar más espacio */
    margin: 0 auto;
    margin-top: 40px;
    padding: 0 20px;
}

.review-card {
    background: white;
    padding: 30px 25px; /* Más padding para mejor espaciado */
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 320px; /* Aumentado de 240px a 320px */
    height: auto; /* Altura automática para adaptarse al contenido */
    width: 100%;
    position: relative;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    border-top-color: var(--accent-color);
}

.review-content {
    flex: 1;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.review-content p {
    font-size: 15px; /* Aumentado de 14px a 15px */
    line-height: 1.7; /* Aumentado de 1.5 a 1.7 para mejor legibilidad */
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block; /* Cambiado para mostrar todo el texto */
    max-height: none; /* Sin límite de altura */
}

.review-content p::before {
    content: '"';
    font-size: 36px; /* Aumentado de 32px a 36px */
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: 0;
    font-family: var(--font-primary);
    line-height: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
    margin-top: auto; /* Empuja el footer al fondo */
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
    min-width: 0;
}

.reviewer-info h4 {
    font-family: var(--font-primary);
    font-size: 16px; /* Aumentado de 15px a 16px */
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px; /* Limitar ancho del nombre */
}

.reviewer-info p {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-weight: 500;
}

.review-rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
    margin-left: 10px;
}

.review-rating .star {
    font-size: 14px;
    color: var(--accent-color);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Responsive Design for Reviews */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        max-width: 600px; /* Reducido para tablet */
        padding: 0 25px;
        margin-top: 35px;
    }
    
    .review-card {
        height: 220px; /* Altura fija más pequeña */
        padding: 22px 18px;
    }
    
    .review-content p {
        font-size: 13px;
        line-height: 1.4;
        height: 72px; /* 4 líneas × 18px */
        line-clamp: 4;
        -webkit-line-clamp: 4;
    }
    
    .review-content p::before {
        font-size: 28px;
        top: -6px;
    }
    
    .review-footer {
        height: 55px;
        padding-top: 12px;
    }
    
    .reviewer-info h4 {
        font-size: 14px;
        max-width: 120px;
    }
    
    .reviewer-info p {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 50px 0;
    }
    
    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 20px;
    }
    
    .write-review-card {
        padding: 25px 20px;
    }
    
    .write-review-card h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .review-form {
        gap: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .char-counter,
    .char-count {
        font-size: 9px;
    }
    
    .textarea-footer {
        margin-top: 3px;
    }
    
    .star-rating label {
        font-size: 18px;
    }
    
    .submit-btn {
        padding: 8px 20px;
        font-size: 9px;
    }
    
    .rating-summary-compact {
        padding: 25px;
    }
    
    .score-small {
        font-size: 28px;
    }
    
    .rating-text-small h4 {
        font-size: 14px;
    }
    
    .rating-text-small p {
        font-size: 12px;
    }
    
    .featured-reviews {
        padding: 50px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px; /* Más pequeño en móvil */
        margin: 0 auto;
        margin-top: 30px;
        padding: 0 20px;
    }
    
    .review-card {
        height: 200px; /* Altura fija más compacta */
        padding: 20px 18px;
        border-radius: 8px;
    }
    
    .review-content {
        margin-bottom: 15px;
    }
    
    .review-content p {
        font-size: 13px;
        line-height: 1.4;
        height: 70px; /* 4 líneas × 17.5px */
        padding-left: 18px;
        line-clamp: 4;
        -webkit-line-clamp: 4;
    }
    
    .review-content p::before {
        font-size: 26px;
        top: -5px;
    }
    
    .review-footer {
        height: 50px;
        padding-top: 10px;
    }
    
    .reviewer-info h4 {
        font-size: 14px;
        max-width: 200px;
    }
    
    .reviewer-info p {
        font-size: 10px;
    }
    
    .review-rating .star {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        gap: 12px;
        max-width: 320px; /* Más compacto */
        padding: 0 15px;
    }
    
    .review-card {
        height: 180px; /* Altura fija muy compacta */
        padding: 18px 15px;
        border-radius: 6px;
    }
    
    .review-content {
        margin-bottom: 12px;
    }
    
    .review-content p {
        font-size: 12px;
        line-height: 1.3;
        height: 62px; /* 4 líneas × 15.5px */
        padding-left: 16px;
        line-clamp: 4;
        -webkit-line-clamp: 4;
    }
    
    .review-content p::before {
        font-size: 24px;
        top: -4px;
    }
    
    .review-footer {
        height: 45px;
        padding-top: 8px;
    }
    
    .reviewer-info h4 {
        font-size: 13px;
        max-width: 160px;
        margin-bottom: 2px;
    }
    
    .reviewer-info p {
        font-size: 9px;
    }
    
    .review-rating .star {
        font-size: 12px;
    }
    
    .review-rating {
        margin-left: 8px;
    }
}
/* ========================================
   VIDEOS PAGE STYLES - ELEGANT & WEDDING FOCUSED
   ======================================== */

/* Featured Video Section */
.featured-video {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 900px; /* Reducido de 1200px a 900px */
    margin: 0 auto;
    margin-top: 50px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%; /* Reducido de 56.25% para hacerlo más pequeño */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-info h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.video-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.video-stats {
    display: flex;
    gap: 30px;
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* Video Categories */
.video-categories {
    padding: 60px 0;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    margin-top: 40px; /* Added spacing to prevent overlap */
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px; /* Extra padding for buttons */
}

.video-filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    font-weight: 400;
}

.video-filter-btn:hover,
.video-filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Videos Grid */
.videos-grid-section {
    padding: 80px 0;
    background: white;
}

/* Video History Section */
.video-history {
    padding: 70px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.video-history .section-title {
    text-align: center;
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

.history-block {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 24px;
}

.history-block h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.history-block p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.history-stats {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .video-history {
        padding: 60px 0;
    }
    .history-content {
        margin: 0 20px;
        margin-top: 30px;
    }
    .history-block {
        padding: 18px;
    }
    .history-stats {
        flex-direction: column;
        gap: 8px;
    }
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.video-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 320px;
    margin: 0 auto;
}

.video-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* Aspect ratio 4:3 más elegante que cuadrado perfecto */
    overflow: hidden;
    border-radius: 6px;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    background: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.video-details {
    padding: 20px;
}

.video-details h4 {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.video-details p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.video-date {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* Responsive Design for Videos */
@media (max-width: 768px) {
    .featured-video {
        padding: 60px 0 120px;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 20px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .video-info h3 {
        font-size: 20px;
    }
    
    .video-info p {
        font-size: 14px;
    }
    
    .video-stats {
        gap: 20px;
        flex-direction: column;
    }
    
    /* Video Categories */
    .video-categories {
        padding: 60px 0;
        margin-top: 80px; /* Increased margin for mobile */
    }
    
    .category-filters {
        gap: 15px;
        margin: 0 20px;
        padding-top: 20px;
    }
    
    .video-filter-btn {
        padding: 8px 16px;
        font-size: 10px;
    }
    
    .videos-grid-section {
        padding: 60px 0;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 0 20px;
    }
    
    .video-thumbnail {
        padding-bottom: 75%; /* Mantener proporción 4:3 en móvil */
    }
    
    .video-item {
        max-width: none;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .video-details {
        padding: 15px;
    }
    
    .video-details h4 {
        font-size: 13px;
    }
    
    .video-details p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 15px;
    }
    
    .video-thumbnail {
        padding-bottom: 75%; /* Mantener proporción 4:3 en móvil pequeño */
    }
    
    .video-item {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .video-details {
        padding: 15px;
    }
    
    .video-details h4 {
        font-size: 13px;
    }
}
/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-us-section {
    padding: 60px 0;
    background: #fafafa;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.reason-item {
    background: white;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.reason-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, rgba(201, 169, 110, 0.05) 30%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 1;
}

.reason-item:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.reason-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.03) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(201, 169, 110, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.reason-item:hover::after {
    opacity: 1;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.2), 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.reason-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
    transition: all 0.4s ease;
    filter: grayscale(30%);
    position: relative;
    z-index: 2;
}

.reason-item:hover .reason-icon {
    transform: scale(1.1);
    filter: grayscale(0%) drop-shadow(0 0 8px rgba(201, 169, 110, 0.3));
}

.reason-content {
    position: relative;
    z-index: 2;
}

.reason-content h3 {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.reason-content h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.4s ease;
    box-shadow: 0 0 4px rgba(201, 169, 110, 0.5);
}

.reason-item:hover .reason-content h3 {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(201, 169, 110, 0.3);
}

.reason-item:hover .reason-content h3::after {
    width: 30px;
}

.reason-content p {
    font-size: 10px;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.reason-item:hover .reason-content p {
    opacity: 1;
    color: var(--text-dark);
}

/* Responsive Design for Why Choose Us */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 30px 20px 0;
    }
    
    .reason-item {
        padding: 15px 10px;
    }
    
    .reason-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .reason-content h3 {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .reason-content p {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 50px 0;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 25px 20px 0;
    }
    
    .reason-item {
        padding: 15px 12px;
    }
    
    .reason-icon {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .reason-content h3 {
        font-size: 10px;
        margin-bottom: 5px;
    }
    
    .reason-content p {
        font-size: 8px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px 15px 0;
    }
    
    .reason-item {
        padding: 18px 15px;
    }
    
    .reason-icon {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .reason-content h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .reason-content p {
        font-size: 10px;
        line-height: 1.4;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.contact-info-section {
    padding: 60px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-details h2,
.contact-form-section h2 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f8f8f8;
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text h4 {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.contact-text p {
    font-size: 11px;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0 0 2px 0;
}

.contact-text a {
    display: block;
    font-size: 11px;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.social-media {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
}

.social-media h4 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    display: inline-block;
    padding: 6px 12px;
    font-size: 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-align: center;
    max-width: 160px;
}

.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.whatsapp-link {
    background: #25D366;
    color: white;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: translateY(-1px);
}

.email-link {
    background: var(--primary-color);
    color: white;
}

.email-link:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #fafafa;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-info {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-info h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.map-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.map-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-dark);
}

.feature-icon {
    font-size: 16px;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-grid {
    max-width: 700px;
    margin: 30px auto 0;
}

.faq-item {
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question h4 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.faq-question:hover h4 {
    color: var(--accent-color);
}

.faq-toggle {
    font-size: 18px;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 0 15px 0;
}

.faq-answer p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 15px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 14px;
    height: 14px;
    border: 1px solid #ddd;
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 9px;
    font-weight: bold;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 20px;
    }
    
    .contact-details h2,
    .contact-form-section h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        margin-bottom: 15px;
        padding: 12px 0;
    }
    
    .contact-icon {
        font-size: 16px;
    }
    
    .contact-text h4 {
        font-size: 13px;
    }
    
    .contact-text p,
    .contact-text a {
        font-size: 11px;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .social-link {
        flex: 1;
        min-width: 100px;
        font-size: 9px;
        padding: 5px 10px;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 20px 0;
    }
    
    .map-info {
        padding: 15px;
    }
    
    .map-info h3 {
        font-size: 16px;
    }
    
    .faq-grid {
        margin: 20px 20px 0;
    }
    
    .faq-question {
        padding: 12px 0;
    }
    
    .faq-question h4 {
        font-size: 12px;
    }
    
    .faq-toggle {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 0 12px 0;
    }
    
    .faq-answer p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .contact-info-section,
    .faq-section {
        padding: 50px 0;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .social-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .social-link {
        max-width: none;
    }
    
    .map-info {
        padding: 12px;
    }
    
    .feature {
        justify-content: center;
    }
    
    .faq-grid {
        margin: 15px 15px 0;
    }
    
    .faq-item {
        margin-bottom: 12px;
    }
    
    .faq-question {
        padding: 10px 0;
    }
    
    .faq-question h4 {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .faq-answer {
        padding: 0 0 10px 0;
    }
    
    .faq-answer p {
        font-size: 10px;
        line-height: 1.4;
    }
}
/* ========================================
   EQUIPMENT SECTION
   ======================================== */
.equipment-section {
    padding: 60px 0;
    background: #fafafa;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 40px auto 0;
}

.equipment-category {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.equipment-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.equipment-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.equipment-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(10%);
}

.equipment-category:hover .equipment-photo {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.equipment-info {
    padding: 18px;
}

.equipment-info h3 {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
}

.equipment-info h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 1px;
    background: var(--accent-color);
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-list li {
    font-size: 12px;
    color: var(--text-dark);
    padding: 5px 0;
    border-bottom: 1px solid #f8f8f8;
    position: relative;
    padding-left: 15px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.equipment-list li:last-child {
    border-bottom: none;
}

.equipment-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 10px;
}

.equipment-list li:hover {
    color: var(--accent-color);
}

/* Responsive Design for Equipment Section */
@media (max-width: 1024px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 30px 20px 0;
    }
    
    .equipment-image {
        height: 120px;
    }
    
    .equipment-info {
        padding: 15px;
    }
    
    .equipment-info h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .equipment-list li {
        font-size: 11px;
        padding: 4px 0;
        padding-left: 12px;
    }
}

@media (max-width: 768px) {
    .equipment-section {
        padding: 50px 0;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 25px 20px 0;
    }
    
    .equipment-image {
        height: 110px;
    }
    
    .equipment-info {
        padding: 12px;
    }
    
    .equipment-info h3 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .equipment-list li {
        font-size: 10px;
        padding: 3px 0;
        padding-left: 10px;
    }
}

@media (max-width: 480px) {
    .equipment-grid {
        margin: 20px 15px 0;
        gap: 15px;
    }
    
    .equipment-image {
        height: 100px;
    }
    
    .equipment-info {
        padding: 10px;
    }
    
    .equipment-info h3 {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .equipment-list li {
        font-size: 9px;
        padding: 2px 0;
        padding-left: 8px;
    }
    
    .equipment-info h3::after {
        width: 20px;
    }
}

/* ========================================
   GALERÍA MEJORADA - ESTILOS ADICIONALES
   ======================================== */

/* Estadísticas de la galería */
.gallery-stats {
    text-align: center;
    margin-bottom: 30px;
    font-family: var(--font-secondary);
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-stats span {
    color: var(--accent-color);
    font-weight: 500;
}

/* Controles de la galería */
.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.load-more-btn,
.show-less-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 15px 30px;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.load-more-btn:hover,
.show-less-btn:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 110, 0.3);
}

.load-more-btn:active,
.show-less-btn:active {
    transform: translateY(0);
}

/* Optimización de la galería - SECCIÓN CONSOLIDADA */
.gallery-grid .gallery-item {
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.gallery-grid .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}

/* Animaciones de carga */
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state para imágenes */
.gallery-item img[loading="lazy"] {
    transition: opacity 0.3s ease;
}

.gallery-item img[loading="lazy"]:not([src]) {
    opacity: 0;
}

/* Modal para visualizar fotos */
.photo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--secondary-color);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

#modal-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalImageIn 0.4s ease;
}

@keyframes modalImageIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--secondary-color);
    font-size: 30px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.modal-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    max-width: 500px;
}

.modal-info h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.modal-info p {
    font-family: var(--font-secondary);
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

#modal-counter {
    font-family: var(--font-secondary);
    font-size: 14px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 20px;
    }
    
    .gallery-grid .gallery-item {
        height: 180px; /* Más pequeño para móviles */
    }
    
    .gallery-controls {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .load-more-btn,
    .show-less-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 15px 10px;
    }
    
    .modal-prev {
        left: 15px;
    }
    
    .modal-next {
        right: 15px;
    }
    
    #modal-image {
        max-width: 95%;
        max-height: 70%;
    }
    
    .modal-info {
        bottom: 20px;
        padding: 15px 20px;
        max-width: 90%;
    }
    
    .modal-info h3 {
        font-size: 20px;
    }
    
    .modal-info p {
        font-size: 14px;
    }
    
    .gallery-stats {
        font-size: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 15px;
    }
    
    .gallery-grid .gallery-item {
        height: 220px; /* Tamaño adecuado para móvil pequeño */
    }
}

/* Mejoras de accesibilidad */
.modal-nav:focus,
.modal-close:focus,
.load-more-btn:focus,
.show-less-btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Optimización para pantallas grandes */
@media (min-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
        padding: 40px;
    }
    
    .gallery-grid .gallery-item {
        height: 250px;
    }
}
/* Efecto hover elegante para el slideshow */
.slideshow-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 20px rgba(201, 169, 110, 0.3);
    border-color: #d4af37; /* Dorado más brillante en hover */
    transition: all 0.3s ease;
}

.slideshow-container {
    transition: all 0.3s ease;
}
/* ========================================
   MODAL DE VIDEOS
   ======================================== */

/* Modal para visualizar videos */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    width: 75%;
    max-width: 750px;
    margin: 4vh auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 15px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--secondary-color);
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.video-modal-close:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.video-modal-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.video-modal-wrapper video,
.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-modal-info {
    text-align: center;
    color: var(--secondary-color);
}

.video-modal-info h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--accent-color);
}

.video-modal-info p {
    font-family: var(--font-secondary);
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Responsive para modal de videos */
@media (max-width: 768px) {
    .video-modal-content {
        width: 90%;
        margin: 3vh auto;
        padding: 12px;
    }
    
    .video-modal-close {
        top: 8px;
        right: 8px;
        font-size: 26px;
        width: 38px;
        height: 38px;
    }
    
    .video-modal-wrapper {
        margin-bottom: 10px;
    }
    
    .video-modal-info h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .video-modal-info p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 95%;
        margin: 2vh auto;
        padding: 10px;
    }
    
    .video-modal-close {
        top: 5px;
        right: 5px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
    
    .video-modal-info h3 {
        font-size: 14px;
    }
    
    .video-modal-info p {
        font-size: 11px;
    }
}

@media (max-height: 700px) {
    .video-modal-content {
        margin: 2vh auto;
        padding: 10px;
    }
    
    .video-modal-wrapper {
        margin-bottom: 8px;
    }
    
    .video-modal-info h3 {
        font-size: 16px;
    }
    
    .video-modal-info p {
        font-size: 12px;
    }
}



/* Mejora en el cursor para video-items */
.video-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/* ========================================
   OPTIMIZACIÓN DE IMÁGENES WEBP
   ======================================== */

/* Soporte automático para WebP con fallback */
.webp-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Lazy loading mejorado para imágenes */
img[loading="lazy"] {
    transition: opacity 0.3s ease;
}

img[loading="lazy"]:not([src]) {
    opacity: 0;
}



/* Optimización para slideshow */
.slide img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Preload crítico para hero images */
.hero-slideshow img,
.video-background img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
/* ========================================
   VIDEO CATEGORY DESCRIPTION SECTION
   ======================================== */
.video-category-description {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.category-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.category-info h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.category-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
    text-align: justify;
}

/* Responsive Design for Video Category Description */
@media (max-width: 768px) {
    .video-category-description {
        padding: 40px 0;
    }
    
    .category-info h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .category-info p {
        font-size: 15px;
        text-align: left;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .video-category-description {
        padding: 30px 0;
    }
    
    .category-info h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .category-info p {
        font-size: 14px;
        padding: 0 5px;
    }
}
