/* Estilos para la página de contacto */

:root {
    --color-primary: #2D3748;
    --color-primary-rgb: 45, 55, 72;
    --color-accent: #4A5568;
    --color-accent-rgb: 74, 85, 104;
    --color-light: #F8F9FA;
    --color-dark: #1A202C;
    --color-secondary: #718096;
}

/* Hero Section con partículas animadas */
.contact-hero-section {
    position: relative;
    height: 70vh;
    background: linear-gradient(rgba(45, 55, 72, 0.8), rgba(26, 32, 44, 0.9)), url('https://images.unsplash.com/photo-1560264280-88b68371db39?auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 76px;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.contact-hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Sección de contacto con efecto de profundidad */
.contact-section {
    position: relative;
    background-color: var(--color-light);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e9ecef' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Tarjeta de información de contacto */
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

.contact-info-header {
    margin-bottom: 2rem;
    position: relative;
}

.contact-info-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
}

.contact-info-item {
    display: flex;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-item:hover {
    background: rgba(0,0,0,0.04);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.2);
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-text h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-text h5 {
    color: var(--color-accent);
}

.contact-text p {
    color: var(--color-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-social-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    color: var(--color-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
}

.social-icon:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.3);
}

/* Tarjeta del formulario de contacto */
.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

.contact-form-card h3 {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.contact-form-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
}

.form-floating .form-control {
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 1rem;
    height: calc(3.5rem + 2px);
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.1);
    border-color: var(--color-primary);
}

.form-floating textarea.form-control {
    height: 150px;
}

.form-floating label {
    padding: 1rem;
}

.form-select {
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    height: calc(3.5rem + 2px);
    padding: 1rem;
    transition: all 0.3s ease;
}

.form-select:focus {
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.1);
    border-color: var(--color-primary);
}

.submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.3);
    transform: translateY(-3px);
}

.btn-icon {
    transition: all 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Animación para elementos */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.animated-element.show {
    opacity: 1;
    transform: translateY(0);
}

/* Sección del mapa */
.map-section {
    position: relative;
    background-color: #f8f9fa;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.map-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.map-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 250px;
    border-left: 4px solid var(--color-primary);
}

.map-card h4 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.map-card p {
    margin-bottom: 15px;
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

.map-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.map-card p {
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

/* Sección de FAQ */
.faq-section {
    background-color: white;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f8f9fa' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.faq-accordion {
    position: relative;
    z-index: 1;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--color-primary);
    background-color: white;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: white;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 20px 25px;
    background-color: white;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    background-color: white;
    border: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    color: var(--color-secondary);
}

/* Sección de CTA */
.cta-section {
    background-color: var(--color-light);
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(var(--color-primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.cta-features li {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.cta-features li i {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
}

.cta-card .btn-light {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-card .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-card .btn-outline-light {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-card .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .cta-card {
        padding: 30px;
    }
    
    .cta-features li {
        font-size: 1rem;
    }
}

.whatsapp-btn {
    background-color: #25D366;
    border-color: #25D366;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 2rem;
    border-radius: 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Enlaces en la tarjeta de información */
.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--color-accent);
}

.contact-link:hover::after {
    width: 100%;
}

/* Animación para los elementos */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animated-element.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mejora del formulario */
.form-floating .form-control {
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 1rem;
    height: calc(3.5rem + 2px);
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.9);
}

.form-floating .form-control:focus {
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.1);
    border-color: var(--color-primary);
    background-color: #fff;
}

.form-floating textarea.form-control {
    height: 150px;
}

/* Botón de envío con efecto */
.submit-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    transition: all 0.5s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.3);
}

.btn-icon {
    transition: all 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Animación para elementos */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.animated-element.show {
    opacity: 1;
    transform: translateY(0);
}

/* Sección del mapa */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem;
    z-index: 10;
    pointer-events: none;
}

.map-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    max-width: 350px;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

.map-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.map-card p {
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

/* Sección de FAQ */
.faq-section {
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23bbd6f7' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.faq-accordion {
    position: relative;
    z-index: 1;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    background-color: white;
    border: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    color: var(--color-secondary);
}

/* Sección de CTA */
.cta-section {
    background-color: var(--color-light);
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(var(--color-primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.cta-features li {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.cta-features li i {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
}

.cta-card .btn-light {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-card .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-card .btn-outline-light {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-card .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .cta-card {
        padding: 30px;
    }
    
    .cta-features li {
        font-size: 1rem;
    }
}

.whatsapp-btn {
    background-color: #25D366;
    border-color: #25D366;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 2rem;
    border-radius: 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Enlaces en la tarjeta de información */
.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--color-accent);
}

.contact-link:hover::after {
    width: 100%;
}

/* Animación para los elementos */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animated-element.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mejora del formulario */
.form-floating .form-control {
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 1rem;
    height: calc(3.5rem + 2px);
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.9);
}

.form-floating .form-control:focus {
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.1);
    border-color: var(--color-primary);
    background-color: #fff;
}

.form-floating textarea.form-control {
    height: 150px;
}

/* Botón de envío con efecto */
.submit-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    transition: all 0.5s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.3);
}

.btn-icon {
    transition: all 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Animación para elementos */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.animated-element.show {
    opacity: 1;
    transform: translateY(0);
}

/* Sección del mapa */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem;
    z-index: 10;
    pointer-events: none;
}

.map-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    max-width: 350px;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

.map-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.map-card p {
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

/* Sección de FAQ */
.faq-section {
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23bbd6f7' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.faq-accordion {
    position: relative;
    z-index: 1;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    background-color: white;
    border: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    color: var(--color-secondary);
}

/* Sección de CTA */
.cta-section {
    background-color: var(--color-light);
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(var(--color-primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.cta-features li {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.cta-features li i {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
}

.cta-card .btn-light {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-card .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-card .btn-outline-light {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-card .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .cta-card {
        padding: 30px;
    }
    
    .cta-features li {
        font-size: 1rem;
    }
}

.whatsapp-btn {
    background-color: #25D366;
    border-color: #25D366;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 2rem;
    border-radius: 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Enlaces en la tarjeta de información */
.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--color-accent);
}

.contact-link:hover::after {
    width: 100%;
}

/* Animación para los elementos */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animated-element.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mejora del formulario */
.form-floating .form-control {
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 1rem;
    height: calc(3.5rem + 2px);
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.9);
}

.form-floating .form-control:focus {
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.1);
    border-color: var(--color-primary);
    background-color: #fff;
}

.form-floating textarea.form-control {
    height: 150px;
}

/* Botón de envío con efecto */
.submit-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    transition: all 0.5s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.3);
}

.btn-icon {
    transition: all 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Animación para elementos */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.animated-element.show {
    opacity: 1;
    transform: translateY(0);
}

/* Sección del mapa */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem;
    z-index: 10;
    pointer-events: none;
}

.map-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    max-width: 350px;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

.map-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.map-card p {
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

/* Sección de FAQ */
.faq-section {
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23bbd6f7' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.faq-accordion {
    position: relative;
    z-index: 1;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    background-color: white;
    border: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    color: var(--color-secondary);
}

/* Sección de CTA */
.cta-section {
    background-color: var(--color-light);
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(var(--color-primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.cta-features li {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.cta-features li i {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
}

.cta-card .btn-light {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-card .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-card .btn-outline-light {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-card .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .cta-card {
        padding: 30px;
    }
    
    .cta-features li {
        font-size: 1rem;
    }
}

.whatsapp-btn {
    background-color: #25D366;
    border-color: #25D366;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 2rem;
    border-radius: 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Enlaces en la tarjeta de información */
.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--color-accent);
}

.contact-link:hover::after {
    width: 100%;
}

/* Animación para los elementos */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animated-element.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mejora del formulario */
.form-floating .form-control {
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 1rem;
    height: calc(3.5rem + 2px);
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.9);
}

.form-floating .form-control:focus {
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.1);
    border-color: var(--color-primary);
    background-color: #fff;
}

.form-floating textarea.form-control {
    height: 150px;
}

/* Botón de envío con efecto */
.submit-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    transition: all 0.5s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.3);
}

.btn-icon {
    transition: all 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Animación para elementos */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.animated-element.show {
    opacity: 1;
    transform: translateY(0);
}

/* Sección del mapa */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem;
    z-index: 10;
    pointer-events: none;
}

.map-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    max-width: 350px;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

.map-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.map-card p {
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

/* Sección de FAQ */
.faq-section {
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23bbd6f7' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.faq-accordion {
    position: relative;
    z-index: 1;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    background-color: white;
    border: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    color: var(--color-secondary);
}

/* Sección de CTA */
.cta-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fd 100%);
    position: relative;
    overflow: hidden;
}

