/* ===== CUSTOM STYLES ===== */
/* Este archivo contiene estilos personalizados específicos del proyecto */

/* ===== CUSTOM VARIABLES ===== */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1e3d6f;
    --accent-color: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --border-color: #ddd;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== VIDEO HERO SECTION ===== */
.top-content {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.video-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

.uvp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.uvp .container {
    font-size: 4.5rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.uvp span {
    color: #2c5aa0;
}

/* VIDEO CONTROLS */
.video-controls {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 20;
    display: flex;
    gap: 15px;
}

.video-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-control-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.video-control-btn svg {
    width: 20px;
    height: 20px;
    fill: #2c5aa0;
}

.video-control-btn.playing svg.play-icon {
    display: none;
}

.video-control-btn.playing svg.pause-icon {
    display: block;
}

.video-control-btn svg.pause-icon {
    display: none;
}

/* VIDEO INFO BUTTON */
.video-info-btn {
    position: relative;
}

.video-description-popup {
    position: absolute;
    bottom: 60px;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.video-description-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.video-description-popup h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c5aa0;
}

.video-description-popup p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive Video Hero */
@media (max-width: 768px) {
    .uvp .container {
        font-size: 3rem;
    }

    .video-controls {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }

    .video-control-btn {
        width: 45px;
        height: 45px;
    }

    .video-control-btn svg {
        width: 18px;
        height: 18px;
    }

    .video-description-popup {
        min-width: 250px;
        max-width: calc(100vw - 80px);
    }
}

@media (max-width: 480px) {
    .uvp .container {
        font-size: 2.2rem;
    }

    .video-controls {
        bottom: 15px;
        left: 15px;
    }

    .video-control-btn {
        width: 40px;
        height: 40px;
    }

    .video-control-btn svg {
        width: 16px;
        height: 16px;
    }
}


/* VIDEO MENU DROPDOWN */
.video-menu-container {
    position: relative;
}

.video-menu-dropdown {
    position: absolute;
    bottom: 60px;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    min-width: 200px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.video-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.video-menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.video-menu-item:hover {
    background: rgba(44, 90, 160, 0.8);
}

.video-menu-item .menu-icon {
    width: 18px;
    height: 18px;
    fill: #fff;
    flex-shrink: 0;
}

.video-menu-item .menu-text {
    flex: 1;
    text-align: left;
}
/* ===== ADDITIONAL SECTION STYLES ===== */

/* Success Metrics */
.success-metrics,
.company-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
}

.metrics-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.metric-item,
.stat-item {
    text-align: center;
}

.metric-number,
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.metric-label,
.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
}

/* Approach Section */
.our-approach {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.approach-item {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-normal);
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.approach-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
}

.approach-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

/* Mission & Values */
.mission-values {
    padding: 100px 0;
    background: #fff;
}

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

.value-item {
    text-align: center;
    padding: 40px 20px;
}

.value-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.value-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

/* Leadership Team */
.leadership-team {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.team-social a {
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

.team-social a:hover {
    color: var(--secondary-color);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--accent-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.testimonial blockquote {
    margin-bottom: 30px;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
}

/* Case Studies */
.case-studies-preview {
    padding: 100px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.case-study__image {
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
}

.case-study__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study__highlights {
    margin: 20px 0;
    padding-left: 20px;
}

.case-study__highlights li {
    margin-bottom: 8px;
    position: relative;
}

.case-study__highlights li:before {
    content: "✓";
    position: absolute;
    left: -20px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Benefits & Perks */
.benefits-perks {
    padding: 100px 0;
    background: var(--accent-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform var(--transition-normal);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

/* Job Listings */
.job-listings {
    margin-top: 60px;
}

.job-item {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    transition: box-shadow var(--transition-normal);
}

.job-item:hover {
    box-shadow: var(--shadow-medium);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-header h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.job-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.job-summary {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.job-requirements {
    margin-bottom: 30px;
}

.job-requirements h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.job-requirements ul {
    padding-left: 20px;
}

.job-requirements li {
    margin-bottom: 8px;
    position: relative;
}

.job-requirements li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: -15px;
}

.job-actions {
    display: flex;
    gap: 15px;
}

/* Company Culture */
.company-culture {
    padding: 100px 0;
    background: #fff;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.culture-features {
    margin: 30px 0;
    padding-left: 20px;
}

.culture-features li {
    margin-bottom: 15px;
    position: relative;
    font-size: 1.1rem;
}

.culture-features li:before {
    content: "✓";
    position: absolute;
    left: -20px;
    color: var(--primary-color);
    font-weight: bold;
}

.culture-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.culture-features {
    padding: 100px 0;
}

.culture-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.culture-item.reverse {
    direction: rtl;
}

.culture-item.reverse .culture-content {
    direction: ltr;
}

.culture-image {
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

/* Application Process */
.application-process {
    padding: 100px 0;
    background: var(--accent-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 30px;
    font-family: 'Oswald', sans-serif;
}

/* Contact Page Specific */
.contact-info {
    padding: 80px 0;
    background: var(--accent-color);
}

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

.contact-item {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.contact-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    margin-top: 40px;
    height: 400px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: var(--accent-color);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.quick-contact-item {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    color: var(--primary-color);
    transition: color var(--transition-fast);
    position: relative;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding-bottom: 20px;
    display: none;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Awards & Recognition */
.awards-recognition {
    padding: 100px 0;
    background: var(--accent-color);
}

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

.award-item {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.award-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* CTA Sections */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: #fff;
    opacity: 0.9;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-content .btn {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.cta-content .btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-color);
}

/* Form Confirmation */
.form-module__confirmation {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

/* Error States */
.form-module__field input.error,
.form-module__field textarea.error,
.form-module__field select.error {
    border-color: #dc3545;
}

.form-module__field label.error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

/* Loading States */
.btn.processing {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.processing:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .case-study {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .culture-item,
    .culture-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .job-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .metrics-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .metric-number,
    .stat-number {
        font-size: 2rem;
    }
    
    .approach-grid,
    .benefits-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   HEADER COMPONENT STYLES
   ================================ */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-navigation.active {
    right: 0;
}

.mobile-nav {
    padding: 100px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__link {
    display: block;
    padding: 20px 0;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
    color: #2c5aa0;
}

.mobile-nav__contact {
    margin: 30px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-phone,
.mobile-contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mobile-contact-phone:hover,
.mobile-contact-email:hover {
    color: #2c5aa0;
}

.mobile-nav__social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.mobile-nav__social a {
    color: #fff;
    transition: color 0.3s ease;
}

.mobile-nav__social a:hover {
    color: #2c5aa0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Component Error Styles */
.component-error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    margin: 10px;
    border: 1px solid #f5c6cb;
    font-size: 14px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .privary-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header__menu--right {
        gap: 15px;
    }
    
    .header__booking {
        order: -1;
    }
}

@media (max-width: 480px) {
    .mobile-navigation {
        width: 100%;
        right: -100%;
    }
    
    .header__menu {
        padding: 10px 15px;
    }

    .header__logo svg {
        width: 100px;
        height: 40px;
    }   

    .btn-booking {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Header scroll effect */
.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Active navigation state */
.privary-navigation__item.active a {
    color: #2c5aa0;
}

/* Hacer que el mapa se mezcle con el fondo */
.hero-stats {
    background-color: #fff;
}

.stats-map{
    width: 100%;
    height: auto;
    mix-blend-mode: darken; /* Mezcla solo los colores oscuros */
    opacity: 0.9;
}

.stats-map {
    width: 100%;
    height: auto;
    opacity: 0.85;
    filter: brightness(1.05) contrast(0.95);
}

/* Modificar el slider existente */
.sym-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
    overflow: visible;
}

.slider__item {
    position: relative;
    min-width: 350px;
    height: 600px;
    background: #000;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider__item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.3);
}

.slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.slider__item:hover img {
    opacity: 0.9;
}

/* Animación del borde SVG mejorada */
.rectangle-form-svg line {
    stroke: #2c5aa0;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 0.8s ease;
}

.slider__item:hover .rectangle-form-svg line,
.slider__item.active .rectangle-form-svg line {
    stroke-dashoffset: 0;
}

/* Contenido del slider con animaciones */
.slider__text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 10;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.slider__item:hover .slider__text {
    transform: translateY(0);
    opacity: 1;
}

/* BOTONES CIRCULARES BLANCOS - POSICIONADOS DEBAJO DEL SLIDER */
.custom-slider-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding: 20px 0;
}

.custom-nav-btn {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.95);
    color: #2c5aa0;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 100;
}

.custom-nav-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #2c5aa0;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.custom-nav-btn:active {
    transform: scale(0.95);
}

.custom-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: scale(1);
}

.custom-nav-btn:disabled:hover {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.custom-nav-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.custom-nav-btn:hover svg {
    transform: scale(1.1);
}

/* Asegurar visibilidad en cualquier fondo */
.custom-prev-btn, .custom-next-btn {
    background: #ffffff !important;
    border: 2px solid #ffffff !important;
    color: #2c5aa0 !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .slider__item {
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    .slider__item {
        min-width: 280px;
        height: 500px;
    }
    
    .slider__text--title {
        font-size: 1.5rem;
    }
    
    .slider__text {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .custom-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .custom-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .custom-slider-controls {
        gap: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .slider__item {
        min-width: 250px;
        height: 450px;
    }
    
    .custom-slider-controls {
        gap: 15px;
        margin-top: 25px;
    }
    
    .custom-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .custom-nav-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Animaciones adicionales */
@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.slider__item.slide-in-right {
    animation: slideInFromRight 0.6s ease forwards;
}

.slider__item.slide-in-left {
    animation: slideInFromLeft 0.6s ease forwards;
}

/* SUCCESS & PRESS SECTION - Hover Effect Style */
.success-press-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 15px;
    font-weight: 400;
}

.success-press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.success-press-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.success-press-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.success-press-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.success-press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.success-press-card:hover .success-press-image img {
    transform: scale(1.08);
}

/* Overlay - Initially hidden */
.success-press-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(44, 90, 160, 0.92) 0%, 
        rgba(30, 61, 111, 0.95) 100%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    
    /* Initially hidden */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Show overlay on hover */
.success-press-card:hover .success-press-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.success-press-content {
    text-align: center;
    color: #fff;
    max-width: 350px;
}

.success-press-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.success-press-card:hover .success-press-icon {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.success-press-icon svg {
    color: #fff;
    width: 24px;
    height: 24px;
}

.success-press-title {
    font-size: 1.8rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.success-press-card:hover .success-press-title {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.15s;
}

.success-press-title span {
    color: #fff;
    opacity: 0.95;
}

.success-press-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.95;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.success-press-card:hover .success-press-description {
    transform: translateY(0);
    opacity: 0.95;
    transition-delay: 0.2s;
}

.success-press-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
}

.success-press-card:hover .success-press-btn {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.25s;
}

.success-press-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

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

.success-press-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.success-press-btn svg {
    transition: transform 0.3s ease;
}

.success-press-btn:hover svg {
    transform: translateX(2px);
}

/* Animation on scroll */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .success-press-grid {
        gap: 25px;
        padding: 0 20px;
    }
    
    .success-press-card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .success-press-section {
        padding: 80px 0;
    }
    
    .success-press-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .success-press-card {
        height: 300px;
    }
    
    .success-press-title {
        font-size: 1.5rem;
    }
    
    .success-press-description {
        font-size: 0.95rem;
    }
    
    .success-press-overlay {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .success-press-overlay {
        padding: 25px;
    }
    
    .success-press-title {
        font-size: 1.3rem;
    }
    
    .success-press-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* SUCCESS & PRESS SECTION - Frame Style */
.success-press-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 15px;
    font-weight: 400;
}

.success-press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.success-press-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.success-press-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.success-press-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.success-press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.success-press-card:hover .success-press-image img {
    transform: scale(1.08);
}

/* Overlay - Initially hidden */
.success-press-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(44, 90, 160, 0.95) 0%, 
        rgba(30, 61, 111, 0.97) 100%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    
    /* Initially hidden */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Show overlay on hover */
.success-press-card:hover .success-press-overlay {
    opacity: 1;
    visibility: visible;
}

/* White frame container */
.success-press-frame {
    background: #fff;
    border: 3px solid #fff;
    border-radius: 0;
    padding: 40px 30px;
    text-align: center;
    max-width: 280px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-press-card:hover .success-press-frame {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

/* Mini image at top */
.success-press-mini-image {
    width: 120px;
    height: 80px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.success-press-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Frame title */
.success-press-frame-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Frame button - using same style as other site buttons */
.success-press-frame-btn {
    display: inline-block;
    padding: 12px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #2c5aa0;
    background-color: #2c5aa0;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border-radius: 0;
    text-decoration: none;
    min-width: 120px;
}

.success-press-frame-btn:hover {
    background-color: transparent;
    color: #2c5aa0;
    transform: translateY(-2px);
}


  /* ================================
   ABOUT US PAGE - HERO SECTION
   ================================ */

.hero-section {
    display: grid;
    grid-template-columns: 40% 60%; /* Columna izquierda 40%, Columna derecha (imagen) 60% */
    width: 100%;
    align-items: stretch;
    margin-top: 0 !important;
    padding-top: 0 !important;
    min-height: 500px;
}

/* 🔹 Columna izquierda - DIVIDIDA EN DOS FILAS (65% azul + 35% blanco) */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: linear-gradient(135deg, #1e3d6f 0%, #2c5aa0 100%) 0% 0% / 100% 65% no-repeat,
                white 0% 65% / 100% 35% no-repeat;
    padding: 140px 50px 0 50px; /* Padding superior para el navbar */
    color: white;
    position: relative;
}

.hero-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-label::before {
    content: '';
    width: 50px;
    height: 2px;
    background-color: white;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    text-transform: uppercase;
}

/* 🔹 Imagen más ancha y más alta */
.hero-image {
    background-image: url('../images/aboutus.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;

    height: 600px; /* más alta */
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.hero-image:hover::after {
    transform: scale(1.1);
}

/* Fallback if image doesn't load */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f3f4f6 25%, transparent 25%, transparent 75%, #f3f4f6 75%),
                linear-gradient(45deg, #f3f4f6 25%, transparent 25%, transparent 75%, #f3f4f6 75%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.1;
}

/* About Content Section - OVERLAY BLANCO SOBRE EL HERO */
.about-content {
    max-width: 1200px;
    margin: -80px auto 0 auto; /* Margin negativo para que se solape con el hero */
    padding: 60px 80px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    text-align: justify;
    margin-bottom: 0;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 60px 40px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-image {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 40px 25px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-label {
        font-size: 12px;
    }

    .hero-label::before {
        width: 30px;
    }

    .about-content {
        margin: -60px 20px 0 20px; /* Ajuste de margen para móviles */
        padding: 40px 30px;
    }

    .about-content p {
        font-size: 16px;
        text-align: left; /* Mejor legibilidad en móvil */
    }
}

/* ================================
   STATS SECTION
   ================================ */

.hero-stats {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    padding: 80px 40px;
    text-align: center;
}

/* Map Image */
.stats-map-container {
    max-width: 700px;
    margin: 0 auto 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-map-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.stats-map {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.stats-map-container:hover .stats-map {
    transform: scale(1.05);
}

/* Title and Description */
.hero-stats h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #475569;
    max-width: 900px;
    margin: 0 auto 60px;
}

.stats-intro strong {
    color: #2563eb;
    font-weight: 700;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Stat Box */
.stat-box {
    background: white;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box h3 {
    font-size: 64px;
    font-weight: 800;
    color: #2563eb;
    margin: 0 0 15px 0;
    line-height: 1;
}

.stat-box p {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    .hero-stats {
        padding: 60px 25px;
    }

    .hero-stats h2 {
        font-size: 32px;
    }

    .stats-intro {
        font-size: 18px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-box {
        padding: 40px 25px;
    }

    .stat-box h3 {
        font-size: 52px;
    }
}
/* ================================
   MEDIA SLIDER (VIDEO/IMAGES)
   ================================ */

.media-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.media-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.media-slide.active {
    opacity: 1;
    z-index: 1;
}

.media-slide video,
.media-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    border-color: rgba(37, 99, 235, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* ================================
   FIX DEFINITIVO SECCIÓN DEL MAPA
   ================================ */

.hero-stats {
    background: #ffffff !important;   /* fondo blanco REAL */
    padding: 40px 0 !important;
    margin: 0 !important;
    border: none !important;
}

/* Quitar el gris del wrapper padre */
.hero-stats *,
.hero-stats::before,
.hero-stats::after {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* La imagen del mapa */
.stats-map-bg {
    width: 100%;
    height: 380px; /* Ajusta el tamaño como quieras */
    background-image: url("../images/Map3.png") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin: 0 auto !important;
    filter: none !important;
    border: none !important;
}

/* Mantener tus cuadros intactos */
.stats-container-top .stat-box-dark {
    background: #000 !important;
    color: #fff !important;
}

/* Imagen del mapa más pequeña y súper centrada */
.stats-map-bg {
    width: 100%;
    height: 250px; /* antes 380px — más pequeño */
    background-image: url("../images/Map3.png") !important;
    background-size: 40% !important;  /* más pequeño y proporcional */
    background-repeat: no-repeat !important;
    background-position: center center !important; /* centrado real */
    margin: 0 auto !important;
    border: none !important;
    filter: none !important;
    display: block;
}

FIX PARA LOGO/BOTÓN PRINCIPAL
   ================================ */

/* Prevenir pérdida de estilo en el logo */
.header__logo,
.header__logo a,
.header__logo a:link,
.header__logo a:visited,
.header__logo a:hover,
.header__logo a:active,
.header__logo a:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Si tienes texto en el logo */
.header__logo svg,
.header__logo svg text,
.header__logo svg path {
    fill: #ffffff !important;
    opacity: 1 !important;
}

.header__logo:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    opacity: 0.9 !important;
}

/* Prevenir que los enlaces cambien el estado del logo */
a.header__logo,
a.header__logo:link,
a.header__logo:visited,
a.header__logo:active,
a.header__logo:focus {
    outline: none !important;
    color: inherit !important;
}

/* Si usas un enlace wrapper alrededor del logo */
header a[href="index.html"],
header a[href="/"],
header a[href="#home"] {
    text-decoration: none !important;
    color: inherit !important;
}

header a[href="index.html"]:visited,
header a[href="/"]:visited,
header a[href="#home"]:visited {
    color: #ffffff !important;
}

/* Asegurar visibilidad del logo en scroll */
.header.scrolled .header__logo,
.header.scrolled .header__logo a {
    color: #ffffff !important;
}

/* Si el logo desaparece completamente, forzar display */
.header__logo,
.header__logo * {
    display: block !important;
    visibility: visible !important;
}

/* ================================
   GLOBAL PAGE LAYOUT - SIN ESPACIO BLANCO ARRIBA
   ================================ */

/* Eliminar márgenes y paddings globales */
body {
    margin: 0 !important;
    padding: 0 !important;
}

#start-content,
#content {
    margin: 0 !important;
    padding: 0 !important;
}

/* Primera sección de cada página debe empezar desde arriba */
.top-content,
.portfolio-hero,
section:first-of-type {
    margin-top: 0 !important;
    padding-top: 150px !important; /* Espacio para el navbar */
}

/* About-us hero section NO necesita padding-top porque lo maneja internamente */
body#about-us .hero-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Excluir hero-section de la regla global */
section:first-of-type.hero-section {
    padding-top: 0 !important;
}

/* ================================
   HEADER SCROLL ANIMATION (Enhanced)
   ================================ */

/* Header position and transition */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    background-color: transparent !important;
    box-shadow: none;
}

/* Estado inicial - Transparente con letras blancas */
.header.transparent {
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.header.transparent .nav-link,
.header.transparent .privary-navigation__item a {
    color: #ffffff !important;
}

/* Botón de contacto - Estado inicial: azul con letras blancas */
.header.transparent .btn-booking {
    background-color: #2c5aa0 !important;
    color: #ffffff !important;
    border: 2px solid #2c5aa0 !important;
}

.header.transparent .btn-booking:hover {
    background-color: #1e3d6f !important;
    border-color: #1e3d6f !important;
}

.header.transparent .mobile-menu-toggle span {
    background-color: #ffffff !important;
}

/* Estado al hacer scroll - Fondo NEGRO SÓLIDO con letras blancas */
.header.scrolled {
    background-color: #000000 !important; /* Negro sólido 100% */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: none;
}

.header.scrolled .nav-link,
.header.scrolled .privary-navigation__item a {
    color: #ffffff !important;
}

/* Botón de contacto - Al hacer scroll: fondo negro con borde blanco */
.header.scrolled .btn-booking {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

.header.scrolled .btn-booking:hover {
    background-color: #2c5aa0 !important;
    border-color: #2c5aa0 !important;
}

/* Animación de enlaces del menú al hacer scroll */
.header.scrolled .privary-navigation__item {
    animation: slideInDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.header.scrolled .privary-navigation__item:nth-child(1) {
    animation-delay: 0.05s;
}

.header.scrolled .privary-navigation__item:nth-child(2) {
    animation-delay: 0.1s;
}

.header.scrolled .privary-navigation__item:nth-child(3) {
    animation-delay: 0.15s;
}

.header.scrolled .privary-navigation__item:nth-child(4) {
    animation-delay: 0.2s;
}

.header.scrolled .privary-navigation__item:nth-child(5) {
    animation-delay: 0.25s;
}

.header.scrolled .privary-navigation__item:nth-child(6) {
    animation-delay: 0.3s;
}

/* Animación de slide + fade para los enlaces */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Transición suave para el logo */
.header__logo {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header__logo {
    transform: scale(0.95);
}

/* Transición del menú */
.header__menu {
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduce el padding al hacer scroll */
.header.scrolled .header__menu {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Botón de contacto con animación */
.header__booking {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header__booking {
    transform: scale(0.95);
}

/* Enlaces del navbar con efecto hover mejorado */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2c5aa0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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