/* ============================================
   PowerVet Start - Landing Page Styles
   ============================================ */

/* IMPORTS */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap");

/* ============================================
   CSS VARIABLES & THEME
   ============================================ */

:root {
    /* Colors - PowerVet Start Palette */
    --primary: #3b82f6;           /* Azul - Confiança, Profissionalismo */
    --primary-light: #60a5fa;     /* Azul claro */
    --primary-dark: #1e40af;      /* Azul escuro */
    
    --secondary: #10b981;         /* Verde - Crescimento, Natureza, Saúde */
    --secondary-light: #34d399;   /* Verde claro */
    --secondary-dark: #047857;    /* Verde escuro */
    
    --accent: #f59e0b;            /* Dourado - Destaque, Prosperidade */
    --accent-light: #fbbf24;      /* Dourado claro */
    --accent-dark: #d97706;       /* Dourado escuro */
    
    /* Neutrals */
    --background: #ffffff;        /* Fundo branco */
    --foreground: #1f2937;        /* Texto escuro */
    --border: #e5e7eb;            /* Bordas cinzas claras */
    --muted: #f3f4f6;             /* Fundo muted */
    --muted-foreground: #6b7280;  /* Texto muted */
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Typography */
    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--muted-foreground);
}

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

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   CONTAINER
   ============================================ */

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

@media (min-width: 640px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
    gap: var(--spacing-sm);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.btn.w-full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    z-index: 100;
}

.header.sticky {
    position: sticky;
    top: 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: var(--spacing-xl);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.logo-text {
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: inline;
    }
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    gap: var(--spacing-xl);
    flex: 1;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--foreground);
    transition: all var(--transition-fast);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(0.25rem, -0.25rem);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border);
}

.nav-mobile.active {
    display: flex;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    z-index: -2;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-bg::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.badge {
    display: inline-block;
    background-color: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.hero-title {
    color: var(--foreground);
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

.hero-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-xl);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-image {
    display: none;
}

@media (min-width: 1024px) {
    .hero-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    color: rgba(59, 130, 246, 0.4);
    position: relative;
}

.image-placeholder svg {
    width: 8rem;
    height: 8rem;
}

.image-placeholder p {
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
}

.image-placeholder::before {
    content: "";
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

/* ============================================
   SECTIONS - GENERAL
   ============================================ */

section {
    padding: var(--spacing-3xl) 0;
    scroll-margin-top: 5rem;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    color: var(--foreground);
    margin-bottom: var(--spacing-lg);
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PROBLEMA SECTION
   ============================================ */

.problema {
    background-color: var(--muted);
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.problema-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
}

.problema-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.problema-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.problema-card h3 {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: var(--spacing-sm);
}

.problema-card p {
    font-size: 0.875rem;
}

.callout {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
}

.callout p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    color: var(--foreground);
    font-weight: 600;
}

.callout p:last-child {
    margin-bottom: 0;
}

/* ============================================
   SOLUÇÃO SECTION
   ============================================ */

.solucao-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .solucao-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.solucao-image {
    display: none;
}

@media (min-width: 1024px) {
    .solucao-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.solucao-content h2 {
    color: var(--foreground);
}

.solucao-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.feature {
    display: flex;
    gap: var(--spacing-lg);
}

.feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.feature h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.feature p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* ============================================
   ENTREGÁVEIS SECTION
   ============================================ */

.entregaveis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.entregavel-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
}

.entregavel-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.entregavel-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
}

.entregavel-card h3 {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: var(--spacing-md);
}

.entregavel-card p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
}

.highlight h3 {
    color: var(--foreground);
    margin-bottom: var(--spacing-md);
}

.highlight p {
    margin-bottom: 0;
}

/* ============================================
   JORNADA SECTION
   ============================================ */

.jornada {
    background-color: var(--muted);
}

.jornada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    position: relative;
}

.jornada-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
}

.jornada-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.jornada-icon {
    font-size: 3rem;
    margin: var(--spacing-xl) 0 var(--spacing-lg);
}

.jornada-card h3 {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: var(--spacing-md);
}

.jornada-card p {
    margin-bottom: 0;
}

.timeline-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
}

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

.timeline-info p:last-child {
    margin-bottom: 0;
}

/* ============================================
   PÚBLICO-ALVO SECTION
   ============================================ */

.publico-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.publico-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
}

.publico-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.publico-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
}

.publico-icon {
    font-size: 2.5rem;
}

.publico-badge {
    background-color: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.publico-card h3 {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: var(--spacing-sm);
}

.publico-idade {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.publico-card p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.stat p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ============================================
   DEPOIMENTOS SECTION
   ============================================ */

.depoimentos {
    background-color: var(--muted);
}

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

.depoimento-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
}

.depoimento-card:hover {
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.25rem;
}

.depoimento-text {
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    color: var(--muted-foreground);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border);
}

.depoimento-autor {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.autor-avatar {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.depoimento-autor h4 {
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: var(--spacing-xs);
}

.depoimento-autor p {
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
}

.localizacao {
    color: var(--muted-foreground);
    font-size: 0.75rem;
}

/* ============================================
   MÉTODO SECTION
   ============================================ */

.metodo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.metodo-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    position: relative;
    transition: all var(--transition-base);
}

.metodo-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.metodo-number {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
}

.metodo-card h3 {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.metodo-card p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.metodo-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

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

.highlight-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.highlight-stat p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    background-color: var(--muted);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-3xl);
}

.faq-item {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-button {
    width: 100%;
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    transition: all var(--transition-fast);
}

.faq-button:hover {
    background-color: var(--muted);
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.faq-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta p {
    margin-bottom: var(--spacing-md);
}

.faq-cta p:first-child {
    font-size: 1.125rem;
    color: var(--foreground);
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */

.cta-final {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--foreground);
    margin-bottom: var(--spacing-lg);
}

.cta-content > p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

.cta-highlight {
    background-color: var(--background);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

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

.cta-highlight p:first-child {
    font-size: 1.125rem;
    color: var(--foreground);
    font-weight: 600;
}

.cta-highlight p:last-child {
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-3xl);
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.trust-indicators {
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.trust-indicators > p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-lg);
}

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

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

.trust-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.trust-stat p {
    font-size: 0.75rem;
    margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: rgba(31, 41, 55, 0.05);
    border-top: 1px solid var(--border);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

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

.footer-section h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-section p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

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

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

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
}

.social-links svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
}

.footer-links a {
    font-size: 0.875rem;
}

.footer-copyright p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-xs);
}

.footer-copyright p:last-child {
    margin-bottom: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   ACCESSIBILITY & RESPONSIVE
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    body {
        background-color: white;
    }

    .header,
    .footer {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ============================================
   CUSTOMIZATION GUIDE
   ============================================ */

/*
  COMO CUSTOMIZAR ESTA LANDING PAGE:

  1. CORES PRINCIPAIS:
     - Altere --primary para mudar a cor azul
     - Altere --secondary para mudar a cor verde
     - Altere --accent para mudar a cor dourada

  2. TIPOGRAFIA:
     - Títulos usam "Playfair Display" (serifada)
     - Corpo usa "Inter" (sans-serif)
     - Altere --font-serif ou --font-sans para mudar

  3. ESPAÇAMENTO:
     - Use as variáveis --spacing-* para manter consistência
     - Exemplo: padding: var(--spacing-lg);

  4. LINKS DOS BOTÕES:
     - Procure por "[INSERIR LINK EXTERNO...]" no HTML
     - Substitua pelos links reais

  5. IMAGENS:
     - Substitua os placeholders por imagens reais
     - Use loading="lazy" para otimização

  6. DEPOIMENTOS:
     - Substitua os textos de exemplo por depoimentos reais
     - Mantenha a estrutura HTML igual
*/

