/**
 * JC Entregas Rápidas - Estilos Principais
 * Design moderno inspirado em Apple
 */

/* ==================== RESET E VARIÁVEIS ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-red: #dc2626;
    --primary-blue: #2563eb;

    --red-dark: #b91c1c;
    --red-light: #ef4444;
    --red-lighter: #fee2e2;

    --blue-dark: #1e40af;
    --blue-light: #3b82f6;
    --blue-lighter: #dbeafe;

    --success-green: #16a34a;
    --success-light: #4ade80;
    --warning-orange: #f59e0b;
    --info-cyan: #06b6d4;

    --whatsapp-green: #25D366;
    --whatsapp-green-dark: #20BA5A;

    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f3f4f6;
    --lighter-gray: #f9fafb;
    --white: #ffffff;

    --hero-dark: #404040;

    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;

    /* Gradientes */
    --gradient-red: linear-gradient(135deg, var(--red-dark) 0%, var(--primary-red) 100%);
    --gradient-blue: linear-gradient(135deg, var(--blue-dark) 0%, var(--primary-blue) 100%);
    --gradient-mixed: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Bordas */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-red: 0 8px 24px rgba(220, 38, 38, 0.25);
    --shadow-blue: 0 8px 24px rgba(37, 99, 235, 0.25);

    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== TIPOGRAFIA ==================== */
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    opacity: 0.8;
}

/* ==================== HEADER ==================== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2px var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.logo-img {
    height: 86px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
}

.logo span {
    color: var(--primary-blue);
}

/* Navegação */
.nav {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav a:hover,
.nav a.active {
    background-color: var(--light-gray);
}

/* Botão WhatsApp no Header */
.btn-whatsapp-header {
    background-color: var(--whatsapp-green);
    color: var(--white) !important;
    padding: 0.65rem 1.5rem;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-whatsapp-header:hover {
    background-color: var(--whatsapp-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    color: var(--white) !important;
    opacity: 1;
}

.btn-whatsapp-header i {
    font-weight: 700;
    color: var(--white) !important;
}

/* Menu Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

/* Ícones de Redes Sociais */
.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.social-link i {
    color: var(--white);
}

/* Ícones de Contato no Footer */
.footer-section p i {
    margin-right: 0.5rem;
    color: var(--white);
    font-size: 1rem;
}

.footer-first-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.footer-first-section .footer-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: var(--spacing-sm);
}

/* Copyright */
.footer-bottom {
    max-width: 1200px;
    margin: var(--spacing-lg) auto 0;
    padding: var(--spacing-md);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==================== BOTÃO FLUTUANTE WHATSAPP ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--whatsapp-green);
    color: var(--white) !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-green-dark);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    color: var(--white) !important;
    opacity: 1;
}

.whatsapp-float i {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white) !important;
}

/* ==================== CONTAINER PRINCIPAL ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.main-content {
    min-height: calc(100vh - 200px);
    padding: 0;
}

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Vídeo de Fundo */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Overlay Escuro sobre o Vídeo */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, var(--hero-dark) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2;
}

/* Conteúdo do Hero */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 var(--spacing-md);
    text-align: center;
    color: var(--white);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Título */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
    text-transform: none;
}

.hero-title strong {
    font-weight: 700;
    color: var(--white);
    display: block;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle strong {
    font-weight: 700;
    color: var(--white);
}

/* Call to Action Buttons */
.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: none;
}

.btn i {
    font-size: 1.3rem;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    border-color: var(--whatsapp-green);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-dark);
    border-color: var(--whatsapp-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-blue {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-blue:hover {
    background-color: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-gray);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--dark-gray);
    border-color: var(--dark-gray);
    box-shadow: none;
}

.btn-outline-dark:hover {
    background-color: var(--dark-gray);
    color: var(--white);
    border-color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--whatsapp-green);
    color: var(--white);
    border-color: var(--whatsapp-green);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--whatsapp-green-dark);
    border-color: var(--whatsapp-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background-color: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

/* Badges/Destaques */
.hero-badges {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-badge:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero-badge i {
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.hero-badge span {
    font-size: 0.85rem;
    color: var(--white);
    text-align: left;
    line-height: 1.3;
}

.hero-badge strong {
    font-weight: 700;
    display: block;
    font-size: 0.95rem;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.hero-scroll:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.hero-scroll i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .header-container {
        height: 80px;
        padding: 2px var(--spacing-md);
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        display: none;
    }

    .header-transparent .nav {
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: calc(100vh - 80px);
        height: auto;
    }

    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }

    .hero-container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        padding: 0.85rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.6rem;
        justify-content: center;
        align-items: center;
        margin-top: var(--spacing-md);
        padding: 0 1rem;
        width: 100%;
    }

    .hero-badge {
        padding: 0.6rem 0.85rem;
        flex-shrink: 0;
        gap: 0.5rem;
        min-width: auto;
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
    }

    .hero-badge i {
        font-size: 1rem;
    }

    .hero-badge span {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .hero-badge strong {
        font-size: 0.75rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .logo-img {
        height: 76px;
        max-width: 350px;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.section-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.services-section {
    padding: var(--spacing-md) 0 0;
    background: var(--white);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(220, 38, 38, 0.9) 100%);
    clip-path: polygon(
        0 60%,
        15% 52%,
        30% 57%,
        45% 49%,
        60% 55%,
        75% 47%,
        90% 52%,
        100% 45%,
        100% 53%,
        90% 60%,
        75% 55%,
        60% 63%,
        45% 57%,
        30% 65%,
        15% 60%,
        0 68%
    );
    z-index: 1;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-dark);
    clip-path: polygon(
        0 0,
        100% 0,
        100% 45%,
        90% 52%,
        75% 47%,
        60% 55%,
        45% 49%,
        30% 57%,
        15% 52%,
        0 60%
    );
    z-index: 2;
}

.services-section .container {
    position: relative;
    z-index: 3;
    padding-bottom: var(--spacing-xl);
}

.services-section .section-title,
.services-section .section-subtitle {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.service-card {
    background-color: var(--white);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    z-index: 1;
}

.service-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-info {
    margin-top: auto;
    align-self: flex-start;
    max-width: 60%;
}

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

.service-card:hover .service-card-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: var(--spacing-sm);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.service-link {
    color: var(--white);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 0.25rem;
    width: fit-content;
}

.service-link:hover {
    gap: 0.75rem;
    border-bottom-color: var(--white);
}

.stats-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.95), rgba(21, 101, 192, 0.9)), url('../images/fundo-numeros.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.stats-section .section-title,
.stats-section .section-subtitle {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.stat-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-suffix {
    font-size: 1.75rem;
    opacity: 0.8;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.differentials-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.differential-card {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.differential-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.differential-number {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-gray);
    line-height: 1;
}

.differential-icon {
    width: 60px;
    height: 60px;
    background-color: var(--blue-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.differential-icon i {
    font-size: 1.75rem;
    color: var(--primary-blue);
}

.differential-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.differential-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-section {
    padding: 80px 0;
    background: var(--white);
    margin-top: 80px;
}

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

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-red);
    line-height: 1.3;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.calculadora-section {
    background: var(--white);
}

.calculadora-header {
    text-align: center;
    margin-bottom: 48px;
}

.calculadora-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.calculadora-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.calculadora-content {
    width: 100%;
}

.frete-form {
    background: var(--lighter-gray);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin: 0 auto;
}

.frete-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 200px;
    gap: 24px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary-red);
    font-size: 1rem;
}

.form-input {
    padding: 1rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-group-button {
    justify-content: flex-end;
}

.btn-calcular {
    width: 100%;
    padding: 1.1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
}

.frete-resultado {
    margin-top: 48px;
}

.resultado-card {
    background: var(--lighter-gray);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin: 0 auto;
}

.resultado-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--light-gray);
}

.resultado-header i {
    font-size: 2.5rem;
    color: var(--success-green);
}

.resultado-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.resultado-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.resultado-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--lighter-gray);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.resultado-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.resultado-item i {
    font-size: 1.75rem;
    color: var(--primary-red);
}

.resultado-item div {
    display: flex;
    flex-direction: column;
}

.resultado-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.resultado-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.resultado-actions {
    display: flex;
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid var(--light-gray);
}

.resultado-actions .btn {
    flex: 1;
}

.frete-loading {
    margin-top: 48px;
    text-align: center;
    padding: 40px;
    background: var(--lighter-gray);
    border-radius: var(--radius-lg);
    margin-left: auto;
    margin-right: auto;
}

.spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 24px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.frete-loading p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .section-header {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .services-grid,
    .stats-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .service-card {
        min-height: 280px;
        background-position: center right;
        padding: 20px 16px;
    }

    .service-card-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.4) 100%);
    }

    .service-card-info {
        max-width: 100%;
        width: 100%;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 12px;
    }

    .stat-icon i {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-suffix {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-description {
        font-size: 0.75rem;
    }

    .section-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-section {
        padding: 48px 0;
        margin-top: 48px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        min-height: 500px;
        height: 100%;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1.25rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-cta .btn {
        width: 100%;
        max-width: 100%;
    }

    .about-intro-section {
        padding: 48px 0;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro-image {
        min-height: 500px;
        height: 100%;
    }

    .about-intro-title {
        font-size: 2rem;
    }

    .about-intro-subtitle {
        font-size: 1.25rem;
    }

    .about-intro-text p {
        font-size: 1rem;
    }

    .hero-sobre {
        min-height: 300px;
        height: 300px;
    }

    .hero-sobre .hero-title {
        font-size: 2rem;
    }

    .hero-sobre .hero-subtitle {
        font-size: 1rem;
    }

    .hero-servicos {
        min-height: 300px;
        height: 300px;
    }

    .hero-servicos .hero-title {
        font-size: 2rem;
    }

    .hero-servicos .hero-subtitle {
        font-size: 1rem;
    }

    .hero-calculadora {
        min-height: 300px;
        height: 300px;
    }

    .hero-calculadora .hero-title {
        font-size: 2rem;
    }

    .hero-calculadora .hero-subtitle {
        font-size: 1rem;
    }

    .page-spacing {
        height: 60px;
    }

    .calculadora-title {
        font-size: 1.75rem;
    }

    .calculadora-subtitle {
        font-size: 1rem;
    }

    .calculadora-content {
        padding: 0 32px;
    }

    .frete-form {
        padding: 32px;
    }

    .frete-form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .resultado-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .resultado-header h3 {
        font-size: 1.25rem;
    }

    .resultado-header i {
        font-size: 2rem;
    }

    .resultado-value {
        font-size: 1.25rem;
    }

    .resultado-actions {
        flex-direction: column;
    }

    .resultado-actions .btn {
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .frete-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }

    .form-group-button {
        grid-column: span 2;
    }

    .btn-calcular {
        max-width: 300px;
        margin: 0 auto;
    }

    .resultado-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==================== PÁGINAS INTERNAS ==================== */

.page-spacing {
    height: 100px;
}

.hero-sobre {
    min-height: 400px;
    height: 400px;
}

.hero-sobre .hero-content {
    justify-content: center;
}

.hero-sobre .hero-container {
    text-align: center;
}

.hero-sobre .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: none;
}

.hero-sobre .hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-servicos {
    min-height: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../images/nossos-servicos.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-servicos .hero-content {
    justify-content: center;
}

.hero-servicos .hero-container {
    text-align: center;
}

.hero-servicos .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: none;
}

.hero-servicos .hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-calculadora {
    min-height: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../images/nossos-servicos.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-calculadora .hero-content {
    justify-content: center;
}

.hero-calculadora .hero-container {
    text-align: center;
}

.hero-calculadora .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: none;
}

.hero-calculadora .hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-intro-section {
    padding: 80px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    min-height: 400px;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-intro-content {
    display: flex;
    flex-direction: column;
}

.about-intro-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.about-intro-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-red);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.about-intro-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.about-intro-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.page-hero {
    background: var(--gradient-red);
    padding: calc(var(--spacing-xl) + 100px) 0 var(--spacing-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    text-transform: none;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.history-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.history-content::before {
    display: none;
}

.history-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.history-year {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    text-align: right;
    position: relative;
}


.history-text h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.history-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.values-section {
    padding: var(--spacing-xl) 0;
    background: var(--lighter-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.value-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-red);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(90deg, rgba(31, 41, 55, 0.95) 0%, rgba(13, 71, 161, 0.85) 40%, transparent 100%), url('../images/faca-parte.jpg');
    background-size: cover;
    background-position: center top;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    display: none;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-sobre {
        min-height: 300px;
        height: 300px;
    }

    .hero-sobre .hero-title {
        font-size: 2rem;
    }

    .hero-sobre .hero-subtitle {
        font-size: 1rem;
    }

    .page-hero {
        padding: calc(var(--spacing-lg) + 80px) 0 var(--spacing-lg);
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .history-item {
        grid-template-columns: 60px 1fr;
        gap: var(--spacing-md);
    }

    .history-year {
        font-size: 1.5rem;
    }

    .history-text h3 {
        font-size: 1.25rem;
    }

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

    .cta-section {
        background: linear-gradient(90deg, rgba(31, 41, 55, 0.98) 0%, rgba(13, 71, 161, 0.95) 60%, rgba(13, 71, 161, 0.9) 100%), url('../images/faca-parte.jpg');
        background-size: cover;
        background-position: center top;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ==================== PÁGINA DE SERVIÇOS ==================== */

.services-detail-section {
    padding: var(--spacing-xl) 0;
    background: var(--lighter-gray);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--spacing-xl);
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    align-items: start;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-detail-card.reverse {
    grid-template-columns: 1fr 200px;
}

.service-detail-card.reverse .service-detail-image {
    order: 2;
}

.service-detail-card.reverse .service-detail-content {
    order: 1;
}

.service-detail-image {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-card:hover .service-detail-image {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.service-detail-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.service-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
}

.service-feature i {
    color: var(--success-green);
    font-size: 1.25rem;
}

.service-specs {
    background: var(--lighter-gray);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.service-spec {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--light-gray);
}

.service-spec:last-child {
    border-bottom: none;
}

.service-spec strong {
    color: var(--text-primary);
}

.additional-services-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.additional-service-card {
    background: var(--lighter-gray);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.additional-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-red);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.additional-service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-red);
    transition: var(--transition);
}

.additional-service-card:hover .additional-service-icon {
    background: var(--gradient-red);
    color: var(--white);
    transform: scale(1.1);
}

.additional-service-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.additional-service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-section {
    padding: var(--spacing-xl) 0;
    background: var(--lighter-gray);
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 100px;
    width: 2px;
    height: calc(100% + var(--spacing-lg));
    background: linear-gradient(180deg, var(--primary-red), var(--primary-blue));
}

.process-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-red);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover .process-number {
    transform: scale(1.1);
}

.process-content {
    padding-top: var(--spacing-sm);
}

.process-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.process-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }

    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse .service-detail-image {
        order: 1;
    }

    .service-detail-card.reverse .service-detail-content {
        order: 2;
    }

    .service-detail-image {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-detail-desc {
        font-size: 1rem;
    }

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

    .additional-services-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }

    .process-step:not(:last-child)::after {
        left: 30px;
        top: 60px;
        height: calc(100% + var(--spacing-md));
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .process-content h3 {
        font-size: 1.25rem;
    }

    .process-content p {
        font-size: 1rem;
    }
}

/* ==================== PÁGINA DE CONTATO ==================== */

.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--lighter-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.contact-intro {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

.contact-methods {
    margin-bottom: var(--spacing-xl);
}

.contact-method {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-method-content h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-method-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--red-dark);
    text-decoration: underline;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contact-social {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.contact-social h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.social-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.social-btn.instagram {
    background: var(--gradient-red);
}

.social-btn.instagram:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-red);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.facebook:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}

.social-btn i {
    font-size: 1.25rem;
}

.contact-form-container {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
}

.contact-form .form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.contact-form .form-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

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

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 1.125rem;
    padding: 1rem;
}

.form-message {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.form-message.success {
    background: rgba(22, 163, 74, 0.1);
    color: var(--success-green);
    border: 2px solid var(--success-green);
}

.form-message.error {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.map-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--lighter-gray);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--primary-red);
    margin-left: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-form-container {
        padding: var(--spacing-md);
    }

    .social-buttons {
        flex-direction: column;
    }

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

    .map-container iframe {
        height: 300px;
    }
}
