/* ============================================================
   Theme Saber - Main Stylesheet
   Color Principal: #FF5C01 (Naranja)
   Color Secundario: #2A2E65 (Azul oscuro)
   Fuente: Urbanist
============================================================ */

/* ===================== VARIABLES ========================= */
:root {
    --primary:     #E62020;
    --primary-dark: #E62020;
    --secondary:   #2A2E65;
    --dark:        #1a1a2e;
    --light-bg:    #f8f9fa;
    --text-dark:   #333333;
    --text-muted:  #666666;
    --white:       #ffffff;
    --border:      #e0e0e0;
    --transition:  all 0.3s ease;
    --shadow:      0 5px 30px rgba(0,0,0,0.08);
    --shadow-hover:0 15px 40px rgba(0,0,0,0.15);
    --radius:      12px;
}

/* ===================== BASE ============================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Urbanist', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 1rem;
}

img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* Bootstrap Override */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    border-radius: 6px;
    padding: 10px 28px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,92,1,0.4);
}
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-light:hover {
    color: var(--primary);
}
.btn-white {
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: 6px;
    padding: 10px 28px;
    font-weight: 600;
}
.btn-white:hover {
    background: var(--secondary);
    color: #fff;
}
.text-primary { color: var(--primary) !important; }

.default-padding { padding: 100px 0; }

/* ===================== SECTION TITLES =================== */
.section-title .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}
.section-title .subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary);
}
.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 0;
}
.section-title h2 span { color: var(--primary); }

/* ===================== PRELOADER ======================== */
#preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
#preloader.loaded { opacity: 0; pointer-events: none; }
.loader {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Top bar y navbar: ver assets/css/header.css y validnavs.css */

/* ===================== NAVBAR ========================== */
.site-navbar {
    background: #fff !important;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.site-navbar.sticky {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.12);
}
.navbar-brand { display: flex; align-items: center; }
.navbar-brand .logo { max-height: 60px; width: auto; }
.navbar-brand.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
}

.site-navbar .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}
.site-navbar .nav-link:hover,
.site-navbar .nav-item.active .nav-link {
    color: var(--primary) !important;
}
.site-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.site-navbar .nav-link:hover::after {
    left: 16px; right: 16px;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-hover);
    border-radius: var(--radius);
    padding: 10px 0;
    min-width: 200px;
    margin-top: 5px;
}
.dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}
.dropdown-menu li a:hover {
    color: var(--primary);
    background: rgba(255,92,1,0.05);
    padding-left: 25px;
}

/* Contact Info in Navbar */
.navbar-right-info .contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-right-info .contact-info i {
    color: var(--primary);
    font-size: 18px;
}
.navbar-right-info .contact-info small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}
.navbar-right-info .contact-info h6 {
    margin: 0;
    font-size: 15px;
}
.navbar-right-info .contact-info h6 a {
    color: var(--secondary);
}
.navbar-right-info .contact-info h6 a:hover { color: var(--primary); }

/* Search Box */
.search-toggle { color: var(--secondary); background: none; border: none; font-size: 18px; }
.search-toggle:hover { color: var(--primary); }
.search-box {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--secondary);
    padding: 20px 0;
    display: none;
    z-index: 100;
}
.search-box.active { display: block; }
.search-box .search-form { display: flex; gap: 10px; }
.search-box input[type="search"] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
}
.search-box .search-submit {
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.close-search {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* ===================== HERO BANNER ====================== */
.banner-area { position: relative; }

.hero-swiper { width: 100%; }

.banner-slide {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-1 {
    background-image: linear-gradient(135deg, var(--secondary) 0%, #2d4a6b 100%);
}
.slide-2 {
    background-image: linear-gradient(135deg, #1a1a2e 0%, var(--secondary) 100%);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.banner-content { position: relative; z-index: 1; color: #fff; }

.banner-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 20px;
    background: rgba(255,92,1,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,92,1,0.3);
}
.banner-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
}
.banner-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}
.banner-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
}
.banner-content .btn-lg { padding: 14px 36px; font-size: 16px; }

/* Swiper Customization - Hero */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(255,255,255,0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: var(--primary);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 16px; font-weight: 700; }

.hero-swiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ===================== ABOUT ============================== */
.about-area { background: #fff; }
.about-img-placeholder {
    height: 450px;
    background: linear-gradient(135deg, #e8f0f7, #c5d8ed);
}
.about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-hover);
}
.about-badge h3 { color: #fff; font-size: 32px; margin: 0; }
.about-badge p { color: rgba(255,255,255,0.9); margin: 0; font-size: 13px; }

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { font-size: 18px; flex-shrink: 0; }

.video-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--secondary);
}
.video-btn:hover { color: var(--primary); }
.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    padding-left: 4px;
    box-shadow: 0 0 0 8px rgba(255,92,1,0.2);
}

.instant-call small { color: var(--text-muted); font-size: 13px; display: block; }
.instant-call h5 a { color: var(--secondary); font-size: 20px; }
.instant-call h5 a:hover { color: var(--primary); }

.provider-logo-box {
    background: rgba(255,92,1,0.05);
    border: 1px solid rgba(255,92,1,0.2);
    border-radius: 8px;
    padding: 10px 5px;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    color: var(--secondary);
    transition: var(--transition);
}
.provider-logo-box:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===================== SERVICES ======================== */
.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.service-img { height: 200px; overflow: hidden; }
.service-img-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-primary-light { background: rgba(255,92,1,0.07); }
.service-content { padding: 25px; }
.service-content h4 { font-size: 20px; margin-bottom: 10px; }
.service-content h4 a { color: var(--secondary); }
.service-content h4 a:hover { color: var(--primary); }
.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    margin-top: 10px;
}
.service-link:hover { gap: 10px; }

/* Services Swiper */
.services-swiper .swiper-pagination-bullet-active { background: var(--primary); }

/* ===================== CTA BANNER ====================== */
.cta-area {
    background: var(--primary) !important;
    padding: 25px 0;
}
.cta-area p { font-size: 18px; font-weight: 600; }

/* ===================== MISSION TABS ==================== */
.mission-area { background: #fff; }
.mission-img-placeholder {
    height: 500px;
    background: linear-gradient(135deg, var(--secondary), #2d4a6b);
    border-radius: var(--radius);
}

.mission-tabs {
    border: none;
    gap: 5px;
    margin-bottom: 0;
}
.mission-tabs .nav-link {
    border: 2px solid var(--border);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    background: #fff;
    transition: var(--transition);
}
.mission-tabs .nav-link.active,
.mission-tabs .nav-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.mission-tab-content {
    padding: 30px;
    background: #f8f9fa;
    border-radius: var(--radius);
    margin-top: 20px;
}
.mission-tab-content h4 a { color: var(--secondary); }
.values-list { columns: 2; gap: 20px; }
.values-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-weight: 500;
    break-inside: avoid;
}

/* ===================== PARTNERS ======================== */
.partners-area { background: var(--light-bg); }
.partner-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.partner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.partner-logo-box {
    width: 80px;
    height: 80px;
    background: rgba(255,92,1,0.07);
    border: 2px solid rgba(255,92,1,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.partner-initials {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
}
.partner-info h5 a { color: var(--secondary); }
.partner-info h5 a:hover { color: var(--primary); }
.read-link {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
}
.read-link:hover { color: var(--primary-dark); }

.partners-swiper .swiper-button-next,
.partners-swiper .swiper-button-prev {
    color: var(--primary);
}

/* ===================== STATS =========================== */
.stats-area { background: var(--secondary) !important; }
.stat-card {
    padding: 40px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}
.stat-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
}
.stat-card h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}
.stat-card ul li { color: rgba(255,255,255,0.7); font-size: 15px; }
.stats-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.4); opacity: 1; }
.stats-swiper .swiper-pagination-bullet-active { background: var(--primary); }

/* ===================== GROWTH CTA ====================== */
.growth-cta { background: var(--primary) !important; }
.growth-cta h2 { font-size: 40px; color: #fff !important; }

/* ===================== TEAM ============================ */
.team-card { transition: var(--transition); }
.team-card:hover { transform: translateY(-5px); }
.team-img-placeholder {
    width: 120px;
    height: 120px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--border);
}
.team-role { font-size: 14px; font-weight: 600; }
.team-social { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.team-social a {
    width: 35px;
    height: 35px;
    background: var(--light-bg);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}
.team-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* ===================== WHY CHOOSE US =================== */
.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.why-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.why-card h5 { font-size: 16px; margin: 10px 0 8px; }
.why-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ===================== TESTIMONIALS ==================== */
.rating-box h2 { font-size: 60px; font-weight: 800; color: var(--secondary); }
.rating-box h2 small { font-size: 24px; color: var(--text-muted); }
.rating-box p { font-size: 14px; color: var(--text-muted); margin-top: -5px; }
.avatar-group { display: flex; align-items: center; }
.avatar-item { margin-right: -8px; }

.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}
.quote-icon { font-size: 28px; margin-bottom: 15px; }
.testimonial-card p { color: var(--text-muted); font-style: italic; }
.testimonial-card h6 { font-weight: 700; margin: 0; }

.swiper-btn {
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border: none;
    border-radius: 50%;
    color: var(--secondary);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ===================== BLOG ============================= */
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.blog-img { overflow: hidden; height: 220px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-content { padding: 25px; }
.blog-meta { font-size: 13px; color: var(--text-muted); }
.blog-meta span i { color: var(--primary); }
.blog-meta a { color: var(--text-muted); }
.blog-content h5 { font-size: 17px; margin-bottom: 0; }
.blog-content h5 a { color: var(--secondary); }
.blog-content h5 a:hover { color: var(--primary); }

.featured-post .blog-card { display: flex; flex-direction: row; }
.featured-post .blog-img { width: 350px; flex-shrink: 0; height: auto; }
.featured-post .blog-img img { height: 100%; }

/* ===================== FOOTER ========================== */
.site-footer { background: #0f1c2a !important; }

.footer-newsletter {
    background: var(--secondary);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-img { max-height: 70px; filter: brightness(0) invert(1); }
.newsletter-box h4 { color: #fff; font-size: 20px; margin-bottom: 15px; }
.newsletter-form .input-group { max-width: 500px; margin-left: auto; }
.newsletter-form .form-control {
    padding: 14px 20px;
    border: none;
    border-radius: 6px 0 0 6px;
    font-family: 'Urbanist', sans-serif;
}
.newsletter-form .btn { padding: 14px 24px; border-radius: 0 6px 6px 0; }

.footer-main { padding: 80px 0 40px; }

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}
.footer-widget p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.8; }
.footer-widget .social-list .list-inline-item a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}
.footer-widget .social-list .list-inline-item a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-links li {
    margin-bottom: 10px;
}
.footer-links li a {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--primary);
}
.footer-links li a:hover { color: var(--primary); padding-left: 5px; }

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.6;
}
.contact-info li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.contact-info li a { color: rgba(255,255,255,0.65); }
.contact-info li a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.5); margin: 0; font-size: 14px; }
.footer-bottom a { color: var(--primary); font-weight: 600; }

/* ===================== PAGE TEMPLATES ================== */
.page-content-area { padding: 80px 0; }

/* Archive / Blog */
.blog-area-inner { padding: 80px 0; }
.blog-item { margin-bottom: 40px; }

/* Single Post */
.post-thumbnail img { width: 100%; border-radius: var(--radius); margin-bottom: 30px; }
.entry-title { font-size: 36px; }
.post-meta { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.post-meta span { margin-right: 20px; }
.post-meta span i { color: var(--primary); margin-right: 5px; }
.entry-content { line-height: 1.9; }
.entry-content h2, .entry-content h3 { margin-top: 30px; }

/* 404 */
body.error404 {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

body.error404 .es-error-page {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.error-404 {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    text-align: center;
}

.error-404__inner {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.error-404 .error-code {
    font-size: clamp(5rem, 18vw, 9.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.35em;
}

.error-404 h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
}

.error-404 .lead {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.error-404 .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ===================== BREADCRUMB ====================== */
.breadcrumb-area {
    background: var(--secondary);
    padding: 60px 0;
    text-align: center;
}
.breadcrumb-area h1 { color: #fff; font-size: 36px; }
.breadcrumb-nav { display: flex; justify-content: center; gap: 10px; }
.breadcrumb-nav a { color: var(--primary); }
.breadcrumb-nav span { color: rgba(255,255,255,0.6); }

/* ===================== SCROLL TO TOP =================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255,92,1,0.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ===================== RESPONSIVE ====================== */
@media (max-width: 1199px) {
    .section-title h2 { font-size: 36px; }
    .banner-content h1 { font-size: 46px; }
    .banner-content h2 { font-size: 34px; }
}

@media (max-width: 991px) {
    .default-padding { padding: 70px 0; }
    .banner-slide { height: 550px; }
    .banner-content h1 { font-size: 38px; }
    .banner-content h2 { font-size: 28px; }
    .section-title h2 { font-size: 30px; }
    /* top bar oculto en móvil: header.css */
    .about-badge { right: 0; }
    .featured-post .blog-card { flex-direction: column; }
    .featured-post .blog-img { width: 100%; height: 250px; }
    .site-navbar .navbar-collapse { background: #fff; padding: 20px; border-top: 1px solid var(--border); }
    .navbar-right-info { flex-direction: column; align-items: flex-start !important; margin-top: 15px; }
}

@media (max-width: 767px) {
    .default-padding { padding: 60px 0; }
    .banner-slide { height: 480px; }
    .banner-content h1 { font-size: 30px; }
    .banner-content h2 { font-size: 22px; }
    .banner-buttons .btn { padding: 10px 20px; font-size: 14px; }
    .section-title h2 { font-size: 26px; }
    .growth-cta h2 { font-size: 26px; }
    .error-404 .error-code { font-size: clamp(4.5rem, 22vw, 6.5rem); }
    .values-list { columns: 1; }
}

@media (max-width: 575px) {
    .banner-content h1 { font-size: 26px; }
    .banner-content h2 { font-size: 20px; }
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev { display: none; }
}
