/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0a3971;
    --accent-yellow: #f2c141;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --text-gray: #6c757d;
    --shadow: 0 10px 30px rgba(10, 57, 113, 0.1);
    --shadow-hover: 0 20px 40px rgba(10, 57, 113, 0.15);
    --gradient: linear-gradient(135deg, var(--primary-blue) 0%, #1e5799 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    padding-top: 80px; /* Altura do header fixo */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

a {
    text-decoration: none !important; /* Globalmente remove sublinhado de links */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Design Simples */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(10, 57, 113, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(10, 57, 113, 0.15);
}

.header-container {
    width: 100%;
    height: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.cta-button {
    background: var(--gradient);
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(10, 57, 113, 0.1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(10, 57, 113, 0.1);
    box-shadow: 0 4px 20px rgba(10, 57, 113, 0.1);
    z-index: 999;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(10, 57, 113, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:last-child {
    border-bottom: none;
    background: var(--gradient);
    color: white !important;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 10px;
    text-align: center;
}

.mobile-nav-link:hover {
    color: var(--primary-blue);
    padding-left: 10px;
}

.mobile-nav-link:last-child:hover {
    color: white !important;
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    .header-container {
        padding: 0 20px;
    }
    
    .header-nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .header-nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    background: url('fundo.jpg') center/cover no-repeat;
    color: white;
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: none !important; /* Garante que não há transformações aplicadas */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 57, 113, 0.85) 0%, rgba(30, 87, 153, 0.75) 50%, rgba(10, 57, 113, 0.9) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(242, 193, 65, 0.1) 0%, transparent 50%, rgba(242, 193, 65, 0.05) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
    gap: 30px;
    width: 100%;
}

.hero-title {
    font-size: 4rem; /* Aumentado */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent-yellow);
    position: relative;
}

/* .hero-subtitle está definido abaixo, a estrutura anterior estava incorreta */
.hero-text {
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.4rem; /* Aumentado */
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center; /* Adicionado para centralizar os botões */
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(242, 193, 65, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(242, 193, 65, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}


.hero-stats {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 3;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* About Section - Reformulated */
.about-reimagined {
    padding: 100px 0;
    background: var(--white); 
}

.section-header { /* Mantido para outras seções, mas pode ser específico se necessário */
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.about-reimagined-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px; /* Reduzido o gap */
    align-items: center;
}

.about-reimagined-image img {
    width: auto; /* Usa a largura intrínseca da imagem */
    max-width: 100%; /* Garante que a imagem não exceda o contêiner */
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(10, 57, 113, 0.15);
    display: block; /* Remove espaço extra abaixo da imagem e permite margem auto */
    margin-left: auto; /* Centraliza a imagem se ela for menor que o contêiner */
    margin-right: auto; /* Centraliza a imagem se ela for menor que o contêiner */
}

.about-reimagined-text h3 {
    font-size: 1.8rem; 
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.about-reimagined-text p {
    margin-bottom: 20px;
    font-size: 1.05rem; 
    line-height: 1.7;
    color: var(--text-gray);
}

.about-reimagined-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--accent-yellow);
}

.highlight-item i {
    font-size: 1.6rem;
    color: var(--primary-blue);
    width: 30px;
    text-align: center;
}

.highlight-item span {
    font-weight: 500;
    color: var(--dark-gray);
}

.about-reimagined-text .btn-primary {
    margin-top: 20px;
}


/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-yellow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-cta {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.product-category h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.product-category p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.product-cta {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-cta:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Contact Section - Reformulated */
.contact-reimagined {
    padding: 100px 0;
    background: var(--light-gray); 
}

.contact-reimagined-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch; 
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.contact-card .card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-card .card-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1; 
}

.parts-cta-card .truck-models {
    margin-bottom: 25px;
}

.parts-cta-card .truck-models span {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin: 5px;
    font-weight: 500;
    border: 1px solid var(--primary-blue);
}

.parts-cta-card .btn-primary {
    margin-top: auto; 
}

.parts-cta-card .small-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 15px;
    margin-bottom: 0;
}

.info-card .contact-item-reimagined {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
}

.info-card .contact-item-reimagined i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 5px;
    width: 25px;
    text-align: center;
}

.info-card .contact-item-reimagined strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 3px;
}

.info-card .contact-item-reimagined p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}
.info-card .contact-item-reimagined a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.info-card .contact-item-reimagined a:hover {
    color: var(--accent-yellow);
}


.info-card h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons-contact a {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons-contact a:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Ajustes responsivos para a nova seção de contato */
@media (max-width: 992px) {
    .contact-reimagined-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #ffffff;
    color: var(--dark-gray);
    padding: 60px 0 20px;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    /* align-items: start; */ /* Removido para evitar efeitos colaterais */
}

.footer-logo {
    text-align: left;
}

.footer-logo img {
    height: 50px;
    width: auto; /* Impede que a imagem estique */
    margin-bottom: 15px;
    filter: none;
}

.footer-logo p {
    opacity: 0.8;
    color: var(--text-gray);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-blue);
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
    color: var(--text-gray);
}
.footer-contact a {
    color: var(--text-gray);
}
.footer-contact a:hover {
    color: var(--primary-blue);
}

.footer-contact i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    text-align: center;
    color: var(--text-gray);
}

.footer-bottom p {
    margin-bottom: 5px; 
    font-size: 0.85rem; 
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: flex; /* Sempre visível, sem menu mobile */
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-container {
        padding: 0 20px; /* Reduzido para mobile */
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr); /* 2 por linha no mobile */
        gap: 20px;
        margin-top: 30px;
    }
    
    .about-reimagined-content { 
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-reimagined-image {
        margin-bottom: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
        
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left; /* Garante que no mobile tudo começa à esquerda */
        gap: 30px;
    }
    .footer-social-horizontal .social-icons {
        justify-content: flex-start;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas muito pequenas */
    }
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
        height: 70px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .stat {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
        
    .service-card {
        padding: 25px 15px;
    }
    
    .contact-item-reimagined { /* Ajuste para o novo card de contato */
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .info-card .contact-item-reimagined i { /* Ajuste para o novo card de contato */
        margin: 0 auto 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle,
.hero-buttons {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-buttons {
    animation-delay: 0.4s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-yellow);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(10, 57, 113, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 57, 113, 0.4);
}

/* Floating Cart Button */
.cart-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px; /* Acima do botão de WhatsApp */
    right: 30px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(10, 57, 113, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(10, 57, 113, 0.6);
}

.cart-float .cart-badge-float {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    display: none; /* Começa escondido */
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Commercial Contact Tab */
.commercial-contact-tab {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    animation: slideInLeftVertical 1s ease 1.5s both; 
}

.commercial-contact-tab a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    padding: 12px 8px; /* Reduzido o padding */
    border-radius: 0 12px 12px 0;
    box-shadow: 2px 0 15px rgba(10, 57, 113, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 11px; /* Reduzido o tamanho da fonte */
    text-align: center;
    width: 60px; /* Reduzido a largura de 80px para 60px */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    gap: 3px;
}

.commercial-contact-tab a:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateX(3px); /* Reduzido o movimento para não se afastar muito */
    box-shadow: 3px 0 15px rgba(242, 193, 65, 0.4);
}

.commercial-contact-tab i {
    font-size: 20px; 
    margin-bottom: 5px; 
    margin-right: 0; 
}

.commercial-contact-tab span {
    white-space: normal; 
    line-height: 1.2;
}

@keyframes slideInLeftVertical { 
    from {
        transform: translateY(-50%) translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

/* LGPD Popup */
.lgpd-popup {
    position: fixed;
    bottom: 120px;
    left: 30px;
    max-width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 2px solid var(--accent-yellow);
}

.lgpd-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lgpd-content {
    padding: 20px;
}

.lgpd-content h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lgpd-content p {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.4;
}

.lgpd-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-accept {
    background: var(--primary-blue);
    color: white;
}

.btn-accept:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.btn-reject {
    background: #e9ecef;
    color: var(--text-gray);
}

.btn-reject:hover {
    background: #dc3545;
    color: white;
}

/* Footer Enhancements */
.footer-credits {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.frame-link {
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.frame-link:hover {
    color: var(--accent-yellow);
    text-shadow: none;
}

.frame-link i {
    margin-right: 5px;
}

/* Social Icons in Footer */
.footer-social-horizontal {
    margin-top: 20px;
    text-align: left; /* Garante que o "Siga-nos" fica à esquerda */
}

.footer-social-horizontal h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-weight: 600;
}

.footer-social-horizontal .social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 12px; 
}

.footer .social-icons a { 
    width: 38px; 
    height: 38px;
    background: var(--light-gray);
    border: 1px solid #dee2e6; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--primary-blue);
    font-size: 1rem; 
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    border-color: var(--primary-blue);
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-yellow));
    border-radius: 6px;
    border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-blue));
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cart-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 20px;
        font-size: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
        font-size: 16px;
    }
    
    .commercial-contact-tab {
        display: none;
    }
    
    .lgpd-popup {
        bottom: 80px;
        left: 20px;
        right: 20px;
        max-width: 300px;
    }
    
    .lgpd-content {
        padding: 15px;
    }
    
    .lgpd-buttons {
        flex-direction: column;
    }
    
    .btn-accept, .btn-reject {
        padding: 10px;
        font-size: 12px;
    }
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Enhanced Button Animations */
.btn-primary, .btn-secondary, .service-cta, .product-cta {
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .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-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Improved Focus States */
button:focus, a:focus {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .back-to-top,
    .commercial-contact-tab,
    .lgpd-popup {
        display: none !important;
    }
    
    .header {
        position: static;
        box-shadow: none;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
}
/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--light-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-yellow);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-stars {
    color: var(--accent-yellow);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-stars i {
    margin-right: 3px;
}

.review-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.review-author {
    font-weight: 600;
    color: var(--primary-blue);
    text-align: right;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card {
        padding: 25px;
    }
}
/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
    padding: 60px 0;
}

.services-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.service-info h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.service-info p {
    margin: 5px 0 0;
    color: #666;
}