/* ---- RESET BÁSICO Y CONFIGURACIÓN GLOBAL ---- */
:root {
    --bg-light: #F5F2ED;
    --text-dark: #313638;
    --brand-green: #4A6965;
    --brand-gold: #E3C6A8;
    --brand-cta: #C97B61;
    --brand-cta-hover: #b5674d;
    --text-light: #f5f5f5;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* Reseteo de márgenes y paddings, box-sizing para todos los elementos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Comportamiento de scroll suave para anclas */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden; /* Evita el scroll horizontal en caso de desbordamiento */
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.content-section {
    padding: 80px 5%;
}

/* ---- PRELOADER ---- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegura que esté por encima de todo */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-top: 6px solid var(--brand-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ---- MENÚ DE NAVEGACIÓN ESCRITORIO ---- */
#main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

#main-header.scrolled {
    background-color: rgba(74, 105, 101, 0.9);
    backdrop-filter: blur(5px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.logo {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    vertical-align: middle;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease, transform 0.2s ease; /* Añadida transición para transform */
}

nav ul li a:hover {
    color: var(--brand-gold);
    transform: translateY(-2px); /* Efecto hover sutil */
}

nav ul li a.active-link {
    color: var(--brand-gold);
    font-weight: bold;
}

.cta-nav {
    background-color: var(--brand-cta);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Añadida transición para transform */
}

.cta-nav:hover {
    background-color: var(--brand-cta-hover);
    color: var(--text-light);
    transform: translateY(-3px) scale(1.02); /* Efecto hover más pronunciado */
}

/* ---- SECCIÓN HERO ---- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--brand-green);
    color: var(--text-light);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.2;
    filter: grayscale(0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: var(--brand-cta);
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    display: inline-block;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:active {
    transform: scale(0.95);
}

.cta-button:hover {
    background-color: var(--brand-cta-hover);
    transform: translateY(-5px) scale(1.02); /* Efecto hover más pronunciado */
}

/* ---- SECCIÓN DE SERVICIOS VISUALES ---- */
#servicios {
    background-color: #fff;
}

.servicios-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.servicio-card {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-10px) scale(1.01); /* Efecto hover más pronunciado */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.servicio-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.servicio-card-content {
    padding: 25px;
}

.servicio-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--brand-green);
}

.servicio-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.servicio-card-cta {
    font-weight: bold;
    color: var(--brand-cta);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ---- SECCIÓN PORFOLIO ---- */
#filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--brand-green);
    color: var(--brand-green);
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--brand-green);
    color: var(--text-light);
    transform: translateY(-3px);
}

.filter-btn.active {
    background-color: var(--brand-green);
    color: var(--text-light);
    box-shadow: 0 4px 10px rgba(74, 105, 101, 0.3);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
    opacity: 1;
    filter: blur(0);
}

.gallery-item {
    /* Añade esta transición al elemento base */
    transition: transform 0.4s ease, opacity 0.4s ease, width 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

.gallery-item.hidden {
    transform: scale(0.95);
    opacity: 0;
    width: 0; /* Anima el colapso del espacio */
    padding: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); /* Efecto zoom más pronunciado */
}

/* ---- DISEÑO SECCIÓN SOBRE MÍ ---- */
#about {
    background-color: #fff;
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.about-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 18vw;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
    z-index: 1;
    user-select: none;
}

.about-image-wrapper {
    flex: 1 1 350px;
    z-index: 2;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-text-wrapper {
    flex: 1 1 500px;
    z-index: 2;
    text-align: left;
}

.about-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: bold;
    color: var(--brand-cta);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-text-wrapper h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-text-wrapper p {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.social-links a {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s ease, transform 0.2s ease; /* Añadida transición para transform */
}

.social-links a:hover {
    color: var(--brand-green);
    transform: translateY(-3px) scale(1.1); /* Efecto hover sutil */
}

/* ---- SECCIÓN DE TESTIMONIOS ---- */
#testimonios {
    background-color: var(--brand-green);
    color: var(--text-light);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Añadida transición */
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.01); /* Efecto hover sutil */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card blockquote {
    border: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-style: italic;
    color: var(--text-light);
    flex-grow: 1;
}

.testimonial-card blockquote::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--brand-gold);
    line-height: 1;
    display: block;
    margin-bottom: -15px;
}

.testimonial-card cite {
    text-align: right;
    font-style: normal;
}

.client-name {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text-light);
}

.session-type {
    font-size: 0.9rem;
    color: var(--brand-gold);
}

/* ---- SECCIÓN DE FAQ ---- */
#faq {
    background-color: var(--bg-light); /* Hereda el color de fondo general */
}


.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark);
    transition: color 0.3s ease; /* Añadida transición */
}

.faq-question:hover {
    color: var(--brand-green); /* Cambio de color al pasar el ratón */
}

.faq-question i {
    font-size: 1rem;
    color: var(--brand-green);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 10px 25px 10px;
    color: #555;
    line-height: 1.8;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ---- FORMULARIO DE CONTACTO ---- */
.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #fff;
    border: 2px solid #ddd;
    color: var(--text-dark);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--brand-green);
}

#contact-form button[type="submit"] {
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

#form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    display: none;
}

#form-status.success {
    display: block;
    background-color: rgba(74, 105, 101, 0.1);
    color: var(--brand-green);
    border: 1px solid var(--brand-green);
}

#form-status.error {
    display: block;
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

/* ---- MENÚ MÓVIL ---- */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.mobile-nav--hidden {
    transform: translateY(100%);
}

.mobile-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    transition: color 0.3s, transform 0.2s ease; /* Añadida transición para transform */
}

.mobile-nav__link i {
    font-size: 1.4rem;
}

.mobile-nav__text {
    font-size: 0.7rem;
    margin-top: 4px;
}

.mobile-nav__link.active-link {
    color: var(--brand-green);
}

.mobile-nav__link:hover {
    color: var(--brand-green);
    transform: translateY(-3px); /* Efecto hover sutil */
}

/* ---- LÓGICA RESPONSIVA ---- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    #main-header {
        display: none;
    }

    .about-background-text {
        font-size: 30vw;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }

    #main-header {
        display: block;
    }
}

/* ---- ESTILOS ESPECÍFICOS PARA LA PÁGINA DE PAQUETES ---- */
#paquetes-fotografia {
    background-color: var(--bg-light);
    padding-top: 120px;
}

.subheading {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

.paquetes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.paquete-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.paquete-card:hover {
    transform: translateY(-10px) scale(1.01); /* Efecto hover más pronunciado */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Estilos para el paquete "Más Popular" o "Recomendado" */
/* CÓDIGO NUEVO */
.paquete-card.paquete-mas-popular {
    border: 3px solid var(--brand-cta);
    box-shadow: 0 10px 30px rgba(201, 123, 97, 0.5);
    transform: scale(1.03); /* Ligeramente más grande por defecto */
    z-index: 5;
}

/* Efecto hover aún más pronunciado para el popular */
.paquete-card.paquete-mas-popular:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(201, 123, 97, 0.6);
}

.paquete-card.paquete-mas-popular:hover {
    transform: translateY(-15px) scale(1.05); /* Efecto hover más pronunciado */
    box-shadow: 0 20px 40px rgba(201, 123, 97, 0.6);
}


.etiqueta-popular {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--brand-cta);
    color: var(--text-light);
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
    transform-origin: 100% 0%;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.paquete-titulo {
    font-size: 2rem;
    color: var(--brand-green);
    margin-bottom: 10px;
}

.paquete-subtitulo {
    font-size: 1rem;
    color: #777;
    margin-bottom: 25px;
}

.paquete-precio-box {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: inline-block;
}

.paquete-precio {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--brand-cta);
    display: block;
}

.paquete-caracteristicas {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.paquete-caracteristicas li {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.paquete-caracteristicas li i {
    color: var(--brand-green);
    margin-right: 10px;
}

.package-location-selector-wrapper {
    margin-bottom: 25px;
    text-align: left;
}

.package-location-selector-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-dark);
}

.package-location-selector {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%234A6965%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13%205.1L146.2%20202.7%2018.3%2074.5a17.6%2017.6%200%200%200-25.3%2023.3l130.8%20129.9c3.4%203.4%207.8%205.1%2012.3%205.1s8.9-1.7%2012.3-5.1L287%2092.7c17.2-16.9%2017.2-44.2%200-61.1z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.package-location-selector:focus {
    outline: none;
    border-color: var(--brand-green);
}

.paquete-cta {
    width: 100%;
    margin-top: auto;
}

.contact-prompt {
    margin-top: 80px;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-prompt p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.text-center {
    text-align: center;
}

/* Media Queries para responsividad */
@media (max-width: 768px) {
    .paquetes-container {
        grid-template-columns: 1fr;
    }

    .paquete-card {
        padding: 25px;
    }

    .paquete-titulo {
        font-size: 1.8rem;
    }

    .paquete-precio {
        font-size: 2.5rem;
    }

    .paquete-caracteristicas {
        margin-bottom: 20px;
    }

    .contact-prompt {
        padding: 30px;
    }
}
/* ---- ESTILOS PÁGINAS DE SERVICIO ---- */

/* Hero Section de la página de servicio */
.service-hero-section {
    position: relative;
    height: 60vh; /* Altura media, no tan alta como el hero principal */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

/* Superposición oscura para legibilidad del texto */
.service-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.service-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto; /* Añadido margen inferior para separar del botón */
}

/* Contenedor de la descripción del servicio */
.service-description-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-description-container h2 {
    margin-bottom: 20px;
}

/* Contenedor del proceso de trabajo / tipos de servicio */
.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-step .process-icon {
    font-size: 2.5rem;
    color: var(--brand-cta);
    margin-bottom: 20px;
}

.process-step h3 {
    margin-bottom: 10px;
    color: var(--brand-green);
}
/* ---- ESTILO PARA TEXTO DE CONFIANZA CTA ---- */
.cta-reassurance {
    font-size: 0.85rem;
    color: #777;
    margin-top: 15px;
}
/* ---- ESTILOS PARA LAS NUEVAS SECCIONES DE LA HOME ---- */

/* ---- SECCIÓN PROPUESTA DE VALOR ---- */
.value-prop-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
}

.value-prop-icon {
    font-size: 2.5rem;
    color: var(--brand-cta);
    margin-bottom: 20px;
}

.value-prop-item h3 {
    margin-bottom: 15px;
    color: var(--brand-green);
    font-size: 1.4rem;
}

.value-prop-item p {
    color: #555;
    line-height: 1.7;
}


/* ---- SECCIÓN NUESTRO PROCESO ---- */
.process-container-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
}

.process-step-home {
    background-color: #fdfdfd;
    padding: 30px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
    border: 3px solid var(--bg-light);
}

.process-step-home h3 {
    margin-top: 20px;
    font-size: 1.4rem;
    color: var(--brand-green);
}

.process-step-home p {
    color: #555;
    line-height: 1.7;
}

/* ---- SECCIÓN VISTAZO A PAQUETES ---- */
#packages-preview {
    text-align: center;
}
.section-subheading {
    max-width: 600px;
    margin: -20px auto 40px;
    color: #666;
    font-size: 1.1rem;
}

.packages-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.package-preview-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-preview-item:hover, .package-preview-item.popular {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-cta);
}

.package-preview-item h3 {
    color: var(--brand-green);
    font-size: 1.5rem;
}

.package-preview-item p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.package-price-tag {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--brand-cta);
    font-weight: bold;
    font-family: var(--font-heading);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1.1rem;
}
/* ---- SECCIÓN DE LOGOS DE CLIENTES ---- */
#trust-signals {
    padding-top: 60px;
    padding-bottom: 60px;
}
.client-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
}
.client-logo {
    flex-basis: 150px;
    text-align: center;
}
.client-logo img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ---- (INICIO) CÓDIGO AÑADIDO PARA MEJORAS DE DISEÑO Y UX ---- */

/* ---- HERO CON IMAGEN (REEMPLAZA AL VÍDEO) ---- */
.hero-section-image {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
    background: url('https://abrahamfotografia.com/wp-content/uploads/2025/04/fotografo_madrid_.jpg') no-repeat center center;
    background-size: cover;
    animation: kenburns 20s ease-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Ajustes al contenido del Hero para el nuevo fondo */
.hero-section-image .hero-content {
    position: relative;
    z-index: 2;
}
.hero-section-image .hero-content h1 {
    text-shadow: 0px 2px 15px rgba(0,0,0,0.5);
}
.hero-section-image .hero-content p {
    text-shadow: 0px 2px 10px rgba(0,0,0,0.5);
}
.hero-section-image .cta-button {
     box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}


/* ---- REFINAMIENTO DEL MENÚ DE NAVEGACIÓN ---- */
#main-header.scrolled {
    background-color: rgba(74, 105, 101, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav ul li a {
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-gold);
    transition: width 0.4s ease;
}

nav ul li a:hover::after,
nav ul li a.active-link::after {
    width: 100%;
}


/* ---- REFINAMIENTO HOVER EN TARJETAS ---- */
.servicio-card img {
    transition: transform 0.5s ease;
}

.servicio-card:hover img {
    transform: scale(1.05);
}

.servicio-card-cta {
    transition: letter-spacing 0.3s ease;
}
.servicio-card:hover .servicio-card-cta {
    letter-spacing: 1px;
}

.read-more-link {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.read-more-link:hover {
    transform: translateX(5px);
}


/* ---- SECCIÓN DE TESTIMONIOS (V2 - REDISEÑADA) ---- */
.testimonials-container-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.testimonial-card-v2 {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-gold);
}

.testimonial-author {
    flex-grow: 1;
}

.testimonial-card-v2 cite.client-name {
    font-style: normal;
    font-weight: bold;
    display: block;
    color: var(--text-light);
    font-size: 1.1rem;
}

.testimonial-rating {
    font-size: 0.9rem;
    color: #ffc107; /* Amarillo dorado para las estrellas */
    flex-shrink: 0; /* Evita que las estrellas se encojan y se rompan en varias líneas */
}

.testimonial-card-v2 blockquote {
    border: none;
    padding: 0;
    margin: 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
}

.testimonial-card-v2 blockquote::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--brand-gold);
    line-height: 1;
    display: block;
    margin-bottom: -10px;
}


/* ---- FOOTER (V2 - "FAT FOOTER") ---- */
#main-footer-v2 {
    background-color: var(--brand-green);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 5% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ajustado para 5 columnas */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-logo img {
    width: 80px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.footer-column p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column p i {
    color: var(--brand-gold);
}

.footer-social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    font-size: 1.5rem;
    padding-left: 0;
}

.footer-social-links a:hover {
    transform: scale(1.1);
    color: var(--brand-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* ---- SEPARADOR DE SECCIONES ---- */
.section-divider {
    height: 80px;
    position: relative;
    background-color: var(--bg-light);
}
.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 2px;
    background-color: var(--brand-gold);
}


/* ---- BOTÓN VOLVER ARRIBA ---- */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--brand-cta);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.3s, bottom 0.3s ease-out;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background-color: var(--brand-cta-hover);
}
.back-to-top i {
    font-size: 1.2rem;
}


/* ---- (FIN) CÓDIGO AÑADIDO PARA MEJORAS DE DISEÑO Y UX ---- */
/* ---- (INICIO) CORRECCIÓN HERO SECTION EN MÓVILES ---- */

@media (max-width: 768px) {
    /* Corregimos el fondo de la hero section para que use la imagen correcta y no la del video */
    .hero-section-image {
        background-image: url('https://abrahamfotografia.com/wp-content/uploads/2025/04/fotografo_madrid_.jpg');
        background-size: cover;
        background-position: center;
        animation: none; /* Desactivamos el efecto kenburns en móvil por rendimiento */
    }
    .hero-video {
        display: none;
    }

    /* ... (resto de tus estilos para móvil) ... */
}

    .service-hero-section {
        min-height: 65vh; 
        height: auto;
    }

    .service-hero-content {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .testimonials-container-v2 {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        flex-wrap: wrap; /* Permite que los elementos se reorganicen si no caben */
    }

    .footer-container {
        text-align: center;
    }
    .footer-column p,
    .footer-social-links {
        justify-content: center;
    }

    /* === INICIO DE LA CORRECCIÓN === */
    .back-to-top.visible {
        /* Eleva el botón para que se posicione sobre el menú de navegación móvil. */
        /* 70px (altura aprox. del menú) + 15px de margen = 85px */
        bottom: 85px; 
    }
    /* === FIN DE LA CORRECCIÓN === */
}

/* ---- (FIN) CORRECCIÓN HERO SECTION EN MÓVILES ---- */
/* ---- CORRECCIÓN FINAL DE CONTRASTE EN BOTÓN ACTIVO ---- */

/* Esta regla anula el cambio de color del enlace activo SÓLO para el botón CTA,
   forzando a que su texto se mantenga blanco por legibilidad. */
#main-header nav ul li a.cta-nav.active-link {
    color: var(--text-light);
}
/* ---- ESTILOS PARA EL ASISTENTE DE SESIONES ---- */
.asistente-container {
    max-width: 800px;
    margin: 0 auto 60px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
}
.asistente-titulo { color: var(--brand-green); }
.asistente-subtitulo { margin-bottom: 25px; color: #666; }
.asistente-form { display: grid; gap: 20px; }
.asistente-pregunta label { display: block; margin-bottom: 8px; font-weight: bold; text-align: left; }
.asistente-pregunta select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; }
#recomendar-btn { justify-self: center; }

#resultado-recomendacion {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: var(--bg-light);
    border-left: 5px solid var(--brand-cta);
    text-align: left;
    transition: all 0.5s ease;
}
.resultado-oculto {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}
#resultado-recomendacion h4 { margin-bottom: 5px; }

/* Estilos para resaltar el paquete recomendado */
.paquete-card.recomendado {
    border: 3px solid var(--brand-cta);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(201, 123, 97, 0.5);
}
.paquetes-container.filtrado .paquete-card:not(.recomendado) {
    opacity: 0.5;
    transform: scale(0.95);
    filter: grayscale(50%);
}
/* ---- ESTILOS PARA EL PAQUETE VISUAL ---- */
.paquete-visual {
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: left;
}
.paquete-visual p {
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.mini-galeria {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.mini-galeria img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.mini-galeria img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}
/* ---- ESTILOS PARA LA PÁGINA DE PAQUETES ENFOCADA EN VENTAS ---- */

/* 1. Estilos para el Asistente de Sesiones */
.asistente-container {
    max-width: 700px;
    margin: -20px auto 60px auto;
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #eee;
}
.asistente-titulo { color: var(--brand-green); font-size: 1.8rem; }
.asistente-subtitulo { margin-bottom: 25px; color: #666; }
.asistente-form { display: grid; gap: 20px; }
.asistente-pregunta label { display: block; margin-bottom: 8px; font-weight: bold; text-align: left; }
.asistente-pregunta select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; cursor: pointer; }
#recomendar-btn { justify-self: center; width: auto; padding: 15px 40px; }

#resultado-recomendacion {
    margin-top: 25px;
    padding: 20px;
    border-radius: 8px;
    background-color: var(--bg-light);
    border-left: 5px solid var(--brand-cta);
    text-align: left;
    transition: all 0.5s ease;
}
.resultado-oculto {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}
#resultado-recomendacion h4 { margin-bottom: 5px; }

/* 2. Estilos para resaltar el paquete recomendado */
.paquete-card.recomendado {
    border: 3px solid var(--brand-cta);
    transform: scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(201, 123, 97, 0.5) !important;
    z-index: 10;
}
.paquetes-container.filtrado .paquete-card:not(.recomendado) {
    opacity: 0.4;
    transform: scale(0.95);
    filter: grayscale(80%);
    transition: all 0.4s ease;
}

/* 3. Estilos para el Paquete Visual (Mini-Galería) */
.paquete-visual {
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: left;
}
.paquete-visual p {
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.mini-galeria {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}
.mini-galeria img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* 4. Estilos para la Sección de Extras */
.extras-section {
    padding: 60px 5%;
    background-color: #fff;
}
.extras-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}
.extra-item {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.extra-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}
.extra-item i {
    font-size: 2.5rem;
    color: var(--brand-cta);
    margin-bottom: 15px;
}
.extra-item h4 {
    font-size: 1.3rem;
    color: var(--brand-green);
}
.extra-item p {
    color: #666;
    margin-bottom: 20px;
}
.extra-precio {
    display: inline-block;
    font-weight: bold;
    color: var(--brand-cta);
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 5px;
}
/* ---- ESTILOS PARA EL BOTÓN "CONSULTAR" INTERACTIVO ---- */

/* Quitamos el subrayado por defecto de los enlaces */
.extra-item a.extra-precio {
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Añadimos un efecto hover para que se sienta como un botón real */
.extra-item a.extra-precio:hover {
    background-color: var(--brand-cta);
    color: white;
}
/* ---- MEJORA VISUAL CTA EN TARJETAS DE SERVICIO ---- */
.servicio-card-cta {
    display: inline-block; /* Permite aplicar padding y otros estilos */
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.servicio-card:hover .servicio-card-cta {
    border-color: var(--brand-cta);
    background-color: var(--bg-light);
}
/* ---- MEJORA DE ACCESIBILIDAD: ESTADO DE FOCO ---- */
a:focus, button:focus, select:focus {
    outline: 2px solid var(--brand-gold);
    outline-offset: 2px;
}
/* ---- ESTILOS PARA EL PROCESO DE CONTACTO ---- */
.proceso-contacto { text-align: center; margin-bottom: 50px; }
.proceso-contacto h3 { color: var(--brand-green); }
.proceso-pasos { display: flex; justify-content: center; gap: 15px; font-weight: bold; color: #555; flex-wrap: wrap; }
/* ---- REFINAMIENTO DE LEGIBILIDAD EN HERO ---- */
.hero-section-image .hero-content h1,
.hero-section-image .hero-content p {
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.7);
}
/* ---- ESTILOS LANDING PAGE TINDER ---- */

:root {
    --tinder-pink: #FD297B;
    --tinder-orange: #FF655B;
    --tinder-gradient: linear-gradient(45deg, var(--tinder-orange), var(--tinder-pink));
    --tinder-green: #2DE1A3;
}

.tinder-landing-page {
    background-color: #f7f7f7;
}

.tinder-header {
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.tinder-logo img { width: 50px; }

.cta-header {
    background: var(--tinder-gradient);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 0.9rem;
}
.cta-header:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(253, 41, 123, 0.4); }

.tinder-hero-section {
    min-height: 90vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}
.hero-content-tinder h1 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 15px; line-height: 1.2; }
.hero-content-tinder h1 span { background: var(--tinder-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-content-tinder p { font-size: 1.1rem; color: #555; max-width: 600px; margin-bottom: 40px; }

#tinder-card-stack { position: relative; width: 300px; height: 400px; margin: 0 auto; }
.tinder-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: grab;
    transition: transform 0.3s ease;
    user-select: none;
    overflow: hidden;
    touch-action: pan-y;
}
.tinder-card-before { background: #ddd; display: flex; align-items: center; justify-content: center; }
.tinder-card-before img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(0.8); }
.card-overlay-text { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.8); background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); }
.card-overlay-text h4 { font-family: var(--font-heading); font-size: 1.5rem; }
.card-overlay-text p { font-size: 1rem; }

.tinder-card.card-cta {
    background: var(--tinder-gradient);
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: white;
}
.tinder-card.card-cta i { font-size: 3rem; margin-bottom: 20px; }
.swipe-instructions { margin-top: 30px; font-weight: bold; color: #888; }

.tinder-section { padding: 80px 5%; text-align: center; }
.tinder-section h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; }
.tinder-section .section-subtitle { font-size: 1.1rem; color: #666; max-width: 700px; margin: -10px auto 50px auto; }

.tinder-pain-points { background: #fff; }
.pain-points-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1000px; margin: 50px auto 0; }
.point-item { background: #f7f7f7; padding: 20px; border-radius: 10px; }
.point-item i { font-size: 1.5rem; color: var(--tinder-pink); margin-bottom: 10px; }
.point-item h4 { font-size: 1.2rem; margin-bottom: 5px; }

.tinder-pricing { background-color: #fff; }
.pricing-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; align-items: center; }
.pricing-card { background: #fff; padding: 30px; border-radius: 10px; border: 1px solid #eee; text-align: center; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.pricing-card.popular { border: 2px solid var(--tinder-pink); transform: scale(1.05); }
.popular-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--tinder-gradient); color: white; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: bold; }
.pricing-card h3 { font-size: 1.5rem; }
.pricing-card .price { font-family: var(--font-heading); font-size: 3.5rem; font-weight: bold; margin: 15px 0; background: var(--tinder-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pricing-card ul { list-style: none; margin: 20px 0; text-align: left; }
.pricing-card ul li { margin-bottom: 12px; }
.pricing-card ul li i { color: var(--tinder-green); margin-right: 10px; }
.cta-book { display: block; background: var(--tinder-gradient); color: #fff; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; margin-top: 25px; transition: transform 0.2s, box-shadow 0.2s; }
.cta-book:hover { transform: scale(1.05); box-shadow: 0 5px 20px rgba(253, 41, 123, 0.5); }

.tinder-faq { background: #f7f7f7; }
.faq-container-tinder { max-width: 750px; margin: 0 auto; text-align: left; }
.faq-item-tinder { background: #fff; border-radius: 10px; margin-bottom: 15px; border: 1px solid #eee; }
.faq-item-tinder summary { font-weight: bold; font-size: 1.1rem; padding: 20px; cursor: pointer; position: relative; }
.faq-item-tinder summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 20px; transition: transform 0.3s; }
.faq-item-tinder[open] summary::after { transform: rotate(180deg); }
.faq-item-tinder p { padding: 0 20px 20px; color: #555; line-height: 1.7; }

.tinder-footer { background-color: #222; color: #aaa; padding: 30px 5%; text-align: center; font-size: 0.9rem; }
.tinder-footer a { color: #fff; text-decoration: none; }
.tinder-footer a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .hero-content-tinder h1 { font-size: 2.2rem; }
    .tinder-section h2 { font-size: 2rem; }
    .pricing-card.popular { transform: none; }
    .pricing-container { gap: 40px; }
}
/* ---- ESTILOS LANDING PAGE TINDER (V2) ---- */

:root {
    --tinder-pink: #FD297B;
    --tinder-orange: #FF655B;
    --tinder-gradient: linear-gradient(45deg, var(--tinder-orange), var(--tinder-pink));
    --tinder-green: #2DE1A3;
    --superlike-blue: #4599FF;
}

.tinder-landing-page { background-color: #f7f7f7; }

/* Contenedor principal de la sección de swipe */
.tinder-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

#tinder-card-stack {
    position: relative;
    width: 300px;
    height: 400px;
}

.tinder-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: grab;
    user-select: none;
    overflow: hidden;
    /* La transición se aplica con JS para mejor control */
}

/* Estilos de las marcas de agua NOPE/LIKE */
.card-status {
    position: absolute;
    top: 40px;
    font-size: 2.5rem;
    font-weight: bold;
    border: 5px solid;
    border-radius: 10px;
    padding: 5px 15px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
.card-status.nope {
    left: 20px;
    color: var(--tinder-pink);
    transform: rotate(-25deg);
}
.card-status.like {
    right: 20px;
    color: var(--tinder-green);
    transform: rotate(25deg);
}

/* Barra de acciones inferior */
.tinder-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.tinder-actions button {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.tinder-actions button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
#nope-btn { color: var(--tinder-pink); width: 50px; height: 50px; font-size: 1.5rem; }
#like-btn { color: var(--tinder-green); }
#superlike-btn { color: var(--superlike-blue); width: 50px; height: 50px; font-size: 1.5rem; }

/* El resto de los estilos de la landing (precios, faq, etc.) se mantienen igual que en la versión anterior */
.tinder-hero-section { min-height: auto; padding-bottom: 60px; }
.hero-content-tinder h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 15px; line-height: 1.2; }
/* ... (los demás estilos de la V1 se pueden mantener o refinar si es necesario) */

/* ---- ESTILOS LANDING PAGE TINDER (V3 - ROBUSTO) ---- */

:root {
    --tinder-pink: #FD297B; --tinder-orange: #FF655B; --tinder-gradient: linear-gradient(45deg, var(--tinder-orange), var(--tinder-pink));
    --tinder-green: #2DE1A3; --superlike-blue: #4599FF;
}

.tinder-landing-page { background-color: #f7f7f7; }

/* Header y CTA */
.tinder-header { padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.tinder-logo img { width: 50px; }
.cta-header { background: var(--tinder-gradient); color: #fff; padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: bold; transition: transform 0.2s, box-shadow 0.2s; font-size: 0.9rem; }
.cta-header:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(253, 41, 123, 0.4); }

/* Sección Hero */
.tinder-hero-section { min-height: auto; padding: 60px 20px; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-content-tinder h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 15px; line-height: 1.2; }
.hero-content-tinder h1 span { background: var(--tinder-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-content-tinder p { font-size: 1.1rem; color: #555; max-width: 600px; margin-bottom: 30px; }

/* Contenedor del juego de swipe */
.tinder-container { display: flex; flex-direction: column; align-items: center; }
#tinder-card-stack { position: relative; width: 300px; height: 400px; margin: 0 auto; background-color: #f0f0f0; border-radius: 15px; }

/* Estilo base de cada tarjeta */
.tinder-card {
    position: absolute; width: 100%; height: 100%;
    background-size: cover; background-position: center; background-color: #eee;
    border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: grab; user-select: none; overflow: hidden;
    will-change: transform; /* Optimización de rendimiento para animaciones */
}
.tinder-card.moving { transition: none !important; }

/* Estilos de las marcas de agua NOPE/LIKE */
.card-status { position: absolute; top: 40px; font-size: 2.5rem; font-weight: bold; border: 5px solid; border-radius: 10px; padding: 5px 15px; opacity: 0; }
.card-status.nope { left: 20px; color: var(--tinder-pink); transform: rotate(-25deg); }
.card-status.like { right: 20px; color: var(--tinder-green); transform: rotate(25deg); }

/* Estilos para el texto superpuesto en las tarjetas */
.card-overlay-text { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.8); background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); }
.card-overlay-text h4 { font-family: var(--font-heading); font-size: 1.5rem; }
.card-overlay-text p { font-size: 1rem; color: white; margin: 0; }

/* Estilos para la tarjeta especial de CTA */
.tinder-card.card-cta { background: var(--tinder-gradient); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: white; }
.tinder-card.card-cta i { font-size: 3rem; margin-bottom: 20px; }

/* Barra de acciones inferior */
.tinder-actions { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 25px; }
.tinder-actions button { background: #fff; border: 1px solid #ddd; border-radius: 50%; width: 60px; height: 60px; font-size: 1.8rem; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.tinder-actions button:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
#nope-btn { color: var(--tinder-pink); width: 50px; height: 50px; font-size: 1.5rem; }
#like-btn { color: var(--tinder-green); }
#superlike-btn { color: var(--superlike-blue); width: 50px; height: 50px; font-size: 1.5rem; }

/* El resto de estilos (pain points, pricing, faq) se mantienen prácticamente iguales */

/* ---- ESTILOS LANDING PAGE TINDER (V4 - LÓGICA SIMPLIFICADA) ---- */

/* Animación de "shake" para acción no permitida */
@keyframes shake-horizontal {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}
.shake {
  animation: shake-horizontal 0.5s cubic-bezier(.455,.03,.515,.955) both;
}

/* Estilo para los botones cuando están deshabilitados */
.tinder-actions button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: scale(1) !important; /* Anula el efecto hover */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
}
/* ---- ESTILOS LANDING PAGE TINDER (V5 - SEO & SOCIAL PROOF) ---- */

/* Estilos para la sección de Psicología */
.tinder-psychology { background: #fff; }
.benefits-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; max-width: 1100px; margin: 50px auto 0; text-align: center; }
.benefit-card i { font-size: 2.5rem; background: var(--tinder-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 15px; }
.benefit-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.benefit-card p { color: #555; font-size: 0.95rem; }

/* Estilos para el portfolio estático */
.tinder-portfolio { background: #f7f7f7; }
.static-portfolio-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1100px; margin: 50px auto 0; }
.portfolio-item img { width: 100%; height: 350px; object-fit: cover; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.portfolio-item figcaption { font-size: 0.9rem; color: #555; margin-top: 10px; }
.portfolio-item figcaption strong { color: #333; }

/* Estilos para la sección de testimonios */
.tinder-testimonial { background: #fff; }
.testimonial-card-tinder { background: #f7f7f7; border-left: 5px solid var(--tinder-pink); max-width: 700px; margin: 50px auto 0; padding: 30px; border-radius: 10px; text-align: center; }
.testimonial-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin: -70px auto 20px auto; }
.testimonial-card-tinder blockquote { font-style: italic; font-size: 1.1rem; line-height: 1.6; margin-bottom: 20px; border: none; padding: 0; }
.testimonial-card-tinder cite { font-weight: bold; color: var(--tinder-pink); font-style: normal; }

/* ---- ESTILOS PARA EL BLOG ---- */

/* Hero Section del Blog */
.blog-hero-section {
    padding: 120px 5%;
    background-color: var(--brand-green);
    color: var(--text-light);
    text-align: center;
}
.blog-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.blog-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
}

/* Listado de Artículos */
.blog-listing-section {
    background-color: var(--bg-light);
}
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.article-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.article-card-image-link img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.article-card:hover .article-card-image-link img {
    transform: scale(1.05);
}
.article-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.article-card-tags .tag {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--brand-cta);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 5px;
    margin-bottom: 15px;
}
.article-card-title a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.3;
}
.article-card-title a:hover {
    color: var(--brand-green);
}
.article-card-excerpt {
    color: #555;
    margin: 15px 0;
    flex-grow: 1;
}
.article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    font-size: 0.9rem;
    color: #888;
}
.article-card-readmore {
    font-weight: bold;
    color: var(--brand-green);
    text-decoration: none;
}

/* Página de Artículo Individual */
.article-header {
    padding: 150px 5%;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
}
.article-header-content {
    max-width: 800px;
    margin: 0 auto;
}
.article-header-tags .tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.article-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.article-meta {
    font-size: 1rem;
    margin-top: 15px;
}
.article-body {
    max-width: 750px;
    margin: 60px auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}
.article-body .article-lead {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 30px;
}
.article-body h2 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}
.article-body p { margin-bottom: 20px; }
.article-body a { color: var(--brand-green); font-weight: bold; }
.article-image {
    margin: 40px 0;
}
.article-image img {
    width: 100%;
    border-radius: 10px;
}
.article-image figcaption {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 10px;
}
.article-cta-box {
    background: var(--bg-light);
    border-left: 5px solid var(--brand-green);
    padding: 30px;
    margin: 50px 0;
    border-radius: 5px;
}
.article-cta-box h3 {
    margin-top: 0;
}

/* ---- ESTILOS ARTÍCULO (V2 - PULIDO Y RESPONSIVE) ---- */

/* Ajuste general para la página de artículo */
.article-content-section {
    padding-top: 0;
}

/* Encabezado del artículo */
.article-header {
    padding: 120px 5%; /* Menos padding en pantallas grandes */
}

.article-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Título responsive */
    line-height: 1.2;
}

/* Cuerpo del artículo: mejoras de legibilidad */
.article-body {
    max-width: 720px; /* Ancho óptimo para lectura */
    margin: 60px auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-body .article-lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 2em;
}

.article-body h2,
.article-body h3 {
    text-align: left;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3;
}

.article-body h2 {
    font-size: 1.8rem;
}

.article-body h3 {
    font-size: 1.5rem;
}

.article-body p {
    margin-bottom: 1.5em;
}

.article-body a {
    color: var(--brand-green);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid rgba(74, 105, 101, 0.2);
    transition: all 0.2s ease;
}

.article-body a:hover {
    background-color: rgba(74, 105, 101, 0.1);
    border-bottom-color: var(--brand-green);
}

.article-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5em;
}

.article-body ul li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.8em;
}

.article-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
}

.article-image {
    margin: 2.5em 0;
}
.article-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* Caja de Llamada a la Acción (CTA) */
.article-cta-box {
    text-align: center;
}

/* **** LA SOLUCIÓN AL BOTÓN **** */
.article-cta-box a.cta-button {
    color: #fff !important; /* Forzar el color blanco del texto */
    text-decoration: none;
    border-bottom: none;
}

.article-cta-box a.cta-button:hover {
    background-color: var(--brand-cta-hover); /* Mantener el comportamiento hover normal */
}


/* ---- AJUSTES RESPONSIVE PARA MÓVILES ---- */
@media (max-width: 768px) {
    .article-header {
        padding: 100px 5%;
    }

    .article-body {
        padding: 0 20px; /* Añadir padding lateral en móviles */
        font-size: 1rem;
        margin: 40px auto;
    }

    .article-body .article-lead {
        font-size: 1.2rem;
    }

    .article-body h2 {
        font-size: 1.6rem;
    }

    .article-body h3 {
        font-size: 1.3rem;
    }
}
/* ---- ESTILOS PARA EL ARTÍCULO DE OBJETIVOS SONY ---- */

.lens-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin: 1.5em 0;
}

.lens-image, .lens-result {
    text-align: center;
}

.lens-image img, .lens-result img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 10px;
    object-fit: cover;
}

.lens-result img {
    aspect-ratio: 2/3;
}

.article-body .cta-button {
    display: inline-block;
    margin: 1em 0 2em 0;
}

@media (max-width: 544px) {
    .lens-showcase-grid {
        grid-template-columns: 1fr;
    }
}```

Con esta versión, tu artículo no solo está migrado, sino que ha sido elevado a un nuevo nivel de calidad, autoridad y potencial de conversión, alineado perfectamente con tu nueva imagen de marca.
/* =================================================================== */
/* ==== CORRECCIÓN DEFINITIVA PARA BOTONES DENTRO DE ARTÍCULOS ==== */
/* =================================================================== */

/*
  Esta regla anula el estilo de enlace genérico del artículo
  SOLO para los elementos que también son un .cta-button.
*/
.article-body a.cta-button {
    color: #ffffff !important;
    border-bottom: none !important;
    background-color: var(--brand-cta); /* Asegura el color de fondo */
}

/*
  Asegura que el estilo hover del botón también funcione correctamente
  y no herede el comportamiento de los enlaces del artículo.
*/
.article-body a.cta-button:hover {
    background-color: var(--brand-cta-hover);
    border-bottom: none !important; /* Importante para que no aparezca el subrayado en hover */
}
/* ====================================================== */
/* ==== NUEVOS ESTILOS PARA LA PÁGINA DE TINDER V3 ==== */
/* ====================================================== */

/* SECCIÓN DE MENSAJE DIRECTO */
.tinder-direct-pitch {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}
.tinder-direct-pitch blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-style: italic;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
    border-left: 4px solid var(--tinder-pink);
    padding-left: 25px;
    color: #333;
}

/* BANNER DE CONFIANZA */
.tinder-trust-banner {
    background-color: var(--bg-light);
}
.trust-banner-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.trust-item {
    text-align: center;
}
.trust-item i {
    font-size: 2.5rem;
    color: var(--tinder-green);
    margin-bottom: 10px;
}
.trust-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-dark);
    display: block;
    line-height: 1;
}
.trust-text {
    font-size: 1rem;
    color: #555;
}

/* CARRUSEL DE RESULTADOS REALES */
.tinder-real-results {
    background: #fff;
}
.results-carousel-container {
    position: relative;
    max-width: 350px; /* Ancho de un teléfono para realismo */
    margin: 0 auto;
}
.results-carousel {
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.result-slide {
    flex: 0 0 100%;
    transition: transform 0.5s ease-in-out;
}
.result-slide img {
    width: 100%;
    display: block;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.2s, transform 0.2s;
}
.carousel-btn:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
}
.prev-btn {
    left: -20px;
}
.next-btn {
    right: -20px;
}

/* Ajustes responsive para el carrusel */
@media (max-width: 480px) {
    .prev-btn {
        left: 5px;
    }
    .next-btn {
        right: 5px;
    }
    .tinder-direct-pitch blockquote {
        font-size: 1.4rem;
    }
}