/* ==========================================================================
   DESIGN SYSTEM - JUBA MATERIAIS DE CONSTRUÇÃO
   ========================================================================== */

:root {
    /* Cores */
    --primary: #E65F00;         /* Laranja Construção Forte */
    --primary-hover: #C54E00;   /* Laranja Escuro para Hover */
    --primary-light: #FFF0E6;   /* Laranja claro para fundos leves */
    --secondary: #1E2229;       /* Cinza Escuro Industrial */
    --secondary-light: #2A303A; /* Cinza intermédio */
    --accent: #007BFF;          /* Azul Confiança para detalhes */
    
    --bg-main: #FAFAFC;         /* Fundo Principal */
    --bg-white: #FFFFFF;        /* Fundo Puro */
    --bg-footer: #0D0F12;       /* Fundo Rodapé */
    
    --text-main: #2C3E50;       /* Texto Principal */
    --text-muted: #475569;      /* Texto Secundário/Suave (Acessibilidade Contrast WCAG AA) */
    --text-light: #ECF0F1;      /* Texto Claro em fundos escuros */
    
    /* Tipografia */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espaçamento e Bordas */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Largura Máxima */
    --max-width: 1280px;
}

/* ==========================================================================
   RESET E CONFIGURAÇÕES GERAIS
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.overflow-hidden {
    overflow: hidden !important;
}

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

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

ul {
    list-style: none;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary);
}

/* Dividers */
.divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 16px auto;
    border-radius: var(--radius-full);
}

/* Secções */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.95rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(230, 95, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 95, 0, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--secondary);
    border-color: var(--bg-white);
    transform: translateY(-2px);
}

/* Efeito Shimmer para o Botão Principal */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -60%;
    }
    100% {
        left: 140%;
    }
}

/* ==========================================================================
   CABEÇALHO E NAVBAR (GLASSMORPHISM)
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: block;
    width: 182px;
    height: 70px;
    flex-shrink: 0;
}

.main-logo {
    height: 70px;
    width: auto;
    max-width: none !important;
    object-fit: contain;
    transition: var(--transition);
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.btn-nav {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(230, 95, 0, 0.2);
}

.nav-menu a.btn-nav::after {
    display: none;
}

.nav-menu a.btn-nav:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(230, 95, 0, 0.3);
}

.contact-quick {
    display: flex;
    align-items: center;
}

.mobile-cta {
    display: none;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    border: 2px solid var(--primary-light);
    background-color: var(--primary-light);
    padding: 8px 18px;
    border-radius: var(--radius-full);
}

.phone-link:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

/* ==========================================================================
   SECÇÃO HERO (IMPACTO VISUAL)
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 120px;
    background: url('fotos/hero_bg.webp') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: var(--bg-white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 34, 41, 0.95) 0%, rgba(13, 15, 18, 0.8) 100%);
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
    margin-bottom: 50px;
}

/* Animações sequenciais de entrada */
.hero-content-container > * {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUpHero 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-content-container .hero-badge {
    animation-delay: 0.15s;
}

.hero-content-container h1 {
    animation-delay: 0.3s;
}

.hero-content-container p {
    animation-delay: 0.45s;
}

.hero-content-container .hero-actions {
    animation-delay: 0.6s;
}

@keyframes fadeInUpHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(230, 95, 0, 0.2);
    border: 1px solid rgba(230, 95, 0, 0.4);
    color: #FF8F3D;
    font-family: var(--font-title);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.hero-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-actions .btn {
    min-width: 180px;
}

.hero-actions .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.hero-actions .btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--secondary);
    border-color: var(--bg-white);
}

/* Hero Features Bar */
.hero-features-bar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    gap: 24px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.25rem;
    color: var(--primary);
}

.feature-text h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   SECÇÃO ESTADO E HORÁRIO (TRUST ELEMENT)
   ========================================================================== */

.status-section {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.status-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-bottom: 4px solid var(--primary);
}

.status-indicator-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: center;
    background-color: var(--bg-main);
    padding: 10px 24px;
    border-radius: var(--radius-full);
}

.status-pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-muted);
    position: relative;
}

.status-pulse.open {
    background-color: #2ECC71;
}

.status-pulse.open::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #2ECC71;
    top: 0;
    left: 0;
    animation: pulse 1.8s infinite ease-in-out;
}

.status-pulse.closed {
    background-color: #E74C3C;
}

.status-text {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--secondary);
}

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

.schedule-col {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 16px;
}

.schedule-col.border-left {
    border-left: 1px solid #E2E8F0;
}

.schedule-col i {
    font-size: 1.75rem;
    color: var(--primary);
    margin-top: 2px;
}

.schedule-col h5 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.schedule-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.schedule-col p.text-muted {
    color: #A0AEC0;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.7);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* ==========================================================================
   SECÇÃO SERVIÇOS E MATERIAIS
   ========================================================================== */

.services-section {
    background-color: var(--bg-main);
}

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

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card * {
    position: relative;
    z-index: 2;
}

.service-card .card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    z-index: 1;
    transition: var(--transition);
    pointer-events: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary);
    z-index: 3;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 95, 0, 0.15);
}

.service-card:hover .card-bg-img {
    opacity: 0.12;
    transform: scale(1.08);
}

.service-card:hover::before {
    height: 100%;
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 24px;
}

.btn-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: auto;
    text-decoration: none;
}

.btn-card-cta i {
    transition: transform 0.3s ease;
}

.btn-card-cta:hover {
    color: var(--primary-hover);
}

.btn-card-cta:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   SECÇÃO MARCAS PARCEIRAS (INFINITE CAROUSEL)
   ========================================================================== */

.brands-section {
    background-color: var(--bg-white);
    overflow: hidden;
    padding-bottom: 80px;
}

.brands-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brands-carousel-container::before,
.brands-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scrollBrands 55s linear infinite;
    gap: 50px;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-slide {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: none;
    opacity: 0.85;
    transition: var(--transition);
}

.brand-slide:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

.brand-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 25px));
    }
}

/* ==========================================================================
   SECÇÃO CONTACTO E ORÇAMENTO (CONVERSÃO)
   ========================================================================== */

.contact-section {
    background-color: var(--bg-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: start;
}

.contact-info-block h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.lead-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-details span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.info-details a {
    display: block;
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
}

.info-details a:hover {
    color: var(--primary);
}

.info-details p {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 500;
}

/* Bloco do Formulário */
.contact-form-block {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.form-header {
    margin-bottom: 36px;
}

.form-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #CBD5E1;
    border-radius: var(--radius-sm);
    background-color: var(--bg-main);
    color: var(--secondary);
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94A3B8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(230, 95, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group textarea {
    resize: vertical;
}

/* Erros de Validação */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #E74C3C;
    background-color: #FDEDEC;
}

.form-group.error input:focus,
.form-group.error select:focus,
.form-group.error textarea:focus {
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.error-msg {
    display: none;
    color: #E74C3C;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 6px;
}

.form-group.error .error-msg {
    display: block;
}

/* Botão Submit */
.btn-submit {
    width: 100%;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(230, 95, 0, 0.3);
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 95, 0, 0.4);
}

.btn-submit:disabled {
    background-color: #CBD5E1;
    color: #94A3B8;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* Estado de Sucesso */
.form-success-alert {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.form-success-alert i {
    font-size: 4rem;
    color: #2ECC71;
    margin-bottom: 20px;
    animation: scaleCheck 0.4s ease-out;
}

.form-success-alert h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.form-success-alert p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@keyframes scaleCheck {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */

.main-footer {
    background-color: var(--bg-footer);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.925rem;
}

.footer-top {
    padding: 80px 0 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.footer-brand p {
    line-height: 1.7;
}

.footer-links h4,
.footer-contacts h4 {
    color: var(--bg-white);
    margin-bottom: 24px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contacts h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul,
.footer-contacts ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contacts i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 4px;
}

.footer-contacts a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVIDADE E ADAPTAÇÕES MOBILE (MOBILE-FIRST)
   ========================================================================== */

@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.75rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .main-header {
        z-index: 1200;
    }

    /* Header e Navegação */
    .header-container {
        padding: 10px 20px;
    }
    
    .contact-quick {
        display: none; /* Oculta contacto no cabeçalho */
    }
    
    .logo-link {
        width: 125px;
        height: 48px;
        flex-shrink: 0;
    }
    
    .main-logo {
        height: 48px;
        width: auto;
        max-width: none !important;
        object-fit: contain;
    }
    
    .mobile-cta {
        display: block;
        margin-left: auto;
        margin-right: 12px;
        z-index: 1001;
    }
    
    .btn-mobile-cta {
        position: relative !important;
        overflow: hidden !important;
        background-color: var(--primary) !important;
        color: var(--bg-white) !important;
        padding: 7px 14px !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        border-radius: var(--radius-full) !important;
        box-shadow: 0 4px 10px rgba(230, 95, 0, 0.3) !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        text-decoration: none !important;
        border: none !important;
        transition: var(--transition) !important;
    }
    
    .btn-mobile-cta:hover {
        background-color: var(--primary-hover) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 6px 14px rgba(230, 95, 0, 0.4) !important;
    }
    
    .btn-mobile-cta::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        top: -50% !important;
        left: -60% !important;
        width: 30% !important;
        height: 200% !important;
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%
        ) !important;
        transform: rotate(30deg) !important;
        animation: shimmer 3s infinite !important;
    }

    @media (max-width: 360px) {
        .btn-mobile-cta {
            padding: 6px 10px !important;
            font-size: 0.75rem !important;
        }
        .btn-mobile-cta i {
            display: none !important;
        }
        .mobile-cta {
            margin-right: 8px;
        }
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1100;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        z-index: 1050;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        padding: 60px 30px 40px 30px;
        overflow-y: auto;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 1.05rem;
        display: block;
        padding: 6px 0;
    }

    .nav-menu a.btn-nav {
        margin-top: 10px;
        padding: 10px 16px;
        display: inline-block;
        width: 100%;
        max-width: 240px;
        box-sizing: border-box;
    }
    
    .mobile-menu-btn.open .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-btn.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.open .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Overlay do Menu Móvel */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(13, 15, 18, 0.55);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    /* Otimização dos Botões Flutuantes no Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    
    /* Hero */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .hero-section p {
        font-size: 1.05rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-features-bar {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }
    
    /* Schedule / Status */
    .status-section {
        margin-top: 30px;
        padding: 0 20px;
    }
    
    .status-card {
        padding: 24px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .schedule-col {
        padding: 0;
    }
    
    .schedule-col.border-left {
        border-left: none;
        border-top: 1px solid #E2E8F0;
        padding-top: 20px;
    }
    
    /* Contact Form */
    .contact-form-block {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP (CONVERSÃO DIRETA)
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.whatsapp-float:hover {
    background-color: #20BA56;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    color: #FFFFFF;
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   SECÇÃO COMO FUNCIONA
   ========================================================================== */
.how-it-works-section {
    background-color: var(--bg-white);
}

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

.step-card {
    position: relative;
    padding: 40px 30px;
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 95, 0, 0.2);
}

.step-number {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(230, 95, 0, 0.15);
    margin-bottom: 10px;
    line-height: 1;
    transition: var(--transition);
}

.step-card:hover .step-number {
    color: var(--primary);
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   SECÇÃO PERGUNTAS FREQUENTES (FAQs ACCORDION)
   ========================================================================== */
.faq-section {
    background-color: var(--bg-main);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(230, 95, 0, 0.2);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    color: var(--secondary);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
    background-color: #FAFBFD;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-bottom: 24px;
}

/* Estado Ativo do Acordião */
.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

/* ==========================================================================
   BANNER COMPARATIVO DE ORÇAMENTOS (CAPTADOR DE LEADS)
   ========================================================================== */
.budget-compare-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #171a20 100%);
    color: var(--bg-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.budget-compare-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 95, 0, 0.15) 0%, rgba(230, 95, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.compare-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.compare-content {
    max-width: 700px;
}

.compare-tag {
    display: inline-block;
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.compare-content h2 {
    color: var(--bg-white);
    font-size: 2.25rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.compare-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
}

.compare-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    width: 320px;
}

.compare-actions .btn {
    width: 100%;
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
}

.btn-compare-wa {
    background-color: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-compare-wa:hover {
    background-color: #20BA56;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #FFFFFF;
}

.compare-actions .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.compare-actions .btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--secondary);
}

/* ==========================================================================
   TRUST BADGES DO FORMULÁRIO
   ========================================================================== */
.form-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: 0.725rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-item i {
    font-size: 1.15rem;
    color: var(--primary);
}

/* ==========================================================================
   MAPA INCORPORADO E RESPONSIVIDADE ADICIONAL
   ========================================================================== */
.map-wrapper {
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.map-wrapper:hover {
    box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
    .compare-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .compare-content {
        max-width: 100%;
    }
    
    .compare-actions {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .form-trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 10px;
    }
}

/* ==========================================================================
   BOTÃO VOLTAR AO TOPO (USABILIDADE)
   ========================================================================== */
.back-to-top-btn {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    right: 105px;
    background-color: var(--secondary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 998;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(230, 95, 0, 0.4);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .back-to-top-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 80px;
    }
}

/* ==========================================================================
   SECÇÃO SOLUÇÕES À MEDIDA (PARA QUEM É)
   ========================================================================== */
.audiences-section {
    background-color: var(--bg-white);
}

.audiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.audience-card {
    background-color: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.5);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.b2c-card::before {
    background-color: var(--secondary);
}

.b2b-card::before {
    background-color: var(--primary);
}

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

.b2b-card:hover {
    border-color: rgba(230, 95, 0, 0.2);
}

.audience-icon {
    width: 70px;
    height: 70px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    transition: var(--transition);
}

.b2c-card .audience-icon {
    color: var(--secondary);
}

.audience-card:hover .audience-icon {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: scale(1.05);
}

.b2c-card:hover .audience-icon {
    background-color: var(--secondary);
    color: var(--bg-white);
}

.audience-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.audience-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.audience-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.audience-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.925rem;
    color: var(--text-main);
    line-height: 1.5;
}

.audience-features li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.b2c-card .audience-features li i {
    color: var(--secondary);
}

.audience-card .btn {
    align-self: flex-start;
    width: 100%;
}

@media (max-width: 768px) {
    .audiences-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .audience-card {
        padding: 40px 24px;
    }
}

/* ==========================================================================
   SECÇÃO TESTEMUNHOS (PROVA SOCIAL)
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-white);
}

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

.testimonial-card {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.5);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 95, 0, 0.15);
}

.stars {
    color: #F1C40F;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-main);
    font-size: 0.925rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.client-info h4 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 2px;
}

.client-info span {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   INPUT DE UPLOAD DE FICHEIRO ESTILIZADO (DRAG & DROP EFFECT)
   ========================================================================== */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 62px;
    border: 2px dashed #CBD5E1;
    border-radius: var(--radius-sm);
    background-color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-wrapper:hover,
.file-upload-wrapper.dragover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.file-upload-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 5;
}

.file-upload-trigger i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.file-upload-wrapper:hover .file-upload-trigger i {
    transform: translateY(-3px);
}

.file-optional {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 4px;
}

.file-help-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

/* ==========================================================================
   NOVOS CTAS INTERMÉDIOS
   ========================================================================== */
.how-it-works-action {
    text-align: center;
    margin-top: 50px;
}

.faq-support-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
}

.faq-support-cta p {
    font-family: var(--font-title);
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.btn-faq-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: #FFFFFF;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
    text-decoration: none;
}

.btn-faq-wa:hover {
    background-color: #20BA56;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
    color: #FFFFFF;
}

/* ==========================================================================
   SECÇÃO ÁREA DE DISTRIBUIÇÃO E ENTREGAS
   ========================================================================== */
.delivery-section {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.delivery-card {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.delivery-card:nth-child(even)::before {
    background-color: var(--primary);
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 95, 0, 0.2);
}

.delivery-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.delivery-card-header i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: var(--transition);
}

.delivery-card:hover .delivery-card-header i {
    transform: scale(1.1) translateY(-2px);
}

.delivery-card-header h3 {
    font-size: 1.2rem;
    font-family: var(--font-title);
    color: var(--secondary);
    font-weight: 700;
}

.delivery-locations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-locations-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.delivery-locations-list li i {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.delivery-card:hover .delivery-locations-list li {
    color: var(--secondary);
}

.delivery-card:hover .delivery-locations-list li i {
    color: var(--primary);
    transform: translateX(2px);
}

/* Barra inferior informativa */
.delivery-footer-bar {
    margin-top: 50px;
    background-color: var(--primary-light);
    border: 1px solid rgba(230, 95, 0, 0.15);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    box-shadow: var(--shadow-sm);
}

.delivery-footer-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.delivery-footer-content i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.delivery-footer-content p {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   SECÇÃO GALERIA DE INSPIRAÇÃO & AMBIENTES
   ========================================================================== */
.inspiration-section {
    background-color: var(--bg-main);
    padding: 100px 0;
}

.inspiration-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(100, 116, 139, 0.25);
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--bg-white);
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(230, 95, 0, 0.25);
}

/* Contentor principal do slider */
.inspiration-slider-container {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Viewport do carrossel */
.inspiration-slider-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
    transition: opacity 0.25s ease-in-out;
}

.inspiration-slider-viewport.fade-out {
    opacity: 0;
}

/* Track que move os slides */
.inspiration-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.inspiration-slider-track.no-transition {
    transition: none !important;
}

/* Cada slide individual */
.inspiration-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    transition: opacity 0.5s ease;
}

.inspiration-slide.hide-slide {
    display: none; /* Não ocupa espaço no flex track */
}

/* Conteúdo interno do slide */
.slide-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    min-height: 400px;
    width: 100%;
}

/* Wrapper da imagem */
.slide-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%; /* Herda a altura total da grid do card, eliminando tiras brancas */
    width: 100%;
    min-width: 0;
}

/* Imagem quadrada integrada */
.slide-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

/* Efeito hover suave na imagem */
.inspiration-slide:hover .slide-img-wrapper img {
    transform: scale(1.03);
}

/* Informações técnicas no slide */
.slide-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
    border-left: 1px solid rgba(100, 116, 139, 0.1);
    min-width: 0;
}

.slide-info h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: var(--font-title);
    position: relative;
    padding-bottom: 12px;
}

.slide-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--radius-sm);
}

.slide-desc-wrapper {
    margin-bottom: 32px;
}

.slide-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.slide-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.slide-cta {
    align-self: flex-start;
    padding: 12px 28px;
    font-weight: 700;
}

/* Setas do slider */
.slider-arrow {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid rgba(100, 116, 139, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 10;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(230, 95, 0, 0.25);
    transform: translateY(-2px);
}

.slider-arrow:active {
    transform: translateY(0);
}

.slider-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
    transform: none !important;
}

/* Indicadores de bolinha (dots) */
.slider-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(100, 116, 139, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator-dot:hover {
    background-color: rgba(100, 116, 139, 0.6);
}

.indicator-dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: var(--radius-sm);
}

/* Responsividade */
@media (max-width: 1200px) {
    .delivery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .slide-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .slide-img-wrapper {
        height: 380px;
    }
    
    .slide-img-wrapper img {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .slide-info {
        padding: 30px;
        border-left: none;
        border-top: 1px solid rgba(100, 116, 139, 0.1);
    }
    
    .slide-info h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .slide-desc-wrapper {
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .delivery-section {
        padding: 80px 0;
    }
    
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .delivery-footer-bar {
        padding: 20px;
    }
    
    .delivery-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .inspiration-slider-container {
        gap: 0;
    }
    
    .slider-arrow {
        position: absolute;
        top: 190px; /* Alinhada verticalmente com o centro da imagem (380px / 2) */
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    
    .slider-arrow:hover {
        background-color: var(--primary);
    }
    
    .slider-arrow.prev-btn {
        left: 12px;
    }
    
    .slider-arrow.next-btn {
        right: 12px;
    }
    
    .inspiration-filters {
        gap: 12px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 0 !important;
    }
    
    .hero-section {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }
    
    .hero-section h1 {
        font-size: 1.85rem !important;
    }

    .section-title h2 {
        font-size: 1.65rem !important;
    }
    
    .container {
        padding: 0 16px !important;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .slide-img-wrapper {
        height: 280px;
    }
    
    .slider-arrow {
        top: 140px; /* 280px / 2 */
        width: 38px;
        height: 38px;
    }
    
    .slider-arrow.prev-btn {
        left: 8px;
    }
    
    .slider-arrow.next-btn {
        right: 8px;
    }
    
    .inspiration-filters {
        gap: 8px;
    }
    
    .filter-btn {
        flex: 1;
        text-align: center;
        padding: 10px 8px;
        font-size: 0.85rem;
    }
}

