/* ==========================================================================
   CENTER FAGIO - SUSPENSÕES E AMORTECEDORES
   Estilo 1:1 Fiel ao Original (Ultraleve, Zero WordPress)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Lato:ital,wght@0,300;0,400;0,700;1,400&family=Ropa+Sans&display=swap');

:root {
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-title-hero: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Lato', Arial, sans-serif;
    --font-menu: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --color-primary-green: #1FB335;
    --color-green-light: #6EE496;
    --color-whatsapp: #49E670;
    --color-dark: #222222;
    --color-gray-text: #333333;
    --color-gray-desc: #777777;
    --color-border: #eaeaea;
    --color-white: #ffffff;
    --color-stars: #FFD726;

    --container-width: 1200px;
    --transition: all 0.25s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ==========================================================================
   HEADER / TOPO (Exato 1:1 ao Elementor / Royal Addons)
   ========================================================================== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 18px 0;
    transition: background 0.3s, border 0.3s, box-shadow 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-col-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-logo a {
    display: block;
    line-height: 0;
}

.header-logo img {
    max-width: 280px;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

/* Telefones ao lado do Logo (Sem borda separadora) */
.header-phones {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0;
    border: none;
}

.header-phone-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s;
}

.header-phone-item:hover {
    color: #1fb335;
}

.header-phone-item i {
    color: #6ee496;
    font-size: 15px;
    width: 15px;
    text-align: center;
    transition: color 0.3s;
}

/* Menu de Navegação à Direita */
.header-col-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin-left: 11px;
    margin-right: 11px;
}

.nav-link {
    font-family: 'Poppins', Sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #272727;
    padding: 6px 5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link i.fa-caret-down {
    font-size: 12px;
    color: #272727;
    margin-left: 2px;
    transition: color 0.2s ease;
}

/* Efeito de Underline Pointer (Sublinhado cinza sutil #A7A1A0) */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #a7a1a0;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Hover e Item Ativo */
.nav-link:hover,
.nav-item.active > .nav-link {
    color: #1fb335;
}

.nav-link:hover i.fa-caret-down,
.nav-item.active > .nav-link i.fa-caret-down {
    color: #1fb335;
}

.nav-link:hover::after,
.nav-item.active > .nav-link::after {
    opacity: 1;
    transform: translateY(0);
}

/* Submenu Dropdown (Exato ao Royal Addons: card branco limpo sem borda verde) */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 0px 8px 0px rgba(165, 165, 165, 0.22);
    border: none;
    padding: 0;
    margin-top: 20px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 999;
}

/* Área de ponte invisível para não fechar no hover */
.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    background-color: #ffffff;
    font-family: 'Poppins', Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #323232;
    padding: 10px 15px;
    text-transform: none;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-link:hover,
.dropdown-link.active {
    background-color: #00ad4e;
    color: #ffffff;
}

/* Botões Mobile (Completamente ocultos no Desktop!) */
.mobile-close-btn {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #272727;
    font-size: 24px;
}

/* ==========================================================================
   HERO SLIDER (Exato 1:1 ao Elementor / Royal Slider)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    background: #111;
    overflow: hidden;
    height: 90vh;
    min-height: 560px;
    max-height: 780px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 45, 30, 0.28);
}

.slide-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.slide-content {
    max-width: 820px;
    text-align: right;
    color: #ffffff;
    padding: 20px 0;
}

.slide-title {
    font-family: var(--font-title-hero);
    font-size: 72px;
    font-weight: 800;
    line-height: 0.95em;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.45);
    letter-spacing: -0.5px;
}

.slide-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.55;
    color: #dddddd;
    margin-bottom: 26px;
    max-width: 620px;
    margin-left: auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.slide-btn-wrap {
    display: flex;
    justify-content: flex-end;
}

.slide-btn {
    display: inline-block;
    color: #ffffff;
    border: 1px solid #ffffff;
    background: rgba(0, 0, 0, 0.35);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 26px;
    border-radius: 1px;
    transition: var(--transition);
}

.slide-btn:hover {
    background: #ffffff;
    color: #111111;
}

/* Setas do Slider (Chevron Fino, sem caixa) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: none;
    width: 50px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow:hover {
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 15px; }
.slider-arrow.next { right: 15px; }

/* Bullets na base */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active, .slider-dot:hover {
    background-color: #ffffff;
    transform: scale(1.25);
}

/* ==========================================================================
   PROMO BOXES (2 Colunas: Ecolauber e Baterias)
   ========================================================================== */
.promo-boxes-section {
    padding: 40px 0 25px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.promo-box {
    position: relative;
    height: 290px;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
}

.promo-box-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-box-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.72) 100%);
    transition: background 0.3s ease;
}

.promo-box:hover .promo-box-bg {
    transform: scale(1.06);
}

.promo-box-content {
    position: relative;
    z-index: 2;
}

.promo-box-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.promo-box-sub {
    font-family: var(--font-body);
    font-size: 15px;
    color: #f1f5f9;
}

/* ==========================================================================
   SEÇÃO "A CENTER FAGIO SUA CASA DE SUSPENÇÕES"
   ========================================================================== */
.about-section {
    padding: 40px 0 35px;
    text-align: center;
}

.section-lead-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 14px;
}

.section-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    max-width: 1040px;
    margin: 0 auto;
}

/* ==========================================================================
   DIVISOR NOSSOS PRODUTOS
   ========================================================================== */
.divider-banner {
    background: #005691 url('../../uploads/banner.jpg') no-repeat center center / cover;
    position: relative;
    padding: 35px 0;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.divider-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 50, 90, 0.72);
}

.divider-banner-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

/* ==========================================================================
   GRID 3 PRODUTOS
   ========================================================================== */
.products-3col-section {
    padding-bottom: 50px;
}

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

.product-card {
    text-align: center;
}

.product-card-img-wrap {
    overflow: hidden;
    border-radius: 2px;
    background: #f8fafc;
    border: 1px solid #eeeeee;
    margin-bottom: 14px;
}

.product-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-img-wrap:hover .product-card-img {
    transform: scale(1.04);
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #222222;
}

.product-card-title a:hover {
    color: var(--color-primary-green);
}

/* ==========================================================================
   AVALIAÇÕES & DIFERENCIAIS (2 Colunas)
   ========================================================================== */
.reviews-features-section {
    padding: 50px 0 60px;
    background: #fdfdfd;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.dual-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Avaliações */
.dual-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.dual-heading .first {
    color: #222222;
}

.dual-heading .second {
    color: #222222;
    margin-left: 6px;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-slide-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.testimonial-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 2px;
}

.testimonial-balloon {
    background: #f7f7f7;
    border-radius: 5px;
    padding: 22px;
    position: relative;
    margin-bottom: 16px;
}

.testimonial-balloon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 30px;
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #f7f7f7 transparent;
    display: block;
    width: 0;
}

.testimonial-stars {
    color: var(--color-stars);
    font-size: 20px;
    margin-bottom: 8px;
    text-align: center;
}

.testimonial-stars .star-empty {
    color: #d8d8d8;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.55;
    color: #444444;
    text-align: center;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 6px;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.testimonial-source {
    font-size: 13px;
    color: #b7b7b7;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.testimonial-btn {
    background: transparent;
    border: none;
    color: #5FB869;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.testimonial-btn:hover {
    color: #868686;
}

/* Diferenciais (4 Boxes com ícone cinza à esquerda) */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 10px 14px;
}

.feature-icon-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    opacity: 0.54;
    transition: opacity 0.3s;
}

.feature-item:hover .feature-icon-img {
    opacity: 0.9;
}

.feature-info h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 2px;
}

.feature-info p {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-gray-desc);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   RODAPÉ (FOOTER) - Exato 1:1 ao Original (post-340.css)
   ========================================================================== */
.site-footer {
    width: 100%;
}

.footer-main {
    background-color: #60b362;
    padding: 50px 0;
    transition: background 0.3s;
}

.footer-top {
    display: grid;
    grid-template-columns: 33.6% 29% 37.4%;
    gap: 30px;
    align-items: flex-start;
}

.footer-title {
    font-family: 'Poppins', Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 4px 0;
    text-transform: none;
    letter-spacing: 0;
}

.footer-divider {
    width: 55px;
    height: 2px;
    background-color: #545454;
    margin: 4px 0 16px 0;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.footer-contact-list i {
    color: #ffffff;
    font-size: 14px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #b0b0b0;
    background-color: transparent;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-list a {
    font-family: 'Lato', Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.footer-links-list a:hover {
    opacity: 0.85;
    text-decoration: underline;
}

.footer-map-frame {
    width: 100%;
    height: 175px;
    border-radius: 2px;
    overflow: hidden;
}

.footer-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Barra inferior (Copyright) */
.footer-bottom {
    background-color: #272727;
    border-top: 1px solid #3a3a3a;
    padding: 14px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', Sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #909090;
}

.footer-bottom-inner p {
    margin: 0;
    color: #909090;
}

.footer-bottom-inner a {
    color: #909090;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-inner a:hover {
    color: #ffffff;
}

/* ==========================================================================
   WIDGETS FLUTUANTES (WHATSAPP & BACK TO TOP)
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 54px;
    height: 54px;
    background-color: var(--color-whatsapp);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.22);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: #333a48;
    color: #ffffff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
    border: none;
}

.back-to-top.show {
    opacity: 0.85;
    visibility: visible;
}

.back-to-top:hover {
    opacity: 1;
    background: var(--color-primary-green);
}

/* ==========================================================================
   PÁGINAS INTERNAS
   ========================================================================== */
.page-header-banner {
    background: #18191d;
    color: #fff;
    padding: 35px 0;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--color-primary-green);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 6px;
}

.page-subtitle {
    font-size: 16px;
    color: #94a3b8;
}

.page-content-wrap {
    padding-bottom: 60px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 35px;
}

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

.catalog-item {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.catalog-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.catalog-item-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #fafafa;
}

.catalog-item-title {
    padding: 12px 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    border-top: 1px solid #f5f5f5;
}

.catalog-sidebar-card {
    background: #fbfbfb;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    padding: 26px;
    position: sticky;
    top: 100px;
}

.catalog-sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222222;
}

.catalog-sidebar-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.btn-catalog-cta {
    display: block;
    text-align: center;
    background: var(--color-primary-green);
    color: #fff;
    padding: 12px 18px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-catalog-cta:hover {
    background: #179b2c;
    color: #fff;
}

/* Baterias */
.baterias-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.baterias-banner-img {
    border-radius: 4px;
    margin-bottom: 25px;
}

.baterias-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 24px;
}

/* Contato */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    margin-bottom: 40px;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    padding: 26px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333333;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fdfdfd;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary-green);
    background: #fff;
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.btn-submit {
    background: var(--color-primary-green);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #179b2c;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fafafa;
    padding: 18px;
    border-radius: 3px;
    border: 1px solid #eeeeee;
}

.contact-info-icon {
    font-size: 20px;
    color: var(--color-primary-green);
    margin-top: 2px;
    width: 24px;
    text-align: center;
}

.contact-info-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 3px;
}

.contact-info-text p {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
}

.contact-map-wide {
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.contact-map-wide iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   RESPONSIVIDADE (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 991px) {
    .header-phones {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -4px 0 20px rgba(0,0,0,0.12);
        flex-direction: column;
        align-items: flex-start;
        padding: 70px 20px 30px;
        transition: right 0.3s ease-in-out;
        z-index: 1050;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        justify-content: space-between;
    }

    .nav-dropdown {
        position: static;
        box-shadow: none;
        border-top: none;
        padding: 0 0 8px 14px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #f8fafc;
    }

    .nav-item.dropdown-open .nav-dropdown {
        display: block;
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease;
    }

    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-close-btn {
        position: absolute;
        top: 18px;
        right: 18px;
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
    }

    .slide-title {
        font-size: 50px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .dual-col-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-slider-section {
        height: auto;
        min-height: 480px;
        padding: 40px 0;
    }

    .slide-content {
        text-align: center;
        margin: 0 auto;
    }

    .slide-title {
        font-size: 34px;
        line-height: 1.05em;
        text-align: center;
    }

    .slide-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .slide-btn-wrap {
        justify-content: center;
    }

    .products-3col-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .header-logo img {
        max-width: 190px;
    }
}