/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75em;
    color: var(--cor-texto);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h5 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

p {
    margin-bottom: 1em;
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: var(--cor-primaria);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--cor-destaque);
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 0;
    }
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--cor-primaria);
    color: #000;
    border-color: var(--cor-primaria);
}

.btn-primary:hover {
    background: var(--cor-destaque);
    border-color: var(--cor-destaque);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: var(--cor-secundaria);
    color: #fff;
    border-color: var(--cor-secundaria);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--cor-secundaria);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--cor-primaria);
    border-color: var(--cor-primaria);
}

.btn-outline:hover {
    background: var(--cor-primaria);
    color: #000;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================
   PRELOADER
   ========================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cor-fundo);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--cor-primaria);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================
   SKIP LINK (ACCESSIBILITY)
   ========================================== */

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--cor-secundaria);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* ==========================================
   COOKIE NOTICE
   ========================================== */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--cor-secundaria);
    color: white;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: var(--cor-primaria);
    text-decoration: underline;
}

.btn-cookie {
    padding: 0.5rem 1rem;
    background: var(--cor-primaria);
    color: #000;
    border: none;
    border-radius: 0.25rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    z-index: 1001;
}

.logo-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-secundaria);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--cor-texto-claro);
    font-weight: 400;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--cor-secundaria);
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--cor-texto);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-primaria);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--cor-primaria);
}

.nav-icon {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.nav-cta {
    margin-left: 1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-destaque));
    color: #000;
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.875rem;
}

.announcement-content p {
    margin: 0;
    font-weight: 500;
}

.announcement-link {
    color: var(--cor-secundaria);
    font-weight: 600;
    text-decoration: underline;
}

.announcement-link:hover {
    color: #000;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-line-1,
.title-line-2 {
    display: block;
}

.title-highlight {
    display: block;
    color: var(--cor-primaria);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    color: var(--cor-primaria);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cor-primaria);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-link:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.875rem;
}

.scroll-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--cor-primaria), var(--cor-destaque));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.25rem;
        padding: 1rem 0;
    }
    
    .nav-cta {
        margin: 2rem 0 0 0;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        padding: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* ==========================================
   DARK MODE SUPPORT
   ========================================== */

@media (prefers-color-scheme: dark) {
    :root {
        --cor-fundo: #0f172a;
        --cor-texto: #f1f5f9;
        --cor-texto-claro: #94a3b8;
    }
    
    .header {
        background: rgba(15, 23, 42, 0.95);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.5));
    }
}

/* ==========================================
   SECTION STYLES
   ========================================== */

.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: var(--cor-primaria);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--cor-texto-claro);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   SOBRE SECTION
   ========================================== */

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.empresa-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.valores-list {
    list-style: none;
    margin: 1rem 0;
}

.valor-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.valor-icon {
    color: var(--cor-destaque);
    margin-top: 0.25rem;
}

.empresa-info {
    background: var(--cor-fundo);
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
}

.info-title {
    font-size: 0.875rem;
    color: var(--cor-texto-claro);
    margin-bottom: 0.5rem;
}

.info-value {
    font-weight: 600;
    color: var(--cor-secundaria);
}

/* ==========================================
   SERVIÇOS SECTION
   ========================================== */

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.servico-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.servico-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.servico-icon {
    width: 60px;
    height: 60px;
    background: var(--cor-primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #000;
}

.servico-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.servico-description {
    color: var(--cor-texto-claro);
    margin-bottom: 1.5rem;
}

.servico-features {
    list-style: none;
    margin: 1rem 0;
}

.servico-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.servico-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cor-destaque);
    font-weight: bold;
}

.servico-features li:last-child {
    border-bottom: none;
}

.servico-footer {
    margin-top: 2rem;
    text-align: center;
}

.processo-section {
    background: var(--cor-fundo);
    padding: 3rem;
    border-radius: 1rem;
    margin: 3rem 0;
}

.processo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--cor-primaria);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.servicos-cta {
    background: var(--cor-secundaria);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    margin-top: 3rem;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   DEPOIMENTOS SECTION - COMPACTO
   ========================================== */

.depoimentos-section {
    background: var(--cor-secundaria);
    color: white;
    padding: 3rem 0;
}

.depoimentos-carousel {
    margin: 2rem 0;
}

.carousel-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.depoimento-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.quote-icon {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.depoimento-texto {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.depoimento-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    color: var(--cor-primaria);
}

.cliente-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cliente-avatar {
    width: 50px;
    height: 50px;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.cliente-dados {
    text-align: left;
}

.cliente-nome {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cliente-cargo {
    color: var(--cor-primaria);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.cliente-verificado {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--cor-primaria);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--cor-primaria);
    opacity: 0.8;
}

.satisfacao-stats {
    margin-top: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.stat-icon {
    color: var(--cor-primaria);
    margin-bottom: 0.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.depoimentos-cta {
    margin-top: 2rem;
}

/* ==========================================
   CONTATO SECTION
   ========================================== */

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contato-info {
    padding: 2rem;
}

.info-header {
    margin-bottom: 2rem;
}

.info-title {
    color: var(--cor-secundaria);
    margin-bottom: 0.5rem;
}

.info-subtitle {
    color: var(--cor-texto);
}

.contact-items {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    color: var(--cor-primaria);
    margin-top: 0.25rem;
}

.contact-content {
    flex: 1;
}

.contact-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--cor-secundaria);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.contact-value {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.contact-link {
    color: var(--cor-destaque);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.contact-link:hover {
    text-decoration: underline;
    color: var(--cor-primaria);
}

.whatsapp-icon {
    background: #25D366;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
}

.phone-icon {
    background: var(--cor-secundaria);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
}

.email-icon {
    background: var(--cor-destaque);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
}

.location-icon {
    background: var(--cor-primaria);
    color: #000;
    padding: 0.5rem;
    border-radius: 50%;
}

.horario-funcionamento {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.horario-title {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.horario-lista {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-dia {
    font-weight: 700;
    color: #1a365d;
}

.horario-hora {
    color: #2d3748;
    font-weight: 600;
}

.contato-form {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    color: var(--cor-secundaria);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--cor-texto);
}

/* ==========================================
   FORM STYLES
   ========================================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--cor-texto);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e5e5;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--cor-primaria);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #dc2626;
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
    background: white;
    transition: all 0.3s ease;
}

.form-checkbox input:checked + .checkbox-mark {
    background: var(--cor-primaria);
    border-color: var(--cor-primaria);
}

.form-checkbox input:checked + .checkbox-mark:after {
    content: '✓';
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-message {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: #f0fdf4;
    border-color: #16a34a;
    color: #166534;
}

.form-message.error {
    background: #fef2f2;
    border-color: #dc2626;
    color: #991b1b;
}

.message-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.message-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.message-text {
    flex: 1;
}

.message-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.message-description {
    margin: 0;
}

/* ==========================================
   GOOGLE MAP
   ========================================== */

.mapa-section {
    margin-top: 3rem;
}

.mapa-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mapa-title {
    color: var(--cor-secundaria);
    margin-bottom: 0.5rem;
}

.mapa-subtitle {
    color: var(--cor-texto-claro);
}

.mapa-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.google-map {
    width: 100%;
    height: 400px;
    border: none;
}

.mapa-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.overlay-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--cor-secundaria);
}

.overlay-address {
    font-size: 0.875rem;
    color: var(--cor-texto-claro);
    margin-bottom: 0.5rem;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--cor-secundaria);
    color: white;
}

.footer-main {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.company-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.company-details {
    margin-top: 1rem;
}

.detail-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.detail-label {
    font-weight: 600;
    color: var(--cor-primaria);
}

.detail-value {
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-link:hover {
    color: var(--cor-primaria);
}

.working-hours {
    margin-top: 1.5rem;
}

.hours-title {
    color: var(--cor-primaria);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.legal-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--cor-primaria);
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--cor-primaria);
    color: #000;
    transform: translateY(-2px);
}

.social-link.whatsapp:hover {
    background: #25D366;
    color: white;
}

.social-link.phone:hover {
    background: var(--cor-secundaria);
    color: white;
}

.social-link.email:hover {
    background: var(--cor-destaque);
    color: white;
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-text {
    display: none;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
}

.whatsapp-btn:hover .whatsapp-text {
    display: block;
}

/* ==========================================
   BACK TO TOP
   ========================================== */

.back-to-top {
    position: fixed;
    bottom: 8rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--cor-primaria);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ==========================================
   LEGAL PAGES
   ========================================== */

.legal-page {
    padding-top: 8rem;
    min-height: 100vh;
    background: var(--cor-fundo);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    color: var(--cor-secundaria);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--cor-texto-claro);
    font-size: 0.875rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--cor-primaria);
    padding-bottom: 0.5rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: var(--cor-fundo);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.legal-actions {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   RESPONSIVE UPDATES
   ========================================== */

@media (max-width: 768px) {
    .sobre-grid,
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .empresa-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .processo-steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-content {
        padding: 2rem 1rem;
    }
    
    .legal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .back-to-top {
        bottom: 6rem;
        right: 1rem;
    }
} 