/* ===== VARIABLES GLOBALES ===== */
:root {
    --primary-color: #e67e22 !important;
    --primary-dark: #d35400 !important;
    --secondary-color: #34495e;
    --dark-bg: #0a1929;
    --dark-blue: #1a2634;
    --text-light: #ffffff;
    --text-gray: #b0c4de;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===== RESET Y ESTILOS BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER Y NAVEGACIÓN ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 5px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    max-height: 60px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    max-height: 50px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 5px 0;
}

.nav-link:hover {
    color: #e67e22 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e67e22 !important;
    transition: var(--transition);
}

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

.nav-link.active {
    color: #e67e22 !important;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Selector de idioma */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.language-btn:hover {
    border-color: #e67e22 !important;
    color: #e67e22 !important;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: var(--shadow);
    min-width: 150px;
    display: none;
    z-index: 1000;
    margin-top: 5px;
}

.language-dropdown.show {
    display: block !important;
}

.language-option {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--text-dark);
}

.language-option:hover {
    background-color: #f5f5f5;
    color: #e67e22 !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 0;
    padding-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center !important;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
    text-align: center !important;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    text-align: center !important;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    justify-content: center !important;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #e67e22 !important;
    color: white;
}

.btn-primary:hover {
    background-color: #d35400 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

/* ===== PRODUCTOS SECTION ===== */
.products-section {
    padding: 80px 0;
    background-color: white;
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px;
    height: 3px;
    background-color: #e67e22 !important;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    text-align: center !important;
}

.section-title.left {
    text-align: left !important;
}

.section-title.left::after {
    left: 0 !important;
    transform: none !important;
    background-color: #e67e22 !important;
}

.products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    padding: 20px 0 !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    text-align: left;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.product-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.product-whatsapp:hover {
    background-color: #128C7E;
}

/* ===== SERVICIOS SECTION ===== */
.services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: #e67e22 !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #e67e22 !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #e67e22 !important;
    color: white !important;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    height: 50vh;
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/about-hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px;
    color: white;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.about-hero-breadcrumb {
    font-size: 1rem;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.about-hero-breadcrumb a {
    color: #e67e22 !important;
    transition: var(--transition);
}

.about-hero-breadcrumb a:hover {
    color: white;
}

/* ===== STORY SECTION ===== */
.about-story {
    padding: 80px 0;
    background-color: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content {
    padding-right: 30px;
}

.story-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-align: left;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #e67e22 !important;
}

.story-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e67e22 !important;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-image:hover img {
    transform: scale(1.05);
}

/* ===== MISSION, VISION, VALUES SECTION ===== */
.mission-vision-values {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: #28394d;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #e67e22 !important; 
}

/* Eliminamos las reglas individuales */
/* .mission-card::before,
.vision-card::before,
.values-card::before {
    background: linear-gradient(90deg, #070fad, #28394d) !important;
} */

.mvv-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(26, 20, 190, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #28394d !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Eliminamos los colores individuales */
.mission-card .mvv-icon,
.vision-card .mvv-icon,
.values-card .mvv-icon {
    background-color: rgba(26, 20, 190, 0.1);
    color: #28394d !important;
}

.mvv-card:hover .mvv-icon {
    background-color: #28394d !important;
    color: white !important;
    transform: rotateY(360deg);
}

/* Eliminamos las reglas hover individuales */
.mission-card:hover .mvv-icon,
.vision-card:hover .mvv-icon,
.values-card:hover .mvv-icon {
    background-color: #28394d !important;
    color: white !important;
}

.mvv-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mvv-text {
    color: #666;
    line-height: 1.8;
    text-align: center;
    flex-grow: 1;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
    font-size: 1rem;
}

.values-list li i {
    color: #28394d !important;
    font-size: 1.2rem;
}

/* ===== DIFFERENTIALS SECTION ===== */
.differentials {
    padding: 80px 0;
    background-color: white;
}

.section-title.centered {
    text-align: center;
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: #e67e22 !important;
}

.section-subtitle.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.differential-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.differential-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: #e67e22 !important;
}

.differential-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #e67e22 !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.differential-item:hover .differential-icon {
    background-color: #e67e22 !important;
    color: white !important;
}

.differential-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.differential-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.about-cta {
    padding: 80px 0;
   /* background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-blue) 100%);*/
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

/* ===== FOOTER MODERNO ===== */
.footer {
    background-color: #0a1929 !important;
    color: #b0c4de !important;
    position: relative;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
}

.footer-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('../img/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-about .footer-logo-img {
    max-height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #9aa9b9 !important;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-title {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #e67e22 !important;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #b0c4de !important;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-link:hover {
    color: #e67e22 !important;
    transform: translateX(5px);
}

.footer-list-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.footer-icon {
    color: #e67e22 !important;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.footer-address {
    line-height: 1.4;
    color: #b0c4de !important;
}

.footer-social-text {
    font-size: 0.9rem;
    color: #9aa9b9 !important;
    margin-bottom: 15px;
    text-align: left;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: #e67e22 !important;
    color: #0a1929 !important;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #778899 !important;
}

.footer-bottom p {
    margin: 0;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-30px);
    }
    60% {
        transform: translateX(-50%) translateY(-15px);
    }
}

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

/* ===== MEDIA QUERIES ===== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-hero-title {
        font-size: 3rem;
    }
    
    .story-grid {
        gap: 30px;
    }
    
    .story-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    /* Header en modo responsive - fondo blanco */
    .header {
        background-color: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .header .logo img {
        filter: none;
    }
    
    .header .nav-link {
        color: var(--text-dark) !important;
    }
    
    body {
        padding-top: 80px;
    }
    
    /* Menú móvil */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #ffffff !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 0;
        transition: left 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-item {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        animation: slideIn 0.3s ease forwards;
    }

    .nav-menu .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu .nav-item:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu .nav-item:nth-child(6) { animation-delay: 0.6s; }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        display: block;
        color: var(--text-dark) !important;
    }
    
    .nav-menu .nav-link:hover {
        color: #e67e22 !important;
    }
    
    .nav-menu .nav-link::after {
        background-color: #e67e22 !important;
    }

    .menu-toggle {
        display: block !important;
        background: transparent;
        border: none;
        color: var(--text-dark) !important;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1000;
    }

    .language-selector {
        margin-right: 0.5rem;
    }

    .nav-actions {
        display: flex;
        align-items: center;
    }
    
    .language-btn {
        color: var(--text-dark) !important;
        border-color: #ddd !important;
    }
    
    .language-btn:hover {
        border-color: #e67e22 !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }
    
    .footer-col-about {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-col-about .footer-logo-img {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-about-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        padding-right: 0;
        text-align: center;
    }
    
    .story-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-stats {
        justify-content: center;
    }
    
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-col-about {
        grid-column: span 1;
    }
    
    .footer-col {
        text-align: center !important;
    }
    
    .footer-title {
        text-align: center !important;
    }
    
    .footer-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .footer-list {
        text-align: center !important;
    }
    
    .footer-list-contact li {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .footer-social-text {
        text-align: center !important;
    }
    
    .footer-social-icons {
        justify-content: center !important;
    }
    
    .about-hero {
        margin-top: 70px;
        min-height: 350px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        padding: 0 !important;
    }
}

/* ===== UTILIDADES ===== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}

.mb-4 {
    margin-bottom: 40px;
}

.pt-4 {
    padding-top: 40px;
}

.pb-4 {
    padding-bottom: 40px;
}

.catalog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

.catalog-modal.active {
    display: flex;
}

.catalog-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
}

.catalog-modal-container {
    position: relative;
    background: #28394d;  /* Azul primário */
    width: 90%;
    max-width: 400px;  /* Tamanho reduzido */
    border-radius: 15px;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.catalog-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.catalog-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
    opacity: 1;
}

.catalog-modal-logo {
    text-align: center;
    margin-bottom: 15px;
}

.catalog-modal-logo img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1); /* Torna o logo branco se necessário */
}

.catalog-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.catalog-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.catalog-modal-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
}

.catalog-modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.catalog-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.catalog-form-label {
    color: white;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.catalog-form-input {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Roboto', sans-serif;
}

.catalog-form-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.catalog-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.catalog-form-input:-webkit-autofill,
.catalog-form-input:-webkit-autofill:hover,
.catalog-form-input:-webkit-autofill:focus {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px #28394d inset;
    transition: background-color 5000s ease-in-out 0s;
}

.catalog-form-message {
    padding: 8px;
    border-radius: 5px;
    font-size: 13px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    display: none;
}

.catalog-form-message.success {
    display: block;
    background: rgba(46, 213, 115, 0.2);
    color: #d4edda;
    border: 1px solid #2ed573;
}

.catalog-form-message.error {
    display: block;
    background: rgba(255, 71, 87, 0.2);
    color: #ffe6e6;
    border: 1px solid #ff4757;
}

.catalog-form-btn {
    background: white;
    color: #0047ab;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.catalog-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #f0f0f0;
}

.catalog-form-btn:active {
    transform: translateY(0);
}

.catalog-form-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-loading i {
    font-size: 16px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .catalog-modal-container {
        padding: 20px;
        max-width: 90%;
    }
    
    .catalog-modal-logo img {
        max-width: 120px;
    }
    
    .catalog-modal-title {
        font-size: 20px;
    }
    
    .catalog-modal-subtitle {
        font-size: 13px;
    }
    
    .catalog-form-input {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .catalog-form-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}