/* Reset e Variáveis - Paleta Terrosa/Verde */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Terrosa/Verde */
    --baby-powder: #faf9f6;
    --dark-green: #003025;
    --brunswick-green: #285d53;
    --viridian: #4f8a81;
    --cambridge-blue: #9aa889;
    --sunset: #e4c691;
    --ecru: #c5a973;
    --lion: #a58c55;
    
    /* Mapeamento para variáveis do tema */
    --primary: var(--brunswick-green);
    --primary-dark: var(--dark-green);
    --primary-light: var(--cambridge-blue);
    --secondary: var(--viridian);
    --accent: var(--sunset);
    --accent-secondary: var(--ecru);
    --accent-tertiary: var(--lion);
    --danger: #dc2626;
    
    /* Cores neutras usando a paleta */
    --gray-50: var(--baby-powder);
    --gray-100: #f5f4f0;
    --gray-200: #e8e6de;
    --gray-300: #d4d1c5;
    --gray-400: #9aa889;
    --gray-500: #6b7560;
    --gray-600: #4f8a81;
    --gray-700: #285d53;
    --gray-800: #1a3d35;
    --gray-900: var(--dark-green);
    --white: var(--baby-powder);
    
    --shadow: 0 1px 3px 0 rgba(0, 48, 37, 0.1), 0 1px 2px 0 rgba(0, 48, 37, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 48, 37, 0.1), 0 2px 4px -1px rgba(0, 48, 37, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 48, 37, 0.1), 0 4px 6px -2px rgba(0, 48, 37, 0.05);
    --radius: 12px;
    --radius-sm: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--gray-900);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

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

/* Header */
.header {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.logo h1 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.05);
}

.logo .icon {
    transition: transform 0.3s ease;
}

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

.nav {
    padding-bottom: 0.75rem;
}

/* Icon Styles */
.icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    color: inherit;
    stroke: currentColor;
    fill: none;
}

/* Ícones em contexto claro (fundo claro) */
.icon-light-context {
    color: var(--primary-dark);
}

/* Ícones em contexto escuro (fundo escuro) */
.icon-dark-context {
    color: #ffffff;
}

/* Ícones com cores do tema */
.icon-primary {
    color: var(--primary-dark);
}

.icon-accent {
    color: var(--accent);
}

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

/* Tamanhos de ícones */
.icon-xs {
    width: 12px;
    height: 12px;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-md {
    width: 20px;
    height: 20px;
}

.icon-lg {
    width: 24px;
    height: 24px;
}

.icon-xl {
    width: 28px;
    height: 28px;
}

.icon-2xl {
    width: 32px;
    height: 32px;
}

.icon-3xl {
    width: 48px;
    height: 48px;
}

/* Cores especiais para badges */
.badge .icon {
    color: currentColor;
}

/* Ícones em títulos */
h1 .icon, h2 .icon, h3 .icon {
    color: var(--primary-dark);
    vertical-align: middle;
}

/* Ícones em cards de notícias */
.faq-item .badge .icon {
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.4rem;
    flex-wrap: wrap;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 138, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    background: var(--gray-100);
    border-color: var(--primary);
    transform: translateY(-1px);
    color: var(--primary-dark);
}

.nav-menu a.active {
    color: #ffffff;
    background: var(--brunswick-green);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 48, 37, 0.3);
    transform: translateY(-1px);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--sunset);
    border-radius: 2px;
}

.nav-menu a.active .icon {
    color: #ffffff;
}

.nav-menu a .icon {
    width: 14px;
    height: 14px;
    color: inherit;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
    z-index: 1001;
    position: relative;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--brunswick-green) 0%, var(--viridian) 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(228, 198, 145, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.hero .icon {
    color: #ffffff;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 48, 37, 0.15);
}

.btn-primary:hover {
    background: var(--lion);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 48, 37, 0.25);
    color: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-dark);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Cards Section */
.cards-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    text-align: center;
    font-weight: 800;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset) 0%, var(--viridian) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(228, 198, 145, 0.3);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cambridge-blue), transparent);
}

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

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 138, 129, 0.05), transparent);
    transition: left 0.6s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 48, 37, 0.15);
    border-color: var(--viridian);
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(79, 138, 129, 0.1) 0%, rgba(154, 168, 137, 0.1) 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: linear-gradient(135deg, rgba(79, 138, 129, 0.2) 0%, rgba(154, 168, 137, 0.2) 100%);
    transform: rotate(5deg);
}

.card-icon img,
.card-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon svg {
    transform: scale(1.15);
    color: var(--viridian);
}

.card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.card:hover h3 {
    color: var(--viridian);
}

.card p {
    color: var(--gray-700);
    line-height: 1.6;
}

.card-featured {
    background: linear-gradient(135deg, var(--sunset) 0%, var(--ecru) 100%);
    color: var(--primary-dark);
    border: 2px solid var(--lion);
    box-shadow: 0 4px 12px rgba(228, 198, 145, 0.3);
    position: relative;
}

.card-featured::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z' stroke='%23285d53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.card-featured:hover {
    box-shadow: 0 8px 24px rgba(228, 198, 145, 0.4);
    border-color: var(--primary-dark);
    transform: translateY(-6px) scale(1.02);
}

.card-featured h3,
.card-featured p {
    color: var(--primary-dark);
}

.card-featured .card-icon svg {
    color: var(--primary-dark);
}

.card-featured:hover .card-icon svg {
    color: var(--primary-dark);
    transform: scale(1.1) rotate(5deg);
}

/* Status Section */
.status-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.status-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--viridian);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--sunset) 0%, var(--viridian) 100%);
    transition: height 0.4s ease;
}

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

.status-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-dark);
    border-left-width: 6px;
}

.status-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.status-item {
    margin-bottom: 1.5rem;
}

.status-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.status-bar {
    background: var(--gray-200);
    border-radius: 999px;
    height: 12px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.status-progress {
    background: linear-gradient(90deg, var(--brunswick-green) 0%, var(--viridian) 100%);
    height: 100%;
    border-radius: 999px;
    transition: width 0.3s;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brunswick-green) 0%, var(--viridian) 100%);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 48, 37, 0.3);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

.progress-text {
    font-size: 0.875rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 0.5rem;
}

.status-text {
    font-size: 0.875rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.status-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.info-item {
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
}

.info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--gray-700);
}

.info-item span {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Creators Section */
.creators-section {
    padding: 4rem 0;
}

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

.creator-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.creator-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.creator-card h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.creator-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

/* WhatsApp Card Compacto - No Hero */
.whatsapp-card-compact {
    background: rgba(37, 211, 102, 0.25);
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: var(--radius-sm);
    padding: 0.625rem 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-card-compact:hover {
    background: rgba(37, 211, 102, 0.35);
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transform: translateY(-1px);
}

.btn-whatsapp-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp-compact:hover {
    color: #ffffff;
}

.btn-whatsapp-compact .icon {
    color: #25D366;
    filter: drop-shadow(0 0 3px rgba(37, 211, 102, 0.5));
    margin-right: 0.5rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--white);
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Page Styles */
.page-header {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.page-content {
    padding: 3rem 0;
}

/* Search Bar */
.search-bar {
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.2s;
    background: var(--white);
    color: var(--gray-900);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-bar::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='11' cy='11' r='8' stroke='%236b7560' stroke-width='2'/%3E%3Cpath d='M21 21L16.65 16.65' stroke='%236b7560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-item h3 .icon {
    color: var(--primary-dark);
}

.faq-item p {
    color: var(--gray-700);
    line-height: 1.8;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--gray-100);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

th {
    font-weight: 600;
    color: var(--gray-900);
}

tr:hover {
    background: var(--gray-50);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background: var(--danger);
    color: #ffffff;
}

.badge-info {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-300);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    flex: 1;
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid var(--white);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(228, 198, 145, 0.3) 50%, transparent 100%);
}

.footer .icon {
    color: #ffffff;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--sunset);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.2s;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--sunset);
    transform: translateX(4px);
}

.footer-section p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-section p .icon {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.85;
}

.footer-bottom p {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-top {
        padding: 0.6rem 0 0.3rem;
        margin-bottom: 0.4rem;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .nav {
        padding-bottom: 0.4rem;
    }

    .nav-menu {
        gap: 0.3rem;
    }

    .nav-menu a {
        font-size: 0.7rem;
        padding: 0.25rem 0.45rem;
        gap: 0.3rem;
    }

    .nav-menu a .icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 0.25rem;
    }

    .nav-menu a {
        font-size: 0.6875rem;
        padding: 0.25rem 0.4rem;
        gap: 0.25rem;
    }

    .nav-menu a .icon {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        max-width: 300px;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 5rem 1rem 1rem;
        gap: 0.5rem;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        width: 90%;
        margin: 0 auto;
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }

    .nav-toggle {
        display: block;
    }

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

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

    .hero-description {
        font-size: 1rem;
    }

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

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .whatsapp-card-compact {
        padding: 0.625rem 0.875rem;
        width: 100%;
    }

    .btn-whatsapp-compact {
        font-size: 0.8125rem;
        width: 100%;
        justify-content: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        margin-left: 3rem;
        margin-right: 0;
    }
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 2rem 0;
    padding: 0 1rem;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    padding: 0.5rem 0;
}

.carousel-item {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .carousel-container {
        padding: 0 1.5rem;
    }
    .carousel-item {
        min-width: calc(50% - 1rem);
        padding: 0 0.75rem;
    }
}

@media (min-width: 1024px) {
    .carousel-container {
        padding: 0 2rem;
    }
    .carousel-item {
        min-width: calc(33.333% - 1.33rem);
        padding: 0 1rem;
    }
}

/* Cards de Locais - Tamanho Uniforme */
.carousel-item .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.carousel-item .card .card-icon {
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.carousel-item .card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.carousel-item .card > p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.carousel-item .card > div:last-child {
    margin-top: auto;
    flex-shrink: 0;
}

/* Paleta de Cores para Cards de Locais - Card Branco com Borda Esquerda Colorida */
/* Academias - Azul suave */
#carousel-academia .carousel-item .card {
    background: var(--white);
    border-left: 4px solid #4A90E2;
}

#carousel-academia .carousel-item .card:hover {
    border-left-color: #3B7BC8;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

/* Mercados e Atacados - Verde suave */
#carousel-atacados-e-mercados .carousel-item .card {
    background: var(--white);
    border-left: 4px solid #6DB46E;
}

#carousel-atacados-e-mercados .carousel-item .card:hover {
    border-left-color: #5BA05C;
    box-shadow: 0 4px 12px rgba(109, 180, 110, 0.15);
}

/* Estações de Metrô - Laranja suave */
#carousel-estacoes .carousel-item .card {
    background: var(--white);
    border-left: 4px solid #FF9F66;
}

#carousel-estacoes .carousel-item .card:hover {
    border-left-color: #FF8C4D;
    box-shadow: 0 4px 12px rgba(255, 159, 102, 0.15);
}

/* Farmácias - Rosa suave */
#carousel-farmácia .carousel-item .card {
    background: var(--white);
    border-left: 4px solid #F472B6;
}

#carousel-farmácia .carousel-item .card:hover {
    border-left-color: #F15AA0;
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.15);
}

/* Hospitais - Vermelho suave */
#carousel-hospitais .carousel-item .card {
    background: var(--white);
    border-left: 4px solid #F87171;
}

#carousel-hospitais .carousel-item .card:hover {
    border-left-color: #F55A5A;
    box-shadow: 0 4px 12px rgba(248, 113, 113, 0.15);
}

/* Restaurantes - Amarelo suave */
#carousel-outros---restaurantes .carousel-item .card {
    background: var(--white);
    border-left: 4px solid #FCD34D;
}

#carousel-outros---restaurantes .carousel-item .card:hover {
    border-left-color: #FBC82E;
    box-shadow: 0 4px 12px rgba(252, 211, 77, 0.15);
}

/* Pilates - Turquesa suave */
#carousel-pilates .carousel-item .card {
    background: var(--white);
    border-left: 4px solid #5EEAD4;
}

#carousel-pilates .carousel-item .card:hover {
    border-left-color: #4CD9C2;
    box-shadow: 0 4px 12px rgba(94, 234, 212, 0.15);
}

/* Shoppings - Índigo suave */
#carousel-shoppings .carousel-item .card {
    background: var(--white);
    border-left: 4px solid #818CF8;
}

#carousel-shoppings .carousel-item .card:hover {
    border-left-color: #6B7AE8;
    box-shadow: 0 4px 12px rgba(129, 140, 248, 0.15);
}

/* Vila Sônia - Ciano suave */
#carousel-vila-sonia .carousel-item .card {
    background: var(--white);
    border-left: 4px solid #38BDF8;
}

#carousel-vila-sonia .carousel-item .card:hover {
    border-left-color: #1FA8E6;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.15);
}

/* Outras categorias - Roxo suave (fallback) */
.carousel-container:not(#carousel-academia):not(#carousel-atacados-e-mercados):not(#carousel-estacoes):not(#carousel-farmácia):not(#carousel-hospitais):not(#carousel-outros---restaurantes):not(#carousel-pilates):not(#carousel-shoppings):not(#carousel-vila-sonia) .carousel-item .card {
    background: var(--white);
    border-left: 4px solid #A78BFA;
}

.carousel-container:not(#carousel-academia):not(#carousel-atacados-e-mercados):not(#carousel-estacoes):not(#carousel-farmácia):not(#carousel-hospitais):not(#carousel-outros---restaurantes):not(#carousel-pilates):not(#carousel-shoppings):not(#carousel-vila-sonia) .carousel-item .card:hover {
    border-left-color: #8B6CF7;
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.15);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 0 1rem;
}

.carousel-btn {
    background: var(--brunswick-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-btn:hover {
    background: var(--viridian);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--brunswick-green);
    width: 30px;
    border-radius: 5px;
}

.carousel-nav-btn {
    background: transparent;
    border: 2px solid var(--brunswick-green);
    color: var(--brunswick-green);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
    background: var(--brunswick-green);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.carousel-nav-btn svg {
    width: 20px;
    height: 20px;
}
