/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/* CONTENEDOR COMÚN */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HERO SECTION CON IMAGEN DE FONDO ========== */
.hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay oscuro para mejorar legibilidad del texto */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 41, 41, 0.7) 0%, rgba(58, 45, 43, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Contenido izquierdo - texto claro sobre fondo oscuro */
.hero-content {
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D5BCAB;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* Botones */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-block;
    background: #D5BCAB;
    color: #3A2D2B;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 2px solid #D5BCAB;
}

.btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #3A2D2B;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    border-color: #D5BCAB;
    background: rgba(213, 188, 171, 0.2);
    transform: translateY(-2px);
}

/* Características */
.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Imagen derecha - versión más pequeña */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image-placeholder {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
    max-height: 600px;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-placeholder:hover .hero-img {
    transform: scale(1.02);
}

/* Badge flotante */
.hero-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.badge-text {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #D5BCAB;
    font-weight: 500;
}

.badge-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #3A2D2B;
    line-height: 1;
    margin-top: 5px;
}

/* Animación flotante */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-badge {
        bottom: 20px;
        right: -10px;
        padding: 12px 20px;
    }
    
    .badge-year {
        font-size: 1.2rem;
    }
}

/* ========== PRODUCTS SECTION ========== */
.products {
    padding: 100px 0;
    background: #ffffff;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header de la sección */
.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D5BCAB;
    background: rgba(213, 188, 171, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 500;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #3A2D2B;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.products-description {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de productos - 3 columnas */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tarjeta de producto */
.product-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Contenedor de imagen */
.product-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}

.product-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Overlay que aparece al hacer hover */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 45, 43, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    display: inline-block;
    background: #D5BCAB;
    color: #3A2D2B;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.product-card:hover .product-btn {
    transform: translateY(0);
}

.product-btn:hover {
    background: #ffffff;
    color: #3A2D2B;
}

/* Información del producto */
.product-info {
    text-align: center;
}

.product-name {
    font-size: 1rem;
    font-weight: 500;
    color: #3A2D2B;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.product-price {
    font-size: 0.9rem;
    color: #D5BCAB;
    font-weight: 500;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .products-grid {
        gap: 20px;
    }
    
    .products-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .products-title {
        font-size: 1.8rem;
    }
    
    .products-description {
        font-size: 0.9rem;
    }
}

/* ========== HERO PARALLAX - ANCHO COMPLETO ========== */
.hero-parallax {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background: #ffffff;
}

.parallax-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    will-change: transform;
}

/* Overlay sutil */
.parallax-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(41, 41, 41, 0.5) 0%, rgba(58, 45, 43, 0.3) 100%);
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Contenido superpuesto */
.parallax-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: white;
    width: 100%;
    max-width: 900px;
    padding: 0 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.parallax-btn {
    pointer-events: auto;
}

.parallax-tag {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D5BCAB;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
    font-weight: 500;
}

.parallax-title {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.parallax-description {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.parallax-btn {
    display: inline-block;
    background: #D5BCAB;
    color: #3A2D2B;
    padding: 16px 42px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #D5BCAB;
}

.parallax-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-parallax {
        height: 70vh;
        min-height: 500px;
    }
    
    .parallax-title {
        font-size: 3.5rem;
    }
    
    .parallax-description {
        font-size: 1.2rem;
    }
    
    .parallax-tag {
        font-size: 0.8rem;
        padding: 8px 20px;
    }
}

@media (max-width: 768px) {
    .hero-parallax {
        height: 60vh;
        min-height: 450px;
    }
    
    .parallax-title {
        font-size: 2.2rem;
    }
    
    .parallax-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .parallax-tag {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    
    .parallax-btn {
        padding: 12px 32px;
        font-size: 0.9rem;
    }
}

/* ========== ESSENTIAL ACCESSORIES SECTION - PNG FLOTANTES ========== */
.essential-accessories {
    padding: 100px 0;
    background: #ffffff;
}

.accessories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header de la sección */
.accessories-header {
    text-align: center;
    margin-bottom: 60px;
}

.accessories-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D5BCAB;
    background: rgba(213, 188, 171, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 500;
}

.accessories-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #3A2D2B;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.accessories-description {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de 3 columnas - mismo ancho para todas */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* Tarjeta de accesorio - todas con la misma estructura */
.accessory-card {
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.accessory-card:hover {
    transform: translateY(-10px);
}

/* Contenedor de imagen - tamaño fijo para todas */
.accessory-image {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 280px;
}

.accessory-img {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.accessory-card:hover .accessory-img {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.12));
}

/* Información del accesorio - alineación perfecta */
.accessory-info {
    text-align: center;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.accessory-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #3A2D2B;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.accessory-price {
    font-size: 1rem;
    color: #D5BCAB;
    font-weight: 500;
    margin-bottom: 12px;
}

.accessory-link {
    display: inline-block;
    font-size: 0.85rem;
    color: #D5BCAB;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.accessory-link:hover {
    color: #3A2D2B;
    border-bottom-color: #D5BCAB;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .accessories-grid {
        gap: 30px;
    }
    
    .accessories-title {
        font-size: 2rem;
    }
    
    .accessory-image {
        height: 240px;
    }
    
    .accessory-img {
        max-height: 240px;
    }
}

@media (max-width: 768px) {
    .essential-accessories {
        padding: 60px 0;
    }
    
    .accessories-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .accessories-title {
        font-size: 1.8rem;
    }
    
    .accessories-description {
        font-size: 0.9rem;
    }
    
    .accessory-image {
        height: 220px;
    }
    
    .accessory-img {
        max-height: 220px;
    }
    
    .accessory-name {
        font-size: 1rem;
    }
}

/* ========== FOOTER ELEGANTE - ALPACA INSPIRED ========== */
.footer {
    background: #3A2D2B;
    color: #E2DDDA;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Decoración de fondo */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(213, 188, 171, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer::after {
    content: '✦';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 1rem;
    color: rgba(213, 188, 171, 0.3);
    font-family: monospace;
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Grid principal */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(226, 221, 218, 0.15);
}

/* Logo y marca */
.footer-brand {
    max-width: 280px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #E2DDDA;
    opacity: 0.8;
    margin-bottom: 24px;
}

/* Redes sociales */
.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: #E2DDDA;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D5BCAB;
    color: #3A2D2B;
    transform: translateY(-3px);
}

/* Columnas */
.footer-column {
    min-width: 0;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D5BCAB;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #D5BCAB;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #E2DDDA;
    opacity: 0.8;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #D5BCAB;
    opacity: 1;
    transform: translateX(5px);
}

/* Newsletter */
.newsletter-text {
    font-size: 0.85rem;
    color: #E2DDDA;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(226, 221, 218, 0.2);
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #D5BCAB;
    background: rgba(213, 188, 171, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(226, 221, 218, 0.6);
}

.newsletter-btn {
    background: #D5BCAB;
    color: #3A2D2B;
    border: none;
    padding: 12px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Decoración Alpaca */
.footer-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 40px 0 30px;
}

.alpaca-icon {
    width: 40px;
    height: 40px;
    animation: floatAlpaca 3s ease-in-out infinite;
}

.alpaca-icon svg {
    width: 100%;
    height: 100%;
}

.alpaca-text {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #D5BCAB;
    font-weight: 400;
}

/* Animación alpaca */
@keyframes floatAlpaca {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(226, 221, 218, 0.1);
    font-size: 0.75rem;
    color: rgba(226, 221, 218, 0.6);
}

.footer-payment {
    display: flex;
    gap: 20px;
    font-size: 18px;
}

.payment-icon {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.payment-icon {
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-decoration {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ========== POPUP - RESERVA DE ALPACA ========== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 41, 41, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: relative;
    max-width: 550px;
    width: 90%;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.4s ease;
    animation: popupSlideIn 0.4s ease forwards;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.popup-close:hover {
    color: #D5BCAB;
    background: rgba(213, 188, 171, 0.1);
    transform: rotate(90deg);
}

/* Icono */
.popup-icon {
    text-align: center;
    margin-bottom: 20px;
}

.popup-icon svg {
    animation: floatAlpaca 3s ease-in-out infinite;
}

/* Títulos */
.popup-title {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    color: #3A2D2B;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.popup-description {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Formulario */
.popup-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group.half {
    width: 50%;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E2DDDA;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #D5BCAB;
    box-shadow: 0 0 0 3px rgba(213, 188, 171, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #bbb;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Botón submit */
.popup-submit {
    background: #3A2D2B;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.popup-submit:hover {
    background: #D5BCAB;
    color: #3A2D2B;
    transform: translateY(-2px);
}

.popup-note {
    text-align: center;
    font-size: 0.7rem;
    color: #999;
    margin-top: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
    .popup-container {
        padding: 30px 24px;
        width: 95%;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 18px;
    }
    
    .form-group.half {
        width: 100%;
    }
    
    .popup-close {
        top: 15px;
        right: 15px;
    }
}

/* ========== BLOG SECTION ========== */
.blog-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header de la sección */
.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D5BCAB;
    background: rgba(213, 188, 171, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 500;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #3A2D2B;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.blog-description {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de blogs */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Tarjeta de blog */
.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Imagen del blog */
.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #D5BCAB;
    color: #3A2D2B;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Contenido del blog */
.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.75rem;
    color: #D5BCAB;
}

.blog-date, .blog-read-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-date::before {
    content: '📅';
    font-size: 0.7rem;
}

.blog-read-time::before {
    content: '⏱️';
    font-size: 0.7rem;
}

.blog-post-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: #3A2D2B;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-post-title {
    color: #D5BCAB;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D5BCAB;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
    color: #3A2D2B;
}

/* Footer de la sección */
.blog-footer {
    text-align: center;
    margin-top: 20px;
}

.blog-view-all {
    display: inline-block;
    background: transparent;
    color: #3A2D2B;
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 2px solid #E2DDDA;
}

.blog-view-all:hover {
    background: #D5BCAB;
    border-color: #D5BCAB;
    color: #3A2D2B;
    transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .blog-grid {
        gap: 20px;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-post-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-description {
        font-size: 0.9rem;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-post-title {
        font-size: 1rem;
    }
}

/* ========== GOOGLE REVIEWS SECTION ========== */
.reviews-section {
    padding: 100px 0;
    background: #E2DDDA;
    position: relative;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header con Google Badge */
.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 24px;
    border-radius: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.google-icon {
    width: 24px;
    height: 24px;
}

.google-rating {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3A2D2B;
}

.google-stars {
    color: #f5b342;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.google-reviews-count {
    font-size: 0.8rem;
    color: #666;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #3A2D2B;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.reviews-description {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de reseñas */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Tarjeta de reseña */
.review-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Header de la reseña */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #D5BCAB;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details {
    text-align: left;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #3A2D2B;
    margin-bottom: 4px;
}

.review-stars {
    color: #f5b342;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.google-logo {
    opacity: 0.7;
}

/* Contenido de la reseña */
.review-content {
    margin-bottom: 20px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
}

.review-text::before {
    content: '"';
    font-size: 1.2rem;
    color: #D5BCAB;
}

.review-text::after {
    content: '"';
    font-size: 1.2rem;
    color: #D5BCAB;
}

/* Footer de la reseña */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    padding-top: 16px;
    border-top: 1px solid #E2DDDA;
}

.review-date {
    color: #999;
}

.verified-badge {
    color: #D5BCAB;
    font-weight: 500;
}

/* Botón de Google Reviews */
.reviews-footer {
    text-align: center;
}

.reviews-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #3A2D2B;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 2px solid #E2DDDA;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.reviews-button img {
    width: 20px;
    height: 20px;
}

.reviews-button:hover {
    background: #D5BCAB;
    border-color: #D5BCAB;
    color: #3A2D2B;
    transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .reviews-grid {
        gap: 20px;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .reviews-title {
        font-size: 1.8rem;
    }
    
    .reviews-description {
        font-size: 0.9rem;
    }
    
    .google-badge {
        padding: 10px 20px;
    }
    
    .google-rating {
        font-size: 1.2rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
}


