* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
html {
    scroll-behavior: smooth;
}
 
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}
 
/* ===================================
   HEADER
=================================== */
 
.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
 
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
.logo img {
    max-height: 60px;
    width: auto;
}
 
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}
 
.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}
 
.nav-menu a:hover {
    color: #0149ad;
}
 
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
 
.whatsapp-btn {
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}
 
.whatsapp-btn:hover {
    background: #1cb955;
    transform: translateY(-2px);
}
 
/* ===================================
   HERO — EFEITO SLIDE (TRILHO)
=================================== */
 
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #0149ad;
}
 
/* O trilho: todos os slides ficam em fila horizontal */
.hero-track {
    display: flex;
    width: 400%;          /* 4 slides × 100% */
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}
 
/* Cada slide ocupa exatamente 1 viewport de largura */
.hero-slide {
    width: 25%;           /* 100% ÷ 4 slides */
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
 
/* ===================================
   SETAS DO HERO
=================================== */
 
.hero-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 0;
}
 
.hero-carousel-button:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.9);
    transform: translateY(-50%) scale(1.08);
}
 
.hero-carousel-button:active {
    transform: translateY(-50%) scale(0.95);
}
 
.hero-carousel-button svg {
    width: 26px;
    height: 26px;
    pointer-events: none;
}
 
.hero-prev { left: 25px; }
.hero-next { right: 25px; }
 
/* ===================================
   BOLINHAS (INDICADORES)
=================================== */
 
.hero-indicators {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
 
.hero-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: 2px solid rgba(255,255,255,0.7);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, width 0.3s, border-radius 0.3s;
    display: inline-block;
}
 
.hero-indicator:hover {
    background: rgba(255,255,255,0.75);
    transform: scale(1.2);
}
 
/* Bolinha ativa vira pílula laranja */
.hero-indicator.active {
    background: #f2832a;
    border-color: #fff;
    width: 28px;
    border-radius: 6px;
    transform: none;
}
 
/* ===================================
   BOTÕES GLOBAIS
=================================== */
 
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}
 
.btn-whatsapp {
    background: #25d366;
    color: white;
}
 
.btn-whatsapp:hover {
    background: #1cb955;
    transform: translateY(-3px);
}
 
.btn-primary {
    background: white;
    color: #c41e3a;
}
 
.btn-primary:hover {
    background: #f2f2f2;
    transform: translateY(-3px);
}
 
/* ===================================
   WHATSAPP FIXO
=================================== */
 
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    border: none;
}
 
.whatsapp-floating:hover {
    transform: scale(1.1);
    background: #1cb955;
}
 
/* ===================================
   SEÇÕES GERAIS
=================================== */
 
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}
 
.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #222;
}
 
.section-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}
 
/* ===================================
   CARROSSEL DE PRODUTOS
=================================== */
 
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}
 
.carousel-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: 8px;
}
 
.products-carousel,
.brands-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 0;
}
 
.products-carousel::-webkit-scrollbar,
.brands-carousel::-webkit-scrollbar {
    display: none;
}
 
.carousel-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #0149ad;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}
 
.carousel-button:hover {
    background: #00357d;
    transform: scale(1.08);
}
 
.carousel-button:active {
    transform: scale(0.95);
}
 
/* ===================================
   CARDS DE PRODUTOS
=================================== */
 
.product-card {
    width: calc(25% - 18px);
    min-width: 250px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
 
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #0149ad;
}
 
.product-image {
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
}
 
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
 
.product-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.3;
}
 
.product-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}
 
.product-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
 
.btn-whatsapp-small {
    background: #25d366;
    color: white;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}
 
.btn-whatsapp-small:hover {
    background: #1cb955;
}
 
.btn-whatsapp-small:active {
    transform: scale(0.98);
}
 
/* ===================================
   SOBRE
=================================== */
 
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
 
.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0149ad;
}
 
.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}
 
/* ===================================
   FEATURES / DIFERENCIAIS
=================================== */
 
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 24px;
}
 
.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s ease;
}
 
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}
 
.feature-icon {
    font-size: 52px;
    color: #0149ad;
    margin-bottom: 18px;
}
 
.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}
 
.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}
 
/* ===================================
   FILIAIS
=================================== */
 
.locations {
    background: #f8f8f8;
}
 
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 24px;
}
 
.location-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: 0.3s ease;
}
 
.location-card:hover {
    transform: translateY(-5px);
    border-color: #0149ad;
}
 
.location-card h4 {
    margin-bottom: 14px;
    font-size: 18px;
}
 
.location-info {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}
 
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: #25d366;
    text-decoration: none;
    font-weight: 700;
}
 
/* ===================================
   DEPOIMENTOS
=================================== */
 
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 24px;
}
 
.testimonial-card {
    background: #f9f9f9;
    padding: 24px;
    border-left: 5px solid #0149ad;
    border-radius: 8px;
}
 
.testimonial-text {
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
    font-style: italic;
}
 
.testimonial-author {
    font-weight: 700;
}
 
.testimonial-role {
    color: #999;
    font-size: 13px;
}
 
/* ===================================
   MARCAS PARCEIRAS
=================================== */
 
.brand-card {
    flex: 0 0 180px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s ease;
}
 
.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
 
.brand-image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
 
.brand-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
 
.brand-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
 
.brand-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}
 
/* ===================================
   CTA
=================================== */
 
.cta-section {
    background: linear-gradient(135deg,#f5f5f5,#fafafa);
    padding: 80px 20px;
    text-align: center;
}
 
.cta-content {
    max-width: 700px;
    margin: auto;
}
 
.cta-section h2 {
    font-size: 40px;
    margin-bottom: 18px;
    color: #0149ad;
}
 
.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}
 
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
 
/* ===================================
   FOOTER
=================================== */
 
.footer {
    background: #222;
    color: #ccc;
    padding: 50px 20px;
}
 
.footer-content {
    max-width: 1200px;
    margin: auto;
}
 
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 30px;
    margin-bottom: 30px;
}
 
.footer-column h4 {
    color: white;
    margin-bottom: 14px;
}
 
.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s ease;
}
 
.footer-column a:hover {
    color: #f2832a;
}
 
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 13px;
}
 
/* ===================================
   RESPONSIVE - TABLET (≤1024px)
=================================== */
 
@media (max-width: 1024px) {
    .hero { 
        height: 450px; 
    }
 
    .nav-menu { 
        gap: 20px; 
    }
 
    .product-card {
        width: calc(33.333% - 16px);
        min-width: 200px;
    }
 
    .section {
        padding: 50px 16px;
    }
 
    .section-title {
        font-size: 32px;
    }
 
    .about-grid {
        gap: 30px;
    }
}
 
/* ===================================
   RESPONSIVE - MOBILE (≤768px)
=================================== */
 
@media (max-width: 768px) {
    /* HEADER */
    .header-content {
        padding: 12px 16px;
    }
 
    .logo img {
        max-height: 50px;
    }
 
    .nav-menu { 
        display: none; 
    }
 
    .whatsapp-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
 
    /* HERO */
    .hero { 
        height: 300px;
    }
 
    .hero-carousel-button {
        width: 44px;
        height: 44px;
    }
 
    .hero-carousel-button svg {
        width: 22px;
        height: 22px;
    }
 
    .hero-prev { 
        left: 12px; 
    }
 
    .hero-next { 
        right: 12px; 
    }
 
    .hero-indicators { 
        bottom: 16px; 
        gap: 8px; 
    }
 
    .hero-indicator { 
        width: 8px; 
        height: 8px; 
    }
 
    .hero-indicator.active { 
        width: 24px; 
    }
 
    /* SEÇÕES */
    .section {
        padding: 40px 16px;
    }
 
    .section-title {
        font-size: 26px;
        margin-bottom: 8px;
    }
 
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }
 
    /* PRODUTOS */
    .product-card {
        width: calc(50% - 12px);
        min-width: auto;
    }
 
    .product-image {
        height: 180px;
    }
 
    .product-info {
        padding: 16px;
    }
 
    .product-name {
        font-size: 15px;
        margin-bottom: 8px;
    }
 
    .product-description {
        font-size: 13px;
        margin-bottom: 14px;
    }
 
    .product-buttons {
        gap: 8px;
    }
 
    .btn-whatsapp-small {
        padding: 8px;
        font-size: 12px;
    }
 
    /* CAROUSEL */
    .carousel-container {
        gap: 12px;
    }
 
    .carousel-button {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
 
    /* SOBRE */
    .about-grid { 
        grid-template-columns: 1fr;
        gap: 20px;
    }
 
    .about-text h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }
 
    .about-text p {
        font-size: 14px;
        margin-bottom: 12px;
    }
 
    /* FEATURES */
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }
 
    .feature-card {
        padding: 20px 16px;
    }
 
    .feature-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
 
    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
 
    .feature-card p {
        font-size: 13px;
    }
 
    /* FILIAIS */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
 
    .location-card {
        padding: 18px;
    }
 
    .location-info {
        font-size: 13px;
        line-height: 1.6;
    }
 
    /* DEPOIMENTOS */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
 
    .testimonial-card {
        padding: 18px;
    }
 
    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }
 
    /* CTA */
    .cta-section {
        padding: 50px 16px;
    }
 
    .cta-section h2 {
        font-size: 28px;
        margin-bottom: 14px;
    }
 
    .cta-section p {
        font-size: 15px;
        margin-bottom: 20px;
    }
 
    .cta-buttons {
        gap: 10px;
    }
 
    .cta-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
        flex: 1;
    }
 
    /* WHATSAPP FLUTUANTE */
    .whatsapp-floating {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
        font-size: 26px;
    }
 
    /* MARCAS */
    .brand-card {
        flex: 0 0 150px;
        padding: 16px;
    }
 
    .brand-image {
        height: 80px;
        margin-bottom: 12px;
    }
 
    .brand-name {
        font-size: 14px;
        margin-bottom: 8px;
    }
 
    .brand-description {
        font-size: 12px;
    }
 
    /* FOOTER */
    .footer {
        padding: 40px 16px;
    }
 
    .footer-grid {
        gap: 20px;
        margin-bottom: 20px;
    }
 
    .footer-column h4 {
        margin-bottom: 10px;
    }
 
    .footer-column a {
        margin-bottom: 8px;
        font-size: 13px;
    }
 
    .footer-bottom {
        padding-top: 16px;
        font-size: 12px;
    }
}
 
/* ===================================
   RESPONSIVE - MOBILE PEQUENO (≤480px)
=================================== */
 
@media (max-width: 480px) {
    .header-content {
        padding: 10px 12px;
    }
 
    .logo img {
        max-height: 45px;
    }
 
    .whatsapp-btn {
        padding: 7px 12px;
        font-size: 12px;
    }
 
    /* HERO */
    .hero {
        height: 220px;
    }
 
    .hero-carousel-button {
        width: 38px;
        height: 38px;
    }
 
    .hero-carousel-button svg {
        width: 18px;
        height: 18px;
    }
 
    .hero-prev { 
        left: 8px; 
    }
 
    .hero-next { 
        right: 8px; 
    }
 
    .hero-indicators { 
        bottom: 12px; 
    }
 
    .hero-indicator { 
        width: 6px; 
        height: 6px; 
    }
 
    .hero-indicator.active { 
        width: 20px; 
    }
 
    /* SEÇÕES */
    .section {
        padding: 30px 12px;
    }
 
    .section-title {
        font-size: 22px;
        margin-bottom: 6px;
    }
 
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
 
    /* PRODUTOS */
    .product-card {
        width: 100%;
    }
 
    .product-image {
        height: 160px;
    }
 
    .carousel-button {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
 
    /* FEATURES */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
 
    /* CTA */
    .cta-section {
        padding: 40px 12px;
    }
 
    .cta-section h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
 
    .cta-section p {
        font-size: 14px;
    }
 
    .cta-buttons {
        flex-direction: column;
        gap: 8px;
    }
 
    .cta-buttons .btn {
        width: 100%;
    }
 
    /* WHATSAPP */
    .whatsapp-floating {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
 
    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
 
/* ===================================
   ORIENTAÇÃO PAISAGEM (LANDSCAPE)
=================================== */
 
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: 250px;
    }
 
    .section {
        padding: 30px 20px;
    }
 
    .section-title {
        font-size: 28px;
    }
}