/* CSS Variables for Premium Theme */
:root {
    --primary-color: #63a70a;
    --primary-dark: #4b8007;
    --secondary-color: #0d1b2a;
    --text-color: #333333;
    --text-light: #777777;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --font-main: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

.section-padding {
    padding: 80px 0;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(99, 167, 10, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.badge-dark {
    background-color: rgba(29, 29, 27, 0.05);
    color: var(--secondary-color);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(99, 167, 10, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 167, 10, 0.5);
    color: var(--bg-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--secondary-color);
}

.btn-primary.large, .btn-secondary.large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.w-100 {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--bg-white);
    letter-spacing: -1px;
}

.navbar.scrolled .logo {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--bg-white);
}

.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--bg-white);
    cursor: pointer;
}
.navbar.scrolled .menu-toggle {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('hero-bg.png'); /* The generated image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(29, 29, 27, 0.6) 50%, rgba(29, 29, 27, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--bg-white);
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Tracking Widget */
.tracking-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.tracking-widget h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tracking-widget h3 i {
    color: var(--primary-color);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-family: var(--font-secondary);
    color: var(--secondary-color);
    outline: none;
    transition: var(--transition);
}

.input-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 167, 10, 0.1);
}

/* Features Section */
.features {
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.feature-card .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(99, 167, 10, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--bg-white);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Section */
.section-header {
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    position: relative;
    background: var(--bg-white);
    z-index: 2;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-main);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--secondary-color);
    background-image: linear-gradient(135deg, var(--secondary-color) 0%, #333333 100%);
    padding: 80px 0;
    color: var(--bg-white);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background-color: #111111;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--bg-white);
    margin-bottom: 20px;
    display: inline-block;
}

.brand-col p {
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 25px 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .tracking-widget {
        max-width: 500px;
        margin: 40px auto 0;
        text-align: left;
    }
}

@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.4s ease-in-out;
    }
    
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-link {
        color: var(--secondary-color);
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .nav-menu .btn-primary {
        width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 1000; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 2px 2px 15px rgba(0,0,0,0.3); color: white; }

.page-header h1, .page-header p { color: #ffffff !important; }
.page-header h1 { text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }

.navbar .logo img, .footer .logo img { background: white; padding: 10px; border-radius: 8px; height: 80px !important; }
.footer .logo img { height: 90px !important; }
/* New Styles for Redesign */
.section-dark { background-color: var(--secondary-color); color: white; padding: 60px 0; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-light { background-color: #f4f7f6; padding: 60px 0; }
.dark-banner { background-color: var(--secondary-color); color: white; padding: 40px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; margin: 40px 0; }
.dark-banner .banner-text h3 { color: white; margin-bottom: 5px; font-size: 1.8rem; }
.dark-banner .banner-text p { opacity: 0.9; margin: 0; }
@media (max-width: 768px) { .dark-banner { flex-direction: column; text-align: center; gap: 20px; } }

/* Hero redesign */
.hero-new { position: relative; padding: 150px 0 100px; background: url('hero-bg.png') center/cover; color: white; }
.hero-new-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(11, 28, 44, 0.95) 0%, rgba(11, 28, 44, 0.7) 50%, rgba(11, 28, 44, 0.2) 100%); z-index: 1; }
.hero-new .container { position: relative; z-index: 2; display: flex; justify-content: space-between; }
.hero-new-content { max-width: 600px; }
.hero-new-content h1 { font-size: 3.5rem; color: white; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.hero-new-content h1 span { color: var(--primary-color); }
.hero-new-content .subtitle { font-size: 1.2rem; margin-bottom: 30px; }
.hero-contact-badge { display: inline-flex; align-items: center; gap: 15px; margin-top: 20px; }
.hero-contact-badge i { font-size: 3rem; color: var(--primary-color); }
.hero-contact-badge h3 { color: white; font-size: 2.5rem; margin: 0; line-height: 1; }
.hero-contact-badge span { display: block; font-size: 0.9rem; font-weight: normal; color: var(--primary-color); }

/* Quick Features */
.quick-features-banner { background: white; border-radius: 50px; padding: 15px 40px; display: flex; justify-content: space-between; box-shadow: var(--shadow-lg); margin-top: -40px; position: relative; z-index: 10; margin-bottom: 60px; }
.qf-item { display: flex; align-items: center; gap: 15px; }
.qf-item i { font-size: 2rem; color: var(--primary-color); }
.qf-item div { text-align: left; }
.qf-item h4 { font-size: 1rem; margin: 0; }
.qf-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
@media (max-width: 992px) { .quick-features-banner { flex-direction: column; border-radius: 20px; gap: 20px; padding: 30px; } }

/* Services Bar */
.services-bar { background: var(--secondary-color); border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; margin-bottom: 60px; box-shadow: var(--shadow-md); }
.sb-item { padding: 30px 20px; border-right: 1px solid rgba(255,255,255,0.1); display: flex; gap: 15px; color: white; align-items: flex-start; }
.sb-item:last-child { border-right: none; }
.sb-item i { font-size: 2.5rem; color: var(--primary-color); }
.sb-item h4 { color: white; font-size: 1rem; margin-bottom: 5px; text-transform: uppercase; }
.sb-item p { font-size: 0.85rem; opacity: 0.8; margin: 0; line-height: 1.4; }
@media (max-width: 992px) { .services-bar { grid-template-columns: repeat(2, 1fr); } .sb-item { border-bottom: 1px solid rgba(255,255,255,0.1); } }
@media (max-width: 768px) { .services-bar { grid-template-columns: 1fr; } }

/* Destinations List */
.destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.dest-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); display: flex; }
.dest-img { width: 40%; background: #ddd; min-height: 120px; background-size: cover; background-position: center; }
.dest-info { width: 60%; padding: 15px; }
.dest-info h4 { font-size: 1rem; margin-bottom: 10px; text-transform: uppercase; }
.dest-info ul { padding-left: 15px; margin: 0; }
.dest-info ul li { font-size: 0.85rem; color: var(--text-light); list-style-type: disc; }
@media (max-width: 992px) { .destinations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .destinations-grid { grid-template-columns: 1fr; } }

/* Why choose us */
.why-choose-box { background: #f4f7f6; border-radius: 12px; padding: 40px; display: flex; align-items: center; gap: 40px; margin-bottom: 60px; }
.why-title h3 { font-size: 1.5rem; white-space: nowrap; margin: 0; }
.why-icons { display: flex; justify-content: space-between; flex-grow: 1; }
.why-icon { text-align: center; }
.why-icon i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 10px; }
.why-icon p { font-size: 0.9rem; font-weight: 600; margin: 0; line-height: 1.2; }
@media (max-width: 992px) { .why-choose-box { flex-direction: column; } .why-icons { flex-wrap: wrap; gap: 20px; justify-content: center; } }

/* Stats Bar */
.stats-bar { background: var(--secondary-color); border-radius: 12px; display: flex; justify-content: space-around; padding: 40px 20px; color: white; margin-bottom: 60px; }
.stat-item { display: flex; align-items: center; gap: 20px; }
.stat-item i { font-size: 3rem; color: var(--primary-color); }
.stat-info h3 { color: var(--primary-color); font-size: 2rem; margin: 0; line-height: 1; }
.stat-info p { margin: 0; font-size: 1rem; }
@media (max-width: 992px) { .stats-bar { flex-direction: column; gap: 30px; align-items: center; } }

/* Service Page Cards */
.services-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: -60px; position: relative; z-index: 10; margin-bottom: 60px; }
.service-card-new { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.sc-img { height: 180px; background-size: cover; background-position: center; position: relative; }
.sc-icon-badge { position: absolute; bottom: -25px; left: 20px; width: 60px; height: 60px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); color: var(--primary-color); font-size: 1.8rem; }
.sc-content { padding: 40px 20px 20px; flex-grow: 1; display: flex; flex-direction: column; }
.sc-content h3 { font-size: 1.2rem; margin-bottom: 15px; }
.sc-content p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; flex-grow: 1; }
.sc-link { color: var(--primary-color); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.sc-link i { font-size: 1.2rem; }
@media (max-width: 1200px) { .services-page-grid { grid-template-columns: repeat(2, 1fr); margin-top: 30px; } }
@media (max-width: 768px) { .services-page-grid { grid-template-columns: 1fr; } }

/* Page Banner (Servicios) */
.page-banner-dark { background: var(--secondary-color); position: relative; overflow: hidden; color: white; padding: 120px 0 100px; }
.pb-bg { position: absolute; right: 0; top: 0; width: 60%; height: 100%; background: url('hero-bg.png') center/cover; }
.pb-bg::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: linear-gradient(to right, var(--secondary-color) 0%, rgba(11,28,44,0) 100%); }
.pb-content { position: relative; z-index: 2; max-width: 500px; }
.pb-content h1 { font-size: 3rem; color: white; margin-bottom: 15px; }
.pb-content h1 span { color: var(--primary-color); }
.pb-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; }
.pb-features { display: flex; gap: 20px; flex-wrap: wrap; }
.pb-feature { display: flex; align-items: center; gap: 10px; }
.pb-feature i { color: var(--primary-color); font-size: 1.5rem; }
.pb-feature span { font-size: 0.9rem; font-weight: 500; }
@media (max-width: 992px) { .pb-bg { width: 100%; } .pb-bg::before { background: linear-gradient(to right, rgba(11,28,44,0.9) 0%, rgba(11,28,44,0.7) 100%); } }

/* Nosotros Split Banner */
.nosotros-split { display: flex; align-items: stretch; background: var(--secondary-color); color: white; }
.ns-content { width: 50%; padding: 120px 5% 100px; }
.ns-content h5 { color: var(--primary-color); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.ns-content h1 { font-size: 3rem; color: white; margin-bottom: 20px; line-height: 1.1; }
.ns-content h1 span { color: var(--primary-color); }
.ns-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 40px; }
.ns-features { display: flex; gap: 20px; flex-wrap: wrap; }
.ns-feature { display: flex; align-items: center; gap: 10px; width: calc(50% - 10px); }
.ns-feature i { font-size: 2rem; color: var(--primary-color); }
.ns-img { width: 50%; background: url('distribution_warehouse.jpg') center/cover; position: relative; }
.ns-img::before { content: ''; position: absolute; left: 0; top: 0; width: 150px; height: 100%; background: linear-gradient(to right, var(--secondary-color) 0%, transparent 100%); }
@media (max-width: 992px) { .nosotros-split { flex-direction: column; } .ns-content, .ns-img { width: 100%; } .ns-img { height: 400px; } .ns-img::before { display: none; } }

/* Nosotros Stats Box */
.stats-box-white { background: white; border-radius: 12px; box-shadow: var(--shadow-lg); padding: 40px; display: flex; justify-content: space-around; text-align: center; margin-bottom: 20px; }
.sbw-item i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 10px; }
.sbw-item h3 { font-size: 2rem; margin: 0; color: var(--secondary-color); }
.sbw-item p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.stats-alert { background: var(--secondary-color); border-radius: 12px; padding: 20px 40px; color: white; display: flex; align-items: center; gap: 20px; }
.stats-alert i { font-size: 2.5rem; color: var(--primary-color); }
.stats-alert p { margin: 0; font-size: 1.1rem; }
.stats-alert span { color: var(--primary-color); font-weight: 600; }

/* Mission / Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 60px 0; }
.mv-card { background: #f9f9f9; border-radius: 12px; padding: 40px; display: flex; gap: 30px; }
.mv-icon { width: 80px; height: 80px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.mv-icon i { font-size: 3rem; color: var(--primary-color); }
.mv-content h4 { color: var(--primary-color); text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; }
.mv-content p { font-size: 0.95rem; margin-bottom: 20px; }
.mv-list { list-style: none; padding: 0; }
.mv-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 15px; font-size: 0.9rem; }
.mv-list li i { color: var(--primary-color); font-size: 1.2rem; margin-top: 2px; }
@media (max-width: 992px) { .mv-grid { grid-template-columns: 1fr; } .mv-card { flex-direction: column; } }

/* Valores */
.valores-section { text-align: center; margin: 60px 0; }
.valores-section h3 { margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1px; }
.valores-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.valor-item { padding: 20px 10px; border-right: 1px solid #eee; }
.valor-item:last-child { border-right: none; }
.valor-item i { font-size: 3rem; color: var(--primary-color); margin-bottom: 15px; }
.valor-item h5 { margin-bottom: 10px; font-size: 1.1rem; }
.valor-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.4; }
@media (max-width: 992px) { .valores-grid { grid-template-columns: repeat(2, 1fr); } .valor-item { border-right: none; border-bottom: 1px solid #eee; } }

/* Agencias Cards */
.agencias-grid-new { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -60px; position: relative; z-index: 10; margin-bottom: 60px; }
.ag-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.ag-img { height: 180px; background-size: cover; background-position: center; }
.ag-content { padding: 25px 20px; flex-grow: 1; }
.ag-content h4 { font-size: 1.2rem; margin-bottom: 20px; }
.ag-list { list-style: none; padding: 0; margin-bottom: 20px; }
.ag-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 15px; font-size: 0.9rem; color: var(--text-color); }
.ag-list li i { color: var(--primary-color); font-size: 1.2rem; flex-shrink: 0; }
.ag-btn { display: block; width: 100%; text-align: center; background: rgba(99,167,10,0.1); color: var(--primary-dark); padding: 12px; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; }
@media (max-width: 1200px) { .agencias-grid-new { grid-template-columns: repeat(2, 1fr); margin-top: 30px; } }
@media (max-width: 768px) { .agencias-grid-new { grid-template-columns: 1fr; } }

/* Agencias Banner Red */
.ag-red-banner { background: #f4f7f6; border-radius: 12px; padding: 30px 40px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 60px; }
.ag-red-text { display: flex; align-items: center; gap: 20px; }
.ag-red-text i { font-size: 3rem; color: var(--primary-color); }
.ag-red-text h4 { margin: 0 0 5px; font-size: 1.3rem; }
.ag-red-text p { margin: 0; color: var(--text-light); }
.ag-red-text span { display: block; color: var(--primary-color); font-weight: 600; margin-top: 5px; }
.ag-red-graphics { flex-grow: 1; text-align: right; padding-left: 40px; }
.ag-red-graphics img { max-width: 100%; height: 40px; opacity: 0.6; }
@media (max-width: 992px) { .ag-red-banner { flex-direction: column; text-align: center; } .ag-red-text { flex-direction: column; } .ag-red-graphics { display: none; } }
