.elementor-435 .elementor-element.elementor-element-4569e64{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-435 .elementor-element.elementor-element-ae999ad{--spacer-size:50px;}.elementor-435 .elementor-element.elementor-element-21d99a9{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--overlay-opacity:0.5;}.elementor-435 .elementor-element.elementor-element-21d99a9::before, .elementor-435 .elementor-element.elementor-element-21d99a9 > .elementor-background-video-container::before, .elementor-435 .elementor-element.elementor-element-21d99a9 > .e-con-inner > .elementor-background-video-container::before, .elementor-435 .elementor-element.elementor-element-21d99a9 > .elementor-background-slideshow::before, .elementor-435 .elementor-element.elementor-element-21d99a9 > .e-con-inner > .elementor-background-slideshow::before, .elementor-435 .elementor-element.elementor-element-21d99a9 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{--background-overlay:'';}.elementor-435 .elementor-element.elementor-element-a32a374{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-a32a374 *//* Nuestra Asociación Section Styles */
.asociacion-section {
    top: 60px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    width: 100vw; /* AÑADIDO: Full viewport width */
    left: 50%; /* AÑADIDO: Center from middle */
    transform: translateX(-50%); /* AÑADIDO: Center perfectly */
    margin: 0; /* AÑADIDO: Remove margins */
}

.asociacion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.asociacion-header {
    text-align: center;
    margin-bottom: 60px;
}

.asociacion-title {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    color: #510023;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4e4bc, #d4af37);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.asociacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%; 
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-card h3 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: #510023;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(81, 0, 35, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(81, 0, 35, 0.1);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #510023;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item span {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.oficinas-turismo {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%;
}

.oficinas-turismo .info-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.oficinas-turismo p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; 
}

.btn-turismo {
    background: linear-gradient(135deg, #510023, #7a0035);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(81, 0, 35, 0.3);
    margin: 0 auto;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    margin-top: auto; /* AÑADIDO: Empujar hacia abajo */
}

.social-section {
    grid-column: 1 / -1;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-link.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.social-link.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.social-link.youtube:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.social-link.instagram:hover {
    border-color: #e4405f;
    color: #e4405f;
}

.social-link svg {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    flex-shrink: 0;
}

.social-link span {
    font-weight: 600;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .asociacion-section {
        padding: 60px 0;
    }
    
    .asociacion-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .asociacion-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-card {
        padding: 30px 25px;
    }
    
    .info-card h3 {
        font-size: 1.5rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .asociacion-section {
        padding: 40px 0;
    }
    
    .asociacion-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-item span {
        font-size: 14px;
    }
    
    .social-link {
        padding: 15px;
    }
    
    .social-link svg {
        width: 24px;
        height: 24px;
    }
    
    .social-link span {
        font-size: 14px;
    }
}/* End custom CSS */