/* ===== ESTILOS DEL HEADER Y NAVEGACIÓN ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--glass-bg-solid);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--pearl);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    margin: 3px 0;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--glass-bg-solid);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: var(--transition);
    z-index: 999;
    padding: 20px;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    color: var(--pearl);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--accent);
}

/* ===== ESTILOS DE LA SECCIÓN HERO ===== */
.demo-content {
    margin: 60px auto;
    padding: 80px 20px;
    text-align: center;
    max-width: 800px;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(28, 28, 28, 0.9) 100%);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.demo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.demo-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.demo-content .highlight {
    color: var(--accent-light);
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.demo-content p {
    font-size: 1.2rem;
    color: var(--pearl);
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ===== ESTILOS DE SECCIONES ===== */
.tours-section,
.por-que-section,
.testimonials-section,
.certifications-section,
.faq-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(28, 28, 28, 0.8) 100%);
}

.tours-section::before,
.por-que-section::before,
.testimonials-section::before,
.certifications-section::before,
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--pearl);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== ESTILOS DE CARDS ===== */
.tours-grid,
.features-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tour-card,
.feature-card,
.testimonial-card {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tour-card::before,
.feature-card::before,
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.tour-card:hover::before,
.feature-card:hover::before,
.testimonial-card:hover::before {
    opacity: 1;
}

.tour-card:hover,
.feature-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-black);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.card-description {
    color: var(--pearl);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

/* ===== ESTILOS DEL FAQ ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(201, 162, 39, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 30px 25px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
    margin: 0;
    color: var(--pearl);
    line-height: 1.6;
    font-size: 1rem;
    transform: translateY(-10px);
    transition: transform 0.3s ease 0.1s;
}

.faq-item.active .faq-answer p {
    transform: translateY(0);
}

.faq-icon {
    transition: var(--transition);
    color: var(--accent);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ===== ESTILOS DEL FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--charcoal) 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: var(--pearl);
    text-decoration: none;
    line-height: 1.6;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    color: var(--pearl);
}

/* ===== ANIMACIONES ADICIONALES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInFromLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .demo-content {
        margin: 40px auto;
        padding: 60px 20px;
    }
    
    .tours-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-card,
    .feature-card,
    .testimonial-card {
        padding: 25px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .demo-content {
        margin: 20px auto;
        padding: 40px 15px;
    }
    
    .demo-content h1 {
        font-size: 2rem;
    }
    
    .demo-content p {
        font-size: 1rem;
    }
    
    .tour-card,
    .feature-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}
/* Certificaciones Section */
.certificaciones-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--charcoal) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.certificaciones-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(128, 0, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.certificaciones-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.certificaciones-header {
    margin-bottom: 60px;
    position: relative;
}
.certificaciones-header h1 {
    color: var(--accent);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}
.certificaciones-header p {
    color: var(--pearl);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.linea {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px var(--shadow-gold);
}
.certificaciones-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
}
.certificaciones-viewport {
    overflow: hidden;
    width: min(1000px, 90vw);
    border-radius: 16px;
    background: rgba(43, 43, 43, 0.6);
    border: 1px solid var(--accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    display: flex;
    justify-content: center;
}
.certificaciones-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.certification-item {
    flex: 0 0 auto;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 230, 230, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.certification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.certification-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.3);
    border-color: var(--accent);
}
.certification-item:hover::before {
    opacity: 0.1;
}
.certification-item img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
}
.cert-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    width: 100%;
}
.cert-pagination .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.cert-pagination .dot.active {
    background: var(--accent);
    box-shadow: 0 0 15px var(--shadow-gold);
    border-color: var(--accent-light);
}
.cert-pagination .dot:hover {
    background: var(--accent-light);
    transform: scale(1.2);
}
/* Responsive Design */
@media (max-width: 768px) {
    .certificaciones-slider {
        gap: 15px;
    }
    
    .arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .certificaciones-viewport {
        width: 90vw;
        padding: 20px 0;
    }
    
    .certification-item {
        width: 120px;
        height: 120px;
        margin: 0 15px;
    }
    
    .certification-item img {
        width: 80px;
        height: 80px;
    }
}
/* Tours Section */
.tours-section {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--charcoal) 25%, var(--primary-black) 75%, #0a0a0a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.tours-container {
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.tours-header {
    margin-bottom: 80px;
    position: relative;
}
.tours-header h1 {
    background: linear-gradient(135deg, var(--accent) 0%, #e6d76a 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}
.tours-header p {
    color: #f5f5f5;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.tours-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px 0;
}
.tour-card {
    flex: 0 0 auto;
    width: 370px;
    margin: 0 25px;
    background: linear-gradient(145deg, rgba(245, 245, 245, 0.98), rgba(230, 230, 230, 0.95));
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    transform-style: preserve-3d;
}
.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), transparent 50%, rgba(201, 162, 39, 0.05));
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 25px;
    pointer-events: none;
}
.tour-card:hover {
    transform: translateY(-20px) scale(1.05) rotateX(5deg);
    box-shadow: 
        0 35px 70px rgba(201, 162, 39, 0.4),
        0 0 50px rgba(201, 162, 39, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid var(--accent);
}
.tour-card:hover::before {
    opacity: 1;
}
.tour-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
}

.tour-card:hover .tour-image img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1) contrast(1.3) saturate(1.3);
}

.tour-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.8));
    color: var(--accent);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(201, 162, 39, 0.4);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.tour-card:hover .tour-overlay {
    background: linear-gradient(135deg, var(--accent), #e6d76a);
    color: #000;
    border-color: var(--accent);
    box-shadow: 
        0 8px 25px rgba(201, 162, 39, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.tour-content {
    padding: 30px;
    color: var(--primary-black);
    position: relative;
}

.tour-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.tour-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--charcoal) 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    position: relative;
}

.tour-card:hover .tour-content h3 {
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

.tour-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    transition: color 0.4s ease;
}

.tour-card:hover .tour-content p {
    color: #333;
}

.tour-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--burgundy) 0%, #a0002a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
    position: relative;
    transition: all 0.4s ease;
}

.tour-price::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), #a0002a);
    transition: width 0.4s ease;
}

.tour-card:hover .tour-price::before {
    width: 100%;
}

.tours-pagination {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 50px;
    padding-bottom: 30px;
    position: relative;
}

.tours-pagination::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.2), transparent);
    transform: translateY(-50%);
    z-index: 0;
}

.tours-pagination .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.3), rgba(201, 162, 39, 0.1));
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid rgba(201, 162, 39, 0.2);
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.tours-pagination .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.tours-pagination .dot.active {
    background: linear-gradient(135deg, var(--accent), #e6d76a);
    transform: scale(1.5);
    box-shadow: 
        0 0 25px rgba(201, 162, 39, 0.8),
        0 5px 20px rgba(201, 162, 39, 0.4);
    border-color: var(--accent);
}

.tours-pagination .dot.active::before {
    opacity: 1;
    background: #000;
}

.tours-pagination .dot:hover {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.7), rgba(201, 162, 39, 0.5));
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.6);
    border-color: rgba(201, 162, 39, 0.6);
}
/* Tours Navigation Arrows */
.tours-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.9));
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tours-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, white, #f0f0f0);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.tours-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    color: #000;
    border-color: white;
    box-shadow: 
        0 12px 35px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.tours-arrow:hover::before {
    opacity: 1;
}

.tours-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.tours-arrow-left {
    left: -30px;
}

.tours-arrow-right {
    right: -30px;
}

.tours-arrow svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.tours-arrow:hover svg {
    transform: scale(1.2);
}

/* Responsive Design for Tours */
/* Responsive Design for Tours Section */
@media (max-width: 1200px) {
    .tours-section {
        padding: 80px 0;
    }
    
    .tours-container {
        padding: 0 30px;
    }
    
    .tour-card {
        width: 340px;
        margin: 0 20px;
    }
    
    .tours-header h1 {
        font-size: 2.8rem;
    }
    
    .tours-header p {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .tours-section {
        padding: 70px 0;
    }
    
    .tour-card {
        width: 320px;
        margin: 0 18px;
    }
    
    .tour-image {
        height: 200px;
    }
    
    .tours-header h1 {
        font-size: 2.5rem;
    }
    
    .tours-header p {
        font-size: 1.15rem;
        margin-bottom: 35px;
    }
    
    .tours-arrow {
        width: 55px;
        height: 55px;
    }
    
    .tours-arrow svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .tours-section {
        padding: 60px 0;
    }
    
    .tours-container {
        padding: 0 20px;
    }
    
    .tours-header {
        margin-bottom: 40px;
    }
    
    .tours-header h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .tours-header p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }
    

    
    .tours-slider {
        padding: 30px 0;
    }
    
    .tour-card {
        width: 280px;
        margin: 0 15px;
        border-radius: 20px;
    }
    
    .tour-image {
        height: 180px;
    }
    
    .tour-content {
        padding: 25px 20px;
    }
    
    .tour-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .tour-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .tour-overlay {
        top: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .tours-arrow {
        width: 50px;
        height: 50px;
    }
    
    .tours-arrow-left {
        left: -25px;
    }
    
    .tours-arrow-right {
        right: -25px;
    }
    
    .tours-arrow svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .tours-section {
        padding: 50px 0;
    }
    
    .tours-container {
        padding: 0 15px;
    }
    
    .tours-header h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .tours-header p {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    

    
    .tours-slider {
        padding: 25px 0;
    }
    
    .tour-card {
        width: 250px;
        margin: 0 12px;
        border-radius: 15px;
    }
    
    .tour-image {
        height: 160px;
    }
    
    .tour-content {
        padding: 20px 15px;
    }
    
    .tour-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .tour-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .tour-overlay {
        top: 12px;
        right: 12px;
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .tours-arrow {
        width: 45px;
        height: 45px;
    }
    
    .tours-arrow-left {
        left: -22px;
    }
    
    .tours-arrow-right {
        right: -22px;
    }
    
    .tours-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .tours-pagination {
        margin-top: 25px;
    }
    
    .tours-pagination .dot {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
}

@media (max-width: 360px) {
    .tour-card {
        width: 220px;
        margin: 0 10px;
    }
    
    .tour-image {
        height: 140px;
    }
    
    .tour-content {
        padding: 18px 12px;
    }
    
    .tour-content h3 {
        font-size: 1.1rem;
    }
    
    .tour-content p {
        font-size: 0.9rem;
    }
    
    .tours-arrow {
        width: 40px;
        height: 40px;
    }
    
    .tours-arrow-left {
        left: -20px;
    }
    
    .tours-arrow-right {
        right: -20px;
    }
    
    .tours-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Testimonios Section */
.testimonios-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--primary-black) 50%, var(--charcoal) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonios-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(128, 0, 32, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testimonios-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.testimonios-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.testimonios-header h1 {
    background: linear-gradient(135deg, var(--accent) 0%, #e6d76a 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.testimonios-header p {
    color: #f5f5f5;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.testimonios-header .linea {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #e6d76a, var(--accent));
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.testimonio-card {
    background: linear-gradient(145deg, rgba(245, 245, 245, 0.98), rgba(230, 230, 230, 0.95));
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    height: 100%;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transform-style: preserve-3d;
}

.testimonio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), transparent 50%, rgba(201, 162, 39, 0.05));
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 20px;
    pointer-events: none;
}

.testimonio-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(201, 162, 39, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(201, 162, 39, 0.3);
}

.testimonio-card:hover::before {
    opacity: 1;
}

.testimonio-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    justify-content: center;
    flex-shrink: 0;
}

.testimonio-rating .star {
    color: var(--accent);
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
    transition: all 0.3s ease;
}

.testimonio-card:hover .testimonio-rating .star {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(201, 162, 39, 0.8);
}

.testimonio-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 25px;
    text-align: center;
    font-style: italic;
    position: relative;
    padding: 0 20px;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 120px;
}

.testimonio-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: serif;
}

.testimonio-text::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: serif;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(201, 162, 39, 0.2);
    flex-shrink: 0;
    margin-top: auto;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonio-card:hover .author-avatar img {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.testimonio-card:hover .author-info h4 {
    color: var(--burgundy);
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.testimonios-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.9));
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(201, 162, 39, 0.2);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, #e6d76a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #f5f5f5;
    margin-bottom: 10px;
    font-weight: 500;
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.stat-stars .star {
    color: var(--accent);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

/* Responsive Design for Testimonios */
@media (max-width: 1200px) {
    .testimonios-section {
        padding: 80px 0;
    }
    
    .testimonios-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
    
    .testimonio-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .testimonios-section {
        padding: 60px 0;
    }
    
    .testimonios-container {
        padding: 0 15px;
    }
    
    .testimonios-header {
        margin-bottom: 50px;
    }
    
    .testimonios-header h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .testimonios-header p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .testimonio-card {
        padding: 25px;
        border-radius: 15px;
    }
    
    .testimonio-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .testimonios-stats {
        gap: 40px;
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .testimonios-section {
        padding: 50px 0;
    }
    
    .testimonios-header h1 {
        font-size: 1.8rem;
    }
    
    .testimonios-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonio-card {
        padding: 20px;
    }
    
    .testimonio-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .testimonio-author {
        gap: 12px;
    }
    
    .author-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.85rem;
    }
    
    .testimonios-stats {
        gap: 30px;
        padding: 30px 15px;
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Por qué elegirnos Section */
.por-que-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--charcoal) 50%, var(--primary-black) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.por-que-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(128, 0, 32, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.por-que-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.por-que-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.por-que-header h1 {
    background: linear-gradient(135deg, var(--accent) 0%, #e6d76a 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.por-que-header p {
    color: #f5f5f5;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.por-que-header .linea {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #e6d76a, var(--accent));
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.por-que-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.por-que-card {
    background: linear-gradient(145deg, rgba(245, 245, 245, 0.98), rgba(230, 230, 230, 0.95));
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
    height: 100%;
}

.por-que-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), transparent 50%, rgba(201, 162, 39, 0.04));
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 25px;
    pointer-events: none;
}

.por-que-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(201, 162, 39, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(201, 162, 39, 0.3);
}

.por-que-card:hover::before {
    opacity: 1;
}

.por-que-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    height: 100px;
}

.por-que-icon svg {
    filter: drop-shadow(0 10px 20px rgba(201, 162, 39, 0.3));
    width: 80px;
    height: 80px;
}

.por-que-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.por-que-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.por-que-card:hover h3 {
    color: var(--burgundy);
    transform: translateY(-2px);
}

.por-que-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    text-align: center;
    transition: color 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 140px;
}

.por-que-card:hover p {
    color: var(--charcoal);
}

.por-que-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    color: var(--charcoal);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.por-que-card:hover .feature-tag {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.1));
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateX(5px);
    color: var(--burgundy);
}

/* Responsive Design for Por qué elegirnos */
@media (max-width: 1200px) {
    .por-que-section {
        padding: 80px 0;
    }
    
    .por-que-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .por-que-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .por-que-section {
        padding: 60px 0;
    }
    
    .por-que-container {
        padding: 0 15px;
    }
    
    .por-que-header {
        margin-bottom: 50px;
    }
    
    .por-que-header h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .por-que-header p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .por-que-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .por-que-card {
        padding: 30px;
        border-radius: 20px;
    }
    
    .por-que-card h3 {
        font-size: 1.6rem;
    }
    
    .por-que-card p {
        font-size: 1rem;
        text-align: center;
    }
    
    .por-que-features {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .por-que-section {
        padding: 50px 0;
    }
    
    .por-que-header h1 {
        font-size: 1.8rem;
    }
    
    .por-que-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .por-que-card {
        padding: 25px;
    }
    
    .por-que-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .por-que-card h3 {
        font-size: 1.4rem;
    }
    
    .por-que-card p {
        font-size: 0.95rem;
    }
    
    .feature-tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* Responsive Styles for Testimonios Section */
@media (max-width: 1200px) {
    .testimonios-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
    
    .testimonio-card {
        padding: 30px;
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .testimonios-section {
        padding: 60px 0;
    }
    
    .testimonios-container {
        padding: 0 15px;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonio-card {
        padding: 25px;
        min-height: 350px;
    }
    
    .testimonio-text {
        font-size: 1rem;
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .testimonios-section {
        padding: 50px 0;
    }
    
    .testimonio-card {
        padding: 20px;
        min-height: 320px;
    }
    
    .testimonio-text {
        font-size: 0.95rem;
        min-height: 80px;
        padding: 0 10px;
    }
    
    .author-avatar img {
        width: 50px;
        height: 50px;
    }
}

.faq-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--charcoal) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-header p {
    font-size: 1.2rem;
    color: var(--pearl);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 80px;
}

.faq-item {
    background: rgba(43, 43, 43, 0.8);
    border: 1px solid var(--accent);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.2);
    border-color: var(--accent-light);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.9) 0%, rgba(28, 28, 28, 0.9) 100%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(43, 43, 43, 0.9) 100%);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: var(--pearl);
    line-height: 1.6;
    font-size: 1rem;
}

.contact-section {
    text-align: center;
    padding: 60px 40px;
    background: rgba(28, 28, 28, 0.8);
    border: 1px solid var(--accent);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 1.1rem;
    color: var(--pearl);
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-gold);
    border-color: var(--accent-light);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.call-btn:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2.2rem;
    }

    .faq-header p {
        font-size: 1rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .contact-section h2 {
        font-size: 1.6rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}