/*
Theme Name: Plasfar Theme
Theme URI: https://plasfar.com.br
Author: Plasfar Indústria
Author URI: https://plasfar.com.br
Description: Tema personalizado para a Plasfar – Indústria de Artigos de Plásticos. Desenvolvido com CPTs e campos personalizados nativos do WordPress.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: plasfar
Tags: business, custom-post-types, responsive
*/

/* =========================================
   DESIGN TOKENS & BASE
   ========================================= */
:root {
    --color-primary: #003764;
    --color-primary-hover: #004a87;
    --color-primary-dark: #002442;
    --color-orange: #ff6c0e;
    --color-orange-hover: #ff8533;
    --color-dark: #1a1a1a;
    --color-gray-dark: #333;
    --color-gray: #666;
    --color-gray-light: #f8f9fa;
    --color-white: #ffffff;
    --font-main: 'Poppins', 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --radius: 10px;
    --radius-pill: 50px;
    --shadow-sm: 0 5px 30px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
}

* {
    font-family: var(--font-main);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-white);
    color: var(--color-gray-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

/* =========================================
   UTILITY CLASSES
   ========================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--color-gray);
    font-size: 16px;
    margin-bottom: 50px;
}

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

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary,
.btn-primary:visited {
    background: var(--color-primary);
    color: white;
    padding: 14px 35px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
    color: white;
}

.btn-orange,
.btn-orange:visited {
    background: var(--color-orange);
    color: white;
    padding: 14px 35px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-orange:hover {
    background: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    color: white;
}

.btn-secondary,
.btn-secondary:visited {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 33px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-primary);
}

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.navbar-logo img {
    height: 35px;
    width: auto;
    flex-shrink: 0;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.navbar-menu a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #374151;
    transition: color 0.2s;
}

.navbar-menu a:hover,
.navbar-menu .current-menu-item a,
.navbar-menu .current_page_item a {
    color: var(--color-primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #374151;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Previne corte da barra de navegação no mobile */
    background-color: #003764; /* Fundo sempre sólido e escuro */
    z-index: 9999;
    
    /* Layout Interno Seguro Contra Cortes */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    overflow-y: auto; /* Se o menu for mto alto, permite rolar pra baixo em vez de cortar */
    text-align: center;

    /* Animação: Desliza da direita para a esquerda */
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.4s;
}

.mobile-menu.open {
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    margin: auto 0; /* Centraliza verticalmente o menu mesmo com justify-content flex-start */
}

.mobile-menu a {
    display: block;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.25rem 0;
    transition: color 0.2s, transform 0.2s;
}

.mobile-menu a:hover {
    color: white;
    transform: scale(1.05);
}

.mobile-menu .btn-orange {
    display: inline-block;
    margin-top: 2rem;
    font-size: 15px;
    padding: 14px 36px;
}

/* Botão fechar (X) no canto superior direito */
.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.mobile-menu-close:hover {
    opacity: 1;
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero-section {
    margin-top: 0;
}

.heroSwiper {
    height: 650px;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
}

.hero-slide {
    background: linear-gradient(135deg, #003764 0%, #002442 100%);
}

.hero-slide-2 {
    background: linear-gradient(135deg, #004a87 0%, #003764 100%);
}

.hero-slide-3 {
    background: linear-gradient(135deg, #005b9f 0%, #003764 100%);
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f8f9fa;
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-box .icon {
    color: var(--color-primary);
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.feature-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.feature-box p {
    color: var(--color-gray);
    font-size: 14px;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-bg {
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    border-radius: var(--radius);
    transform: rotate(3deg);
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius);
    height: 500px;
    overflow: hidden;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-text .label {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.5rem;
}

.about-text p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-media {
    background: var(--color-primary);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-media i {
    color: white;
    font-size: 4rem;
}

.service-card-body {
    padding: 2rem;
}

.service-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.service-card-body p {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 1rem;
}

.service-card-body a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
}

.service-card-body a:hover {
    text-decoration: underline;
}

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.products-section {
    padding: 6rem 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #f8f9fa;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.product-card-thumb {
    background: #ffffff;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card-body {
    padding: 1.5rem;
}

.product-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.product-card-body .badge {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
}

.product-card-body p {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 1rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: #f59e0b;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #1f2937;
    font-size: 15px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--color-gray);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 5rem 0;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    font-size: 15px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* =========================================
   BLOG PREVIEW
   ========================================= */
.blog-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card-thumb {
    height: 200px;
    overflow: hidden;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    font-size: 13px;
    color: var(--color-gray);
    margin-bottom: 0.75rem;
}

.blog-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
    line-height: 1.4;
}

.blog-card-body p {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 1rem;
}

.blog-card-body a.read-more {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
}

/* =========================================
   PAGE HERO (Interna)
   ========================================= */
.page-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #003764 0%, #002442 100%);
    color: white;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   SOBRE PAGE
   ========================================= */
.about-content {
    padding: 6rem 0;
    background: white;
}

.about-content .prose {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-content p.lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
}

.about-highlight {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: var(--radius);
    margin-top: 3rem;
    text-align: center;
}

.about-highlight .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.about-highlight .tagline {
    font-size: 1.1rem;
    color: #374151;
    font-style: italic;
}

.values-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.value-card .icon {
    color: var(--color-primary);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.value-card p {
    color: var(--color-gray);
    font-size: 15px;
}

/* =========================================
   CONTATO PAGE
   ========================================= */
.contact-section {
    padding: 6rem 0;
    background: white;
    margin-top: 80px;
}

.contact-title {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.contact-info-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
}

.contact-info-card .icon {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info-card p {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 0.25rem;
}

.contact-form-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-wrap h3 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.form-box {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: var(--radius);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 14px;
    color: #1f2937;
    font-family: var(--font-main);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 15px;
    padding: 15px;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

/* =========================================
   PRODUTOS PAGE
   ========================================= */
.products-page {
    background: #f9fafb;
    padding: 3rem 0;
}

.products-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.products-sidebar {
    width: 260px;
    flex-shrink: 0;
}

.sidebar-box {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-sm);
}

.sidebar-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.sidebar-section {
    margin-bottom: 1.5rem;
}

.sidebar-section h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.filter-item {
    padding: 0.6rem 0.75rem;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
    color: #374151;
    margin-bottom: 0.25rem;
}

.filter-item:hover {
    background: #f3f4f6;
}

.filter-item.active {
    background: var(--color-primary);
    color: white;
}

.products-main {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.products-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

#product-count {
    color: var(--color-gray);
    font-size: 14px;
}

#products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1.25rem;
}

.footer-logo {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-col ul li i {
    color: var(--color-orange);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 12px;
}

.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-newsletter p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.65rem 1rem;
    font-size: 13px;
    color: white;
    font-family: var(--font-main);
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-orange);
}

.newsletter-form button {
    background: var(--color-orange);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.65rem 1rem;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: var(--color-orange-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: white;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-frame {
        height: 350px;
    }

    .products-layout {
        flex-direction: column;
    }

    .products-sidebar {
        width: 100%;
    }

    .sidebar-box {
        position: static;
    }

    .sidebar-section {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: center;
    }

    .sidebar-section h4 {
        width: 100%;
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }

    .navbar-menu,
    .navbar-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .heroSwiper {
        height: 85vh;
        min-height: 480px;
        max-height: 650px;
    }

    .hero-content {
        padding-top: 60px; /* Evita que o texto fique grudado no menu fixo */
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-col ul li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .page-hero {
        padding: 6rem 0 3rem;
    }
}

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* =========================================
   SERVIÇOS PAGE — Rows alternantes
   ========================================= */
.servico-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e5e7eb;
}

.servico-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.servico-row--reverse {
    direction: rtl;
}

.servico-row--reverse>* {
    direction: ltr;
}

.servico-media {
    border-radius: var(--radius);
    overflow: hidden;
}

.servico-media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.servico-icon-box {
    background: linear-gradient(135deg, #003764 0%, #002442 100%);
    border-radius: var(--radius);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servico-icon-box i {
    font-size: 6rem;
    color: white;
    opacity: 0.9;
}

.servico-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.servico-content {
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
}

.servico-content p {
    margin-bottom: 1rem;
}

.servico-text>p {
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
}

.servico-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 900px) {

    .servico-row,
    .servico-row--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .servico-icon-box,
    .servico-media img {
        height: 260px;
    }
}