/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a202c;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
        linear-gradient(to bottom, #ffffff, #f8fafc);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(59, 130, 246, 0.01) 80px,
            rgba(59, 130, 246, 0.01) 160px
        );
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

/* Cores da Marca Econorte */
:root {
    /* Azul Econorte - da Logo */
    --econorte-blue-50: #e6f0ff;
    --econorte-blue-100: #b3d1ff;
    --econorte-blue-500: #0066cc;
    --econorte-blue-600: #0052a3;
    --econorte-blue-700: #00478f;
    --econorte-blue-800: #003d7a;
    --econorte-blue-900: #002f5c;
    
    /* Verde Econorte - da Logo */
    --econorte-green-50: #e6f9f0;
    --econorte-green-100: #b3efd1;
    --econorte-green-300: #66d9a8;
    --econorte-green-500: #00b359;
    --econorte-green-600: #009647;
    --econorte-green-700: #00803d;
    --econorte-green-800: #006b33;
    --econorte-green-900: #005229;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.min-h-screen {
    min-height: 100vh;
}

.bg-white {
    background-color: #ffffff;
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, var(--econorte-blue-600), var(--econorte-blue-700));
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--econorte-blue-700), var(--econorte-blue-800));
    transform: translateY(-2px);
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.2),
        0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--econorte-green-600), var(--econorte-green-700));
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-secondary::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.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--econorte-green-700), var(--econorte-green-800));
    transform: translateY(-2px);
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.2),
        0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.1);
}

/* Header Styles */
#header {
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.top-bar {
    background: linear-gradient(to right, var(--econorte-blue-800), var(--econorte-green-700));
    color: white;
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-slogan {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 640px) {
    .top-bar-slogan {
        display: flex;
    }
    .top-bar-location {
        display: none;
    }
}

.top-bar-location {
    display: block;
}

@media (min-width: 640px) {
    .top-bar-location {
        display: none;
    }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.top-bar-whatsapp:hover {
    color: var(--econorte-green-300);
}

.whatsapp-text {
    display: none;
}

@media (min-width: 640px) {
    .whatsapp-text {
        display: block;
    }
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    position: relative;
}

@media (min-width: 768px) {
    .header-content {
        padding: 1rem 0;
    }
}

.logo-section {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .logo-section {
        margin-left: -2.5rem;
    }
}

.logo-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-button:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .logo-icon {
        width: 7rem;
        height: 7rem;
    }
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.logo-text {
    text-align: left;
}

.logo-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--econorte-blue-600), var(--econorte-green-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
}

.nav-links {
    margin-left: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 2rem;
}

.nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-700);
}

.nav-link:hover {
    color: var(--econorte-blue-600);
    border-bottom-color: var(--econorte-green-500);
}

.nav-link.active {
    color: var(--econorte-blue-600);
    border-bottom-color: var(--econorte-blue-600);
}

/* Desktop WhatsApp */
.desktop-whatsapp {
    display: none;
}

@media (min-width: 768px) {
    .desktop-whatsapp {
        display: block;
    }
}

/* Mobile Menu */
.mobile-menu-button {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

.menu-toggle {
    color: var(--gray-700);
    padding: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
}

.menu-toggle:hover {
    color: var(--econorte-blue-600);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-nav.open {
    display: block;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav-content {
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    background: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    color: var(--gray-700);
    min-height: 44px;
    touch-action: manipulation;
}

.mobile-nav-link:hover {
    color: var(--econorte-blue-600);
    background: var(--gray-100);
}

.mobile-nav-link.active {
    color: var(--econorte-blue-600);
    background: var(--econorte-blue-50);
}

.mobile-whatsapp-btn {
    margin-top: 1rem;
    justify-content: center;
}

/* Page System */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f0fdf7 100%);
    color: #0f172a;
    padding: 6rem 0 8rem;
    overflow: hidden;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 179, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.6;
    }
    50% { 
        transform: translate(-30px, 30px) scale(1.1); 
        opacity: 0.8;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-decoration-1 {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 8rem;
    height: 8rem;
    color: var(--econorte-green-300);
    opacity: 0.2;
}

.hero-decoration-2 {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    width: 6rem;
    height: 6rem;
    color: var(--econorte-blue-300);
    opacity: 0.2;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.3fr 1fr;
        gap: 5rem;
    }
}

@media (min-width: 1280px) {
    .hero-grid {
        gap: 6rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@media (max-width: 1023px) {
    .hero-content {
        align-items: center;
        text-align: center;
    }
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-logo-image {
    max-width: 280px;
    height: auto;
    object-fit: contain;
    filter: 
        drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3))
        drop-shadow(0 0 30px rgba(16, 185, 129, 0.2));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-logo-image:hover {
    transform: scale(1.08) translateY(-5px);
    filter: 
        drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4))
        drop-shadow(0 0 40px rgba(16, 185, 129, 0.4))
        drop-shadow(0 0 60px rgba(59, 130, 246, 0.3));
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .hero-logo-image {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .hero-logo-image {
        max-width: 180px;
    }
}

.hero-logo {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo i {
    width: 2rem;
    height: 2rem;
    color: var(--econorte-green-300);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #bfdbfe;
    font-weight: 500;
}

.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #003d7a;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 3.8rem;
    }
}

@media (min-width: 1024px) {
    .hero-heading {
        font-size: 5rem;
        text-align: left;
    }
}

@media (min-width: 1280px) {
    .hero-heading {
        font-size: 5.5rem;
    }
}

.text-highlight {
    background: linear-gradient(135deg, #00b359 0%, #009647 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-weight: 900;
}

.text-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 14px;
    background: linear-gradient(90deg, rgba(0, 179, 89, 0.2) 0%, rgba(0, 150, 71, 0.15) 100%);
    z-index: -1;
    border-radius: 6px;
    transform: skewX(-2deg);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
    font-weight: 400;
    max-width: 620px;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        text-align: left;
        font-size: 1.3rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

@media (max-width: 1023px) {
    .hero-buttons {
        justify-content: center;
    }
}

.btn-hero-primary {
    background: linear-gradient(135deg, #00b359 0%, #009647 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 20px rgba(0, 179, 89, 0.35),
        0 2px 8px rgba(0, 179, 89, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #009647 0%, #00803d 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 28px rgba(0, 179, 89, 0.45),
        0 4px 12px rgba(0, 179, 89, 0.3);
}

.btn-hero-secondary {
    border: 2px solid #0066cc;
    color: #0066cc;
    background: white;
    padding: 1.25rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-hero-secondary:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(0, 102, 204, 0.35),
        0 2px 8px rgba(0, 102, 204, 0.2);
}

.hero-image {
    display: block;
    width: 100%;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-image {
        order: 2;
    }
    
    .hero-content {
        order: 1;
    }
}

.hero-image-container {
    position: relative;
}

.hero-img {
    border-radius: 24px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 102, 204, 0.25),
        0 10px 20px -5px rgba(0, 179, 89, 0.15),
        0 0 0 1px rgba(226, 232, 240, 0.5);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: auto;
    position: relative;
}

.hero-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 70px -15px rgba(0, 102, 204, 0.35),
        0 15px 30px -8px rgba(0, 179, 89, 0.25),
        0 0 0 1px rgba(0, 102, 204, 0.2);
}

.hero-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    box-shadow: 
        0 15px 35px rgba(0, 102, 204, 0.2),
        0 5px 15px rgba(0, 179, 89, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 20px 45px rgba(0, 102, 204, 0.3),
        0 8px 20px rgba(0, 179, 89, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-badge-content i {
    color: #fbbf24;
    width: 1.5rem;
    height: 1.5rem;
}

.hero-badge-content span {
    background: linear-gradient(135deg, #003d7a 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
}

.hero-badge-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-badge i {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
    fill: currentColor;
}

.hero-badge span {
    color: var(--gray-800);
    font-weight: 600;
}

/* Section Styles */
.about-section {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -60px;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--econorte-blue-600));
    transform: translateY(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--econorte-blue-600), var(--econorte-green-600));
    background-size: 200% 200%;
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(59, 130, 246, 0.4);
    animation: gradientShift 5s ease infinite;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }
    
    .section-title::before {
        left: -80px;
        width: 60px;
    }
}

.section-description {
    font-size: 1.2rem;
    color: #475569;
    max-width: 64rem;
    margin: 1.5rem auto 0;
    line-height: 1.8;
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-img {
    border-radius: 28px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(226, 232, 240, 0.5),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    width: 100%;
    height: auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 
        0 35px 70px -12px rgba(59, 130, 246, 0.3),
        0 0 0 2px rgba(59, 130, 246, 0.3),
        0 0 60px -10px rgba(16, 185, 129, 0.2);
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 40px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s;
}

.about-image:hover::before {
    opacity: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, var(--econorte-blue-600), var(--econorte-green-600));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.about-item:hover .about-icon::before {
    opacity: 1;
}

.about-item:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.15));
    color: var(--econorte-blue-600);
}

.vision-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.15));
    color: var(--econorte-green-600);
}

.values-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.15));
    color: var(--econorte-blue-600);
}

.about-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.about-item-description {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Advantages Section */
.advantages-section {
    padding: 8rem 0;
    background: 
        radial-gradient(circle at 25% 40%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        white;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(16, 185, 129, 0.4),
        rgba(59, 130, 246, 0.4),
        transparent
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.advantages-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advantage-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 24px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.05),
        transparent
    );
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--econorte-blue-600), var(--econorte-green-600));
    background-size: 200% 200%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientShift 3s ease infinite;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover::after {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px -12px rgba(59, 130, 246, 0.25),
        0 0 0 1px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(239, 246, 255, 1) 100%);
}

.advantage-icon {
    color: var(--econorte-blue-600);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.advantage-icon i {
    width: 5.5rem;
    height: 5.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.08));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-icon i::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--econorte-blue-600), var(--econorte-green-600));
    opacity: 0;
    transition: opacity 0.5s;
}

.advantage-icon i::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s;
}

.advantage-card:hover .advantage-icon i::before {
    opacity: 1;
}

.advantage-card:hover .advantage-icon i::after {
    opacity: 1;
    transform: scale(1);
}

.advantage-card:hover .advantage-icon i {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        0 15px 35px -5px rgba(59, 130, 246, 0.5),
        0 0 30px -5px rgba(16, 185, 129, 0.3);
}

.advantage-card:hover .advantage-icon {
    color: white;
}

.advantage-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.advantage-card:hover .advantage-title {
    color: var(--econorte-blue-600);
}

.advantage-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

/* Categories Section */
.categories-section {
    padding: 8rem 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 40%),
        linear-gradient(to bottom, #ffffff, #f8fafc);
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.4),
        rgba(16, 185, 129, 0.4),
        transparent
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.categories-section::after {
    content: '';
    position: absolute;
    top: 30%;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(226, 232, 240, 0.5);
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, var(--econorte-blue-600), var(--econorte-green-600));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s;
    animation: gradientShift 5s ease infinite;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 30px 60px -12px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        0 0 60px -10px rgba(16, 185, 129, 0.2);
}

.category-image {
    height: 14rem;
    overflow: hidden;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card:hover .category-image::after {
    opacity: 1;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.category-card:hover .category-img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.category-content {
    padding: 2rem;
}

.category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.category-card:hover .category-title {
    background: linear-gradient(135deg, var(--econorte-blue-600), var(--econorte-green-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-description {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.category-link {
    display: inline-flex;
    align-items: center;
    color: var(--econorte-blue-600);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.05));
    position: relative;
    overflow: hidden;
}

.category-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--econorte-blue-600), var(--econorte-green-600));
    opacity: 0;
    transition: opacity 0.4s;
}

.category-link span {
    position: relative;
    z-index: 1;
}

.category-card:hover .category-link::before {
    opacity: 1;
}

.category-card:hover .category-link {
    color: white;
    transform: translateX(6px);
    box-shadow: 
        0 8px 20px -4px rgba(59, 130, 246, 0.4),
        0 0 20px -4px rgba(16, 185, 129, 0.3);
}

.category-link i {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.category-card:hover .category-link i {
    transform: translateX(0.5rem);
}

/* CTA Section */
.cta-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #047857 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.1;
}

.cta-decoration i {
    width: 16rem;
    height: 16rem;
    color: white;
}

.cta-container {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.5rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-cta-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    box-shadow: 
        0 10px 30px -5px rgba(16, 185, 129, 0.5),
        0 0 0 0 rgba(16, 185, 129, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::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.5s;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 20px 40px -5px rgba(16, 185, 129, 0.6),
        0 0 0 3px rgba(16, 185, 129, 0.2);
}

.btn-cta-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--econorte-blue-800);
    transform: scale(1.05);
}

/* Location Section */
.location-section {
    padding: 8rem 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        linear-gradient(to bottom, #ffffff, #f8fafc);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.4),
        rgba(16, 185, 129, 0.4),
        transparent
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.location-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-item:hover .location-icon {
    transform: scale(1.1) rotate(5deg);
}

.address-icon {
    background: var(--econorte-blue-100);
    color: var(--econorte-blue-600);
}

.phone-icon {
    background: var(--econorte-green-100);
    color: var(--econorte-green-600);
}

.location-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.location-text {
    color: var(--gray-600);
    line-height: 1.6;
}

.location-phone {
    color: var(--gray-600);
    font-size: 1.125rem;
    font-weight: 600;
}

.location-hours {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.03),
        0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.location-hours:hover {
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.05),
        0 4px 6px -2px rgba(0, 0, 0, 0.03);
    border-color: rgba(59, 130, 246, 0.2);
}

.hours-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.hours-content {
    color: var(--gray-600);
}

.location-map {
    background: var(--gray-100);
    border-radius: 28px;
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(226, 232, 240, 0.8),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(226, 232, 240, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.location-map::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, var(--econorte-blue-600), var(--econorte-green-600));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.location-map:hover::before {
    opacity: 0.6;
}

.location-map:hover {
    transform: scale(1.02);
    box-shadow: 
        0 25px 50px -10px rgba(59, 130, 246, 0.25),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        0 0 40px -10px rgba(16, 185, 129, 0.2);
}

.location-map iframe {
    border-radius: 28px;
}

.map-placeholder {
    text-align: center;
    color: var(--gray-600);
}

.map-placeholder i {
    width: 4rem;
    height: 4rem;
    color: var(--econorte-blue-400);
    margin: 0 auto 1rem;
}

.map-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.map-address {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer Styles */
.footer {
    background: linear-gradient(to bottom, #0f172a, #020617);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-main {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--econorte-blue-600), var(--econorte-green-600));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, #93c5fd, #86efac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.footer-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-legal {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--econorte-green-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--econorte-blue-400);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hours-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--econorte-blue-400);
}

.hours-time {
    margin-left: 2rem;
}

.hours-closed {
    margin-left: 2rem;
    color: var(--gray-400);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--econorte-blue-400);
}

.footer-social {
    padding-top: 1rem;
}

.social-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 2rem;
    height: 2rem;
    background: var(--gray-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--econorte-blue-600);
}

.social-icon:nth-child(2):hover {
    background: var(--econorte-green-600);
}

.social-icon i {
    width: 1rem;
    height: 1rem;
}

.social-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
}

.footer-bottom-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-400);
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom-content {
        flex-direction: row;
        text-align: left;
    }
}

.cnae-info {
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .cnae-info {
        margin-top: 0;
    }
}

/* Careers Section Styles */
.careers-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.careers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .careers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Jobs Card */
.jobs-card {
    background: white;
    border-radius: 1rem;
    border: 2px solid var(--econorte-blue-600);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: fit-content;
}

.jobs-header {
    background: linear-gradient(135deg, var(--econorte-blue-600), var(--econorte-green-600));
    color: white;
    padding: 2rem;
    text-align: center;
}

.jobs-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.jobs-icon i {
    width: 2rem;
    height: 2rem;
}

.jobs-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0;
}

.jobs-list {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--gray-50);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.job-item:hover {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.job-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.admin-icon {
    background: var(--econorte-blue-600);
    color: white;
}

.financial-icon {
    background: var(--econorte-green-600);
    color: white;
}

.sales-icon {
    background: var(--econorte-blue-500);
    color: white;
}

.logistics-icon {
    background: var(--econorte-green-500);
    color: white;
}

.job-content {
    flex: 1;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.job-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.jobs-footer {
    padding: 2rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.btn-whatsapp-careers {
    background: #25d366;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
}

.btn-whatsapp-careers:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Application Form */
.application-form-card {
    background: #f9fafb;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    background: white;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.form-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--econorte-blue-100), var(--econorte-green-100));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--econorte-blue-600);
}

.form-icon i {
    width: 2rem;
    height: 2rem;
}

.form-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.form-subtitle {
    color: var(--gray-600);
    line-height: 1.6;
}

.careers-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Honeypot field */
.honeypot {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gray-400);
    z-index: 1;
}



.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--econorte-blue-600);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.form-input.valid {
    border-color: #22c55e;
}

.form-input.invalid {
    border-color: #ef4444;
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

/* File Upload */
.file-upload-area {
    position: relative;
    border: 2px dashed var(--gray-300);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--econorte-blue-600);
    background: rgba(37, 99, 235, 0.05);
}

.file-upload-area.dragover {
    border-color: var(--econorte-blue-600);
    background: rgba(37, 99, 235, 0.1);
}

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.file-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gray-100);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.file-main-text {
    font-weight: 600;
    color: var(--gray-700);
    margin: 0;
}

.file-sub-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.file-selected {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 0.5rem;
    color: var(--gray-700);
}

.file-selected i {
    color: var(--econorte-blue-600);
}

.file-name {
    flex: 1;
    font-weight: 500;
}

.file-remove {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.3s ease;
}

.file-remove:hover {
    color: #ef4444;
}

/* Field Validation */
.field-validation {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.field-validation.show {
    display: block;
}

.field-validation.success {
    color: #22c55e;
}

.field-validation.error {
    color: #ef4444;
}

/* Submit Button */
.btn-submit-application {
    background: linear-gradient(135deg, var(--econorte-blue-600), var(--econorte-green-600));
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit-application:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit-application:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-content,
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.loading-spinner {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--gray-50), white);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--econorte-blue-600), var(--econorte-green-600));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.benefit-icon i {
    width: 2rem;
    height: 2rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Notification System */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    max-width: 400px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 4px solid #22c55e;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    border-left-color: #ef4444;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notification-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.notification-icon.success {
    color: #22c55e;
}

.notification-icon.error {
    color: #ef4444;
}

.notification-text {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.notification-message {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: var(--gray-600);
}

/* Responsive Careers Styles */
@media (max-width: 1023px) {
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .jobs-card {
        order: 1;
    }
    
    .application-form-card {
        order: 2;
    }
}

@media (max-width: 767px) {
    .careers-section {
        padding: 2rem 0;
    }
    
    .jobs-header,
    .form-header {
        padding: 1rem;
    }
    
    .jobs-list,
    .careers-form {
        padding: 1rem;
    }
    
    .careers-grid {
        gap: 1.5rem;
    }
    
    .job-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .job-icon {
        align-self: center;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .job-title {
        font-size: 1.1rem;
    }
    
    .form-input,
    .form-select {
        padding: 0.875rem;
        font-size: 16px; /* Previne zoom no iOS */
    }
    
    .input-icon {
        display: none; /* Remove ícones no mobile para mais espaço */
    }
    
    .file-upload-area {
        padding: 1rem;
    }
    
    .file-main-text {
        font-size: 0.875rem;
    }
    
    .file-sub-text {
        font-size: 0.75rem;
    }
    
    .btn-submit-application {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .btn-whatsapp-careers {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .careers-grid {
        gap: 1rem;
    }
    
    .jobs-title,
    .form-title {
        font-size: 1.25rem;
    }
    
    .jobs-header,
    .form-header {
        padding: 0.75rem;
    }
    
    .jobs-list,
    .careers-form {
        padding: 0.75rem;
        gap: 1rem;
    }
    
    .job-item {
        padding: 0.75rem;
    }
    
    .form-group {
        gap: 0.5rem;
    }
    
    .form-label {
        font-size: 0.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }
    
    .benefit-title {
        font-size: 1rem;
    }
    
    .notification {
        top: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
        max-width: none;
        padding: 1rem;
    }
}

/* Contact Page Responsive */
@media (max-width: 767px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 0.75rem;
        border: 1px solid var(--gray-200);
    }
    
    .location-icon {
        flex-shrink: 0;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .location-icon i {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .location-content {
        flex: 1;
        min-width: 0;
    }
    
    .location-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .location-text,
    .location-phone {
        font-size: 0.875rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .location-hours {
        padding: 1rem;
    }
    
    .hours-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .hours-content {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .hours-content p {
        margin-bottom: 0.25rem;
    }
    
    /* Contact page specific grid adjustments */
    #page-contact .location-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* WhatsApp CTA mobile improvements */
    #page-contact [style*="background: linear-gradient(135deg, var(--econorte-green-50)"] {
        padding: 1.5rem !important;
        margin-top: 1rem;
    }
    
    #page-contact [style*="background: linear-gradient(135deg, var(--econorte-green-50)"] h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    #page-contact [style*="background: linear-gradient(135deg, var(--econorte-green-50)"] p {
        font-size: 0.875rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
    }
    
    /* Map container mobile */
    .location-map {
        height: 250px;
        margin-top: 1rem;
    }
    
    .location-map iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .location-info {
        gap: 1rem;
    }
    
    .location-item {
        gap: 0.75rem;
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .location-icon {
        align-self: center;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .location-content {
        text-align: center;
        width: 100%;
    }
    
    .location-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .location-text,
    .location-phone {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .hours-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .hours-content {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Contact page specific mobile optimizations */
    #page-contact .container {
        padding: 0 0.75rem;
    }
    
    #page-contact .location-grid {
        gap: 1rem;
    }
    
    /* WhatsApp CTA extra small screens */
    #page-contact [style*="background: linear-gradient(135deg, var(--econorte-green-50)"] {
        padding: 1rem !important;
        text-align: center;
    }
    
    #page-contact [style*="background: linear-gradient(135deg, var(--econorte-green-50)"] h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    
    #page-contact [style*="background: linear-gradient(135deg, var(--econorte-green-50)"] p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }
    
    #page-contact [style*="background: linear-gradient(135deg, var(--econorte-green-50)"] .btn-secondary {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    /* Map mobile optimization */
    .location-map {
        height: 200px;
        border-radius: 0.5rem;
        overflow: hidden;
    }
    
    .location-map iframe {
        height: 200px;
        border-radius: 0.5rem;
    }
    
    /* Contact info section padding */
    #page-contact section:first-of-type {
        padding: 2rem 0 !important;
    }
}

/* Contact page general improvements */
@media (max-width: 1023px) {
    #page-contact .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info {
        order: 1;
    }
    
    .location-map {
        order: 2;
    }
}

/* Touch-friendly buttons */
@media (max-width: 767px) {
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp-careers,
    .btn-submit-application {
        min-height: 44px; /* Tamanho mínimo recomendado para touch */
        touch-action: manipulation;
        -webkit-appearance: none; /* Remove estilo padrão iOS */
    }
}

/* Landscape mobile optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .careers-section,
    .benefits-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Contact Page Additional Mobile Fixes */
@media (max-width: 767px) {
    /* Ensure proper spacing and alignment for contact cards */
    #page-contact [style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    /* Contact information cards */
    #page-contact [style*="background: linear-gradient(135deg, var(--econorte-blue-50)"],
    #page-contact [style*="background: linear-gradient(135deg, var(--econorte-green-50)"] {
        margin-bottom: 1rem;
        padding: 1.5rem !important;
    }
    
    /* Fix for inline styled divs in contact section */
    #page-contact div[style*="display: flex; flex-direction: column; gap: 1.5rem;"] {
        gap: 1rem !important;
    }
    
    /* Horário de funcionamento styling */
    #page-contact div[style*="color: var(--gray-600);"] p {
        margin-bottom: 0.25rem;
        font-size: 0.875rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    /* Extra mobile optimizations for contact */
    #page-contact .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    #page-contact .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    #page-contact .section-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Contact grid mobile optimization */
    #page-contact [style*="margin-top: 3rem;"] {
        margin-top: 1.5rem !important;
    }
}

/* Landscape mobile optimization for contact */
@media (max-height: 500px) and (orientation: landscape) {
    #page-contact .hero-section {
        padding: 1.5rem 0;
    }
    
    #page-contact section[style*="padding: 5rem 0;"] {
        padding: 2rem 0 !important;
    }
    
    .location-map {
        height: 180px !important;
    }
    
    .location-map iframe {
        height: 180px !important;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-img,
    .about-img,
    .category-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Futuro: implementar dark mode se necessário */
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .hero-decoration-1,
    .hero-decoration-2,
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp-careers,
    .mobile-nav,
    .notification {
        display: none !important;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
    
    .page {
        page-break-after: always;
    }
}

/* iPhone XR and similar devices */
@media (max-width: 414px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo-icon {
        width: 4rem;
        height: 4rem;
    }
    
    .menu-toggle {
        padding: 0.5rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .menu-toggle i {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    /* Contact page specific iPhone optimizations */
    #page-contact .location-item {
        padding: 1rem 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    #page-contact .location-title {
        font-size: 0.875rem;
        font-weight: 600;
    }
    
    #page-contact .location-text,
    #page-contact .location-phone {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    /* WhatsApp button iPhone optimization */
    #page-contact [style*="background: linear-gradient(135deg, var(--econorte-green-50)"] .btn-secondary {
        padding: 0.875rem 1rem !important;
        font-size: 0.875rem !important;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    #page-contact [style*="background: linear-gradient(135deg, var(--econorte-green-50)"] .btn-secondary i {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }
}

/* General Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .section-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-heading {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-heading {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .hero-logo {
        width: 3rem;
        height: 3rem;
    }
    
    .hero-logo i {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    /* Categories grid mobile */
    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .category-card {
        max-width: none;
    }
    
    .category-image {
        height: 8rem;
    }
    
    .category-content {
        padding: 1rem;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .category-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Advantages grid mobile */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .advantage-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .advantage-title {
        font-size: 1rem;
    }
    
    .advantage-description {
        font-size: 0.875rem;
    }
}

/* ==========================================
   CATÁLOGO DE PRODUTOS
   ========================================== */

/* Container de produtos */
#products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    #products-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (min-width: 1024px) {
    #products-container {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

/* Card de produto */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px -10px rgba(0, 102, 204, 0.2),
        0 10px 20px -5px rgba(0, 179, 89, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
}

/* Imagem do produto */
.product-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #f0fdf7 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

/* Badges */
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
}

.product-badge.out-of-stock {
    background: rgba(239, 68, 68, 0.9);
    backdrop-filter: blur(10px);
    color: white;
}

.product-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 204, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

/* Conteúdo do card */
.product-content {
    padding: 1.5rem;
}

.product-subcategory {
    font-size: 0.75rem;
    font-weight: 600;
    color: #00b359;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 3em;
}

.product-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 2.5em;
}

/* Footer do produto */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-currency {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #00b359;
}

/* Botão de contato do produto */
.btn-product-contact {
    background: linear-gradient(135deg, #00b359 0%, #009647 100%);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-product-contact:hover {
    background: linear-gradient(135deg, #009647 0%, #00803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 179, 89, 0.3);
}

.btn-product-contact i {
    width: 1rem;
    height: 1rem;
}

/* Filtros de categoria */
.category-filter-btn {
    padding: 0.875rem 1.75rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-filter-btn i {
    width: 1.25rem;
    height: 1.25rem;
}

.category-filter-btn:hover {
    border-color: #0066cc;
    color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.category-filter-btn.active {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border-color: #0066cc;
}

.category-filter-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
    #products-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .btn-product-contact {
        width: 100%;
        justify-content: center;
    }
    
    .category-filter-btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-image-container {
        height: 200px;
    }
    
    .product-content {
        padding: 1.25rem;
    }
    
    .product-title {
        font-size: 1rem;
        min-height: auto;
    }
    
    .product-description {
        font-size: 0.8rem;
        min-height: auto;
    }
    
    .price-value {
        font-size: 1.25rem;
    }
}

/* Grid de produtos */
#products-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

@media (max-width: 640px) {
    #products-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========================================
   HERO SECTION V2 - Com imagem de fundo
======================================== */

.hero-section-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background com imagem */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('layout/plan2.png');
    background-size: 55%;
    background-position: 45% 50%;
    background-repeat: no-repeat;
    opacity: 0.20;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(240, 253, 244, 0.75) 0%,
        rgba(255, 255, 255, 0.65) 50%,
        rgba(240, 249, 255, 0.75) 100%
    );
}

/* Conteúdo */
.hero-v2-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Logo */
.hero-logo-v2 {
    margin-bottom: 2rem;
    animation: fade-in-down 0.6s ease-out;
}

.hero-logo-v2 img {
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .hero-logo-v2 img {
        max-width: 260px;
    }
}

/* Badge de destaque */
.hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00b359 0%, #009147 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fade-in-down 0.6s ease-out;
    box-shadow: 0 4px 15px rgba(0, 179, 89, 0.3);
}

.hero-badge-v2 i {
    width: 18px;
    height: 18px;
}

@keyframes fade-in-down {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Título impactante */
.hero-title-v2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    animation: fade-in-up 0.6s ease-out 0.2s both;
}

.hero-title-v2 .highlight-green {
    color: #00b359;
    font-weight: 800;
}

.hero-title-v2 .highlight-blue {
    color: #0066cc;
    font-weight: 800;
}

.hero-title-v2 .highlight-gradient {
    background: linear-gradient(135deg, #00b359 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
}

.hero-title-v2 .highlight-gradient::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00b359, #0066cc);
    border-radius: 2px;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Subtítulo */
.hero-subtitle-v2 {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    animation: fade-in-up 0.6s ease-out 0.4s both;
}

/* Cards de categorias */
.hero-categories-v2 {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fade-in-up 0.6s ease-out 0.6s both;
}

.hero-cat-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    min-width: 160px;
}

.hero-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 179, 89, 0.2);
    border-color: #00b359;
}

.hero-cat-card i {
    width: 36px;
    height: 36px;
    color: #00b359;
    margin-bottom: 0.75rem;
}

.hero-cat-card span {
    display: block;
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.hero-cat-card small {
    color: #64748b;
    font-size: 0.85rem;
}

/* Card de Setores destacado */
.hero-cat-card.setores-card {
    background: linear-gradient(135deg, #0066cc 0%, #003d7a 100%);
    border: none;
    grid-column: 1 / -1;
}

.hero-cat-card.setores-card i,
.hero-cat-card.setores-card span {
    color: white;
}

.hero-cat-card.setores-card small {
    color: rgba(255, 255, 255, 0.8);
}

.hero-cat-card.setores-card:hover {
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.4);
    border-color: transparent;
}

/* CTA principal */
.hero-cta-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fade-in-up 0.6s ease-out 0.8s both;
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-cta-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.btn-cta-whatsapp i {
    width: 28px;
    height: 28px;
}

.btn-cta-text {
    text-align: left;
}

.btn-cta-text span {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
}

.btn-cta-text small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.btn-cta-catalog {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    background: white;
    color: #0066cc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-cta-catalog:hover {
    border-color: #0066cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.btn-cta-catalog i {
    width: 22px;
    height: 22px;
}

/* Scroll indicator */
.hero-scroll-v2 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.8rem;
    animation: fade-in 1s ease-out 1.2s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #00b359, transparent);
    border-radius: 2px;
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 50px; }
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-v2-content {
        padding: 1.5rem;
    }
    
    .hero-badge-v2 {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-categories-v2 {
        gap: 0.75rem;
    }
    
    .hero-cat-card {
        padding: 1rem 1.5rem;
        min-width: 140px;
    }
    
    .hero-cat-card i {
        width: 28px;
        height: 28px;
    }
    
    .hero-cat-card span {
        font-size: 0.9rem;
    }
    
    .hero-cta-v2 {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-cta-whatsapp,
    .btn-cta-catalog {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-scroll-v2 {
        display: none;
    }
}

/* ==========================================
   ABOUT SECTION V2 - Novo Design Moderno
   ========================================== */

.about-section-v2 {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 30%, #f0f9ff 100%);
    overflow: hidden;
}

.about-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.about-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.70) 50%,
        rgba(255, 255, 255, 0.75) 100%
    );
    z-index: 1;
}

.about-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 179, 89, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}

.about-section-v2 .container {
    position: relative;
    z-index: 3;
}

.about-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 179, 89, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 102, 204, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Header */
.about-header-v2 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 179, 89, 0.1), rgba(0, 102, 204, 0.1));
    border: 1px solid rgba(0, 179, 89, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--econorte-green-700);
    margin-bottom: 1.5rem;
}

.about-badge i {
    width: 16px;
    height: 16px;
}

.about-title-v2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-gradient-green {
    background: linear-gradient(135deg, var(--econorte-green-500), var(--econorte-green-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--econorte-blue-500), var(--econorte-blue-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle-v2 {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

/* Cards */
.about-cards-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card-v2 {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.about-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
}

.mission-card::before {
    background: linear-gradient(90deg, var(--econorte-green-500), var(--econorte-green-600));
}

.vision-card::before {
    background: linear-gradient(90deg, var(--econorte-blue-500), var(--econorte-blue-600));
}

.values-card::before {
    background: linear-gradient(90deg, var(--econorte-green-500), var(--econorte-blue-500));
}

.about-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 179, 89, 0.1);
}

.card-icon-v2 {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-card .card-icon-v2 {
    background: linear-gradient(135deg, rgba(0, 179, 89, 0.15), rgba(0, 179, 89, 0.05));
    color: var(--econorte-green-600);
}

.vision-card .card-icon-v2 {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(0, 102, 204, 0.05));
    color: var(--econorte-blue-600);
}

.values-card .card-icon-v2 {
    background: linear-gradient(135deg, rgba(0, 179, 89, 0.1), rgba(0, 102, 204, 0.1));
    color: var(--econorte-green-600);
}

.card-icon-v2 i {
    width: 28px;
    height: 28px;
}

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

.about-card-v2 h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.about-card-v2 p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.05;
}

.mission-card .card-decoration {
    background: var(--econorte-green-500);
}

.vision-card .card-decoration {
    background: var(--econorte-blue-500);
}

.values-card .card-decoration {
    background: linear-gradient(135deg, var(--econorte-green-500), var(--econorte-blue-500));
}

/* Stats */
.about-stats-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 4rem;
    border: 1px solid rgba(0, 179, 89, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.stat-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--econorte-green-600), var(--econorte-blue-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(0, 179, 89, 0.3), transparent);
}

/* Responsivo About V2 */
@media (max-width: 1024px) {
    .about-cards-v2 {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-stats-v2 {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .stat-divider {
        width: 100px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 179, 89, 0.3), transparent);
    }
}

@media (max-width: 768px) {
    .about-section-v2 {
        padding: 4rem 0;
    }
    
    .about-header-v2 {
        margin-bottom: 3rem;
    }
    
    .about-title-v2 {
        font-size: 1.75rem;
    }
    
    .about-subtitle-v2 {
        font-size: 1rem;
    }
    
    .about-card-v2 {
        padding: 2rem;
    }
    
    .card-icon-v2 {
        width: 50px;
        height: 50px;
    }
    
    .card-icon-v2 i {
        width: 24px;
        height: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ==========================================
   ADVANTAGES SECTION V2 - Com Van de Fundo
   ========================================== */

.advantages-section-v2 {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.advantages-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('layout/van.png');
    background-size: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.advantages-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.advantages-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.70) 50%,
        rgba(255, 255, 255, 0.75) 100%
    );
    z-index: 1;
}

.advantages-section-v2 .container {
    position: relative;
    z-index: 1;
}

.advantages-header-v2 {
    text-align: center;
    margin-bottom: 4rem;
}

.advantages-title-v2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.brand-highlight {
    position: relative;
    display: inline-block;
}

.brand-highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(90deg, rgba(0, 179, 89, 0.3), rgba(0, 102, 204, 0.3));
    border-radius: 4px;
    z-index: -1;
}

.advantages-subtitle-v2 {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.advantages-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-card-v2 {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.advantage-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--econorte-green-500), var(--econorte-blue-500));
    opacity: 0;
    transition: opacity 0.3s;
}

.advantage-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.advantage-card-v2:hover::before {
    opacity: 1;
}

.advantage-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--econorte-green-500), var(--econorte-blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.8;
}

.advantage-content {
    flex: 1;
}

.advantage-content i {
    width: 40px;
    height: 40px;
    color: var(--econorte-green-600);
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.advantage-card-v2:hover .advantage-content i {
    color: var(--econorte-blue-600);
    transform: scale(1.1);
}

.advantage-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.advantage-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsivo Advantages V2 */
@media (max-width: 768px) {
    .advantages-section-v2 {
        padding: 4rem 0;
    }
    
    .advantages-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .advantage-card-v2 {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .advantage-number {
        font-size: 2rem;
    }
    
    .advantage-content h3 {
        font-size: 1.1rem;
    }
    
    .advantage-content p {
        font-size: 0.9rem;
    }
    
    .advantages-title-v2 {
        font-size: 1.75rem;
    }
}

/* ==========================================
   LOCATION SECTION V2 - Novo Design Moderno
   ========================================== */

.location-section-v2 {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    background: linear-gradient(
        135deg,
        #0f172a 0%,
        #1e3a5f 40%,
        #0d4f4f 70%,
        #134e4a 100%
    );
}

.location-bg-pattern-v2 {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.15;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 179, 89, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
}

.location-bg-pattern-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(30deg, transparent 49.5%, rgba(255, 255, 255, 0.03) 49.5%, rgba(255, 255, 255, 0.03) 50.5%, transparent 50.5%),
        linear-gradient(-30deg, transparent 49.5%, rgba(255, 255, 255, 0.03) 49.5%, rgba(255, 255, 255, 0.03) 50.5%, transparent 50.5%);
    background-size: 60px 100px;
}

.location-bg-pattern-v2::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 179, 89, 0.15) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.location-section-v2 .container {
    position: relative;
    z-index: 2;
}

.location-header-v2 {
    text-align: center;
    margin-bottom: 3rem;
}

.location-title-v2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.location-title-v2 i {
    width: 40px;
    height: 40px;
    color: var(--econorte-green-400);
}

.location-subtitle-v2 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Atualizar estilos existentes para combinar */
.location-section-v2 .location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .location-section-v2 .location-grid {
        grid-template-columns: 400px 1fr;
        gap: 3rem;
    }
}

.location-section-v2 .location-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.location-section-v2 .location-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.location-section-v2 .location-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--econorte-green-500), var(--econorte-blue-500));
}

.location-section-v2 .location-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.location-section-v2 .location-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.location-section-v2 .location-text,
.location-section-v2 .location-phone {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-section-v2 .location-hours {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.location-section-v2 .hours-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.location-section-v2 .hours-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.location-section-v2 .hours-content strong {
    color: var(--econorte-green-400);
}

.location-section-v2 .location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.location-section-v2 .location-map iframe {
    border-radius: 17px;
}

/* Mini Fachada - dentro da seção de localização */
.fachada-mini {
    margin-top: 0.5rem !important;
    display: block !important;
}

.fachada-mini img {
    width: 80px !important;
    height: 50px !important;
    max-width: 80px !important;
    max-height: 50px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Responsivo Location V2 */
@media (max-width: 768px) {
    .location-section-v2 {
        padding: 3rem 0;
    }
    
    .location-title-v2 {
        font-size: 1.75rem;
    }
    
    .location-title-v2 i {
        width: 30px;
        height: 30px;
    }
    
    .location-section-v2 .location-info {
        padding: 1.5rem;
    }
}

/* ==========================================
   SEÇÃO TRABALHE CONOSCO / CURRÍCULO
   ========================================== */

.careers-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 992px) {
    .careers-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.careers-info {
    padding-right: 2rem;
}

.careers-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.careers-title i {
    width: 32px;
    height: 32px;
    color: #0066cc;
}

.careers-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.careers-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.careers-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #475569;
}

.careers-benefits li i {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.careers-form-container {
    width: 100%;
}

.careers-form-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.careers-form-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.careers-form-box > p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.careers-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.careers-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.careers-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.careers-form input,
.careers-form select,
.careers-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #1a1a2e;
    background: #f8fafc;
    transition: all 0.2s;
}

.careers-form input:focus,
.careers-form select:focus,
.careers-form textarea:focus {
    outline: none;
    border-color: #0066cc;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.careers-form input::placeholder,
.careers-form textarea::placeholder {
    color: #94a3b8;
}

.careers-form textarea {
    resize: vertical;
    min-height: 80px;
}

.careers-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.careers-submit-btn:hover {
    background: #128C7E;
    transform: translateY(-1px);
}

.careers-submit-btn i {
    width: 20px;
    height: 20px;
}

.careers-email {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.careers-email p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.careers-email a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.careers-email a:hover {
    color: #0052a3;
}

.careers-email a i {
    width: 18px;
    height: 18px;
}

/* Upload de arquivo */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    transition: all 0.2s;
    cursor: pointer;
}

.file-upload-box:hover,
.file-upload-box.dragover {
    border-color: #0066cc;
    background: #eff6ff;
}

.file-upload-box i {
    width: 40px;
    height: 40px;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.file-upload-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.25rem;
}

.file-upload-hint {
    font-size: 0.8rem;
    color: #94a3b8;
}

.file-selected {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
}

.file-selected i:first-child {
    width: 24px;
    height: 24px;
    color: #16a34a;
    flex-shrink: 0;
}

.file-selected span {
    flex: 1;
    font-size: 0.9rem;
    color: #166534;
    font-weight: 500;
    word-break: break-all;
}

.file-remove {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: #dc2626;
    border-radius: 4px;
    transition: background 0.2s;
}

.file-remove:hover {
    background: #fef2f2;
}

.file-remove i {
    width: 18px;
    height: 18px;
}

.file-error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.file-error.show {
    display: block;
}

.form-security-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f0fdf4;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.form-security-notice i {
    width: 18px;
    height: 18px;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 1px;
}

.form-security-notice span {
    font-size: 0.8rem;
    color: #166534;
    line-height: 1.4;
}

.careers-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.careers-submit-btn.loading {
    position: relative;
    color: transparent;
}

.careers-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .careers-section {
        padding: 3rem 0;
    }
    
    .careers-info {
        padding-right: 0;
    }
    
    .careers-title {
        font-size: 1.5rem;
    }
    
    .careers-form-box {
        padding: 1.5rem;
    }
}

/* ==========================================
   PÁGINAS DE PRODUTOS - Fundo com Imagem
   ========================================== */

.products-page-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.products-page-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
}

.products-page-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(248, 250, 252, 0.65) 50%,
        rgba(255, 255, 255, 0.75) 100%
    );
}

/* Garantir que o conteúdo fique acima do fundo */
.container {
    position: relative;
    z-index: 1;
}

/* ========================================
   HERO CATEGORIES (Bolinhas)
======================================== */
.hero-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hero-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.hero-cat-item:hover {
    transform: translateY(-5px);
}

.hero-cat-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.hero-cat-item:hover .hero-cat-circle {
    border-color: #0066cc;
    box-shadow: 0 6px 20px rgba(0,102,204,0.2);
}

.hero-cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cat-circle.hero-cat-all {
    background: #0066cc;
    border-color: #0066cc;
}

.hero-cat-circle.hero-cat-all span {
    color: white;
    font-size: 1.75rem;
    font-weight: 300;
}

.hero-cat-name {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
}

.hero-cat-item:hover .hero-cat-name {
    color: #0066cc;
}

@media (max-width: 768px) {
    .hero-categories {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-cat-circle {
        width: 55px;
        height: 55px;
    }
    
    .hero-cat-name {
        font-size: 0.75rem;
    }
    
    .hero-cat-circle.hero-cat-all span {
        font-size: 1.5rem;
    }
}

/* ========================================
   WHATSAPP FLUTUANTE
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float .whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Tooltip do WhatsApp */
.whatsapp-float::before {
    content: 'Fale Conosco';
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    .whatsapp-float::before {
        display: none;
    }
}