/**
 * Agtech Tour 2026 - Estilos do Tema
 *
 * Migrado do Tailwind CSS v4 (index.css) + classes utilitárias dos componentes React.
 * Organizado por seção, seguindo a ordem dos componentes originais.
 *
 * Cores originais:
 *   --primary: #0F3B5C (Deep Teal-Blue)
 *   --secondary: #00D9FF (Vibrant Teal)
 *   --accent: #D4AF37 (Subtle Gold)
 *
 * Fontes:
 *   Display: Playfair Display (serif)
 *   Body: Poppins (sans-serif)
 */

/* ============================================================
   VARIABLES & RESET (origem: index.css :root)
   ============================================================ */

:root {
    --primary: #0F3B5C;
    --primary-light: #1A5A7F;
    --primary-dark: #0A2840;
    --secondary: #00D9FF;
    --secondary-light: #4DE8FF;
    --secondary-dark: #00A8CC;
    --accent: #D4AF37;
    --accent-light: #E8C547;
    --accent-dark: #B8941F;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-mono: 'Courier Prime', monospace;

    --radius: 0.65rem;
    --background: #FFFFFF;
    --foreground: #1A1A1A;
    --muted: #F5F5F5;
    --muted-foreground: #666666;
    --border: #E0E0E0;
    --ring: #00D9FF;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================================
   LAYOUT (origem: index.css .container)
   ============================================================ */

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: 1280px;
    }
}

/* ============================================================
   UTILITIES (origem: index.css)
   ============================================================ */

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.font-display {
    font-family: var(--font-display);
}

.font-poppins {
    font-family: var(--font-body);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================================
   ANIMATIONS (origem: index.css @keyframes)
   ============================================================ */

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

@keyframes slide-in-left {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 217, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 217, 255, 0.6); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.animate-fade-in { animation: fade-in 0.6s ease-out; }
.animate-slide-in-left { animation: slide-in-left 0.6s ease-out; }
.animate-slide-in-right { animation: slide-in-right 0.6s ease-out; }
.animate-glow-pulse { animation: glow-pulse 2s ease-in-out infinite; }
.animate-bounce { animation: bounce 1.5s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-spin { animation: spin 1s linear infinite; }

/* ============================================================
   HEADER (origem: Header.tsx)
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 50;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.header-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header-logo img {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.header-nav a,
.header-nav button {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
}

.header-nav a:hover,
.header-nav button:hover {
    color: var(--primary);
}

.header-cta {
    display: none;
}

.header-cta .btn-primary {
    font-size: 0.875rem;
}

.hamburger-btn {
    display: flex;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.hamburger-btn:hover {
    background-color: var(--muted);
}

.hamburger-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    background: white;
    border-top: 1px solid var(--border);
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.mobile-nav a,
.mobile-nav button:not(.btn-primary) {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-align: left;
    background: none;
    border: none;
    padding: 0;
}

.mobile-nav a:hover,
.mobile-nav button:not(.btn-primary):hover {
    color: var(--primary);
}

@media (min-width: 768px) {
    .header-nav { display: flex; }
    .header-cta { display: block; }
    .hamburger-btn { display: none; }
    .mobile-nav { display: none !important; }
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

.btn-primary.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-primary.btn-full {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    background: #fff;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-white:hover {
    background: var(--secondary);
    color: #fff;
}

.btn-white svg {
    transition: transform 0.2s;
}

.btn-white:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: var(--primary);
    background: #fff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: #fff;
}

.btn-outline-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-secondary:hover {
    background: var(--secondary);
    color: #fff;
}

/* ============================================================
   HERO SECTION (origem: HeroSection.tsx)
   ============================================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 40, 64, 0.85), rgba(15, 59, 92, 0.70), rgba(0, 217, 255, 0.20));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
}

.hero-inner {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 0.5rem;
}

.hero-date-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding-top: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2.5rem;
    max-width: 24rem;
    margin: 0 auto;
}

.hero-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid #fff;
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator-dot {
    width: 0.25rem;
    height: 0.5rem;
    background: #fff;
    border-radius: 9999px;
}

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

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
    .hero-badge {
        font-size: 1rem;
    }
}

/* ============================================================
   ABOUT SECTION (origem: AboutSection.tsx)
   ============================================================ */

.about {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fff, var(--muted));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 1rem;
    color: var(--primary);
    font-family: var(--font-display);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-top: 1.5rem;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-why-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.about-why-text {
    color: var(--foreground);
    line-height: 1.7;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #fff;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    color: #fff;
}

.feature-card h4 {
    font-weight: 600;
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

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

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 59, 92, 0.3), transparent);
}

.floating-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 1.25rem;
    max-width: 16rem;
}

.floating-card-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
}

.floating-card p {
    font-size: 0.875rem;
    color: var(--foreground);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: border-color 0.2s;
}

.stat-card:hover {
    border-color: var(--secondary);
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .about { padding: 8rem 0; }
    .about-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .section-title { font-size: 3rem; }
}

/* ============================================================
   ITINERARY SECTION (origem: ItinerarySection.tsx)
   ============================================================ */

.itinerary {
    padding: 5rem 0;
    background: #fff;
}

.timeline {
    max-width: 56rem;
    margin: 0 auto;
}

.timeline-item {
    margin-bottom: 3rem;
}

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

.timeline-line {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.timeline-line-bar {
    width: 0.25rem;
    height: 3rem;
    background: linear-gradient(to bottom, var(--secondary), transparent);
}

.timeline-card {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.timeline-day-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 217, 255, 0.1);
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.timeline-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
    margin-top: 0.5rem;
}

.timeline-card p {
    color: var(--foreground);
    font-family: var(--font-body);
    line-height: 1.7;
}

.timeline-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
}

.timeline-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-foreground);
}

.timeline-meta-item svg {
    color: var(--secondary);
}

.timeline-activities {
    padding-top: 1rem;
}

.timeline-activities h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
}

.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.activity-tag {
    padding: 0.25rem 0.75rem;
    background: var(--muted);
    color: var(--foreground);
    font-size: 0.875rem;
    border-radius: 9999px;
    font-family: var(--font-body);
}

.timeline-image {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.timeline-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 59, 92, 0.2), transparent);
}

.timeline-dot {
    display: flex;
    justify-content: center;
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
    position: relative;
    z-index: 10;
}

.timeline-dot-inner {
    width: 1rem;
    height: 1rem;
    background: var(--secondary);
    border-radius: 9999px;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.info-cards {
    display: grid;
    gap: 1.5rem;
    margin-top: 5rem;
}

.info-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    color: #fff;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
}

.info-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-family: var(--font-body);
}

@media (min-width: 768px) {
    .itinerary { padding: 8rem 0; }
    .timeline-card { grid-template-columns: 1fr 1fr; }
    .timeline-card.reversed .timeline-content { order: 2; }
    .timeline-card.reversed .timeline-image-col { order: 1; }
    .info-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   EVENT CAROUSEL (novo — Carrossel de Artes dos Dias)
   ============================================================ */

.event-carousel {
    position: relative;
    margin-bottom: 4rem;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.event-carousel__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.event-carousel__slide {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background: var(--muted);
}

.event-carousel__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Navigation Buttons */
.event-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-carousel__btn:hover {
    background: white;
    color: var(--secondary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.event-carousel__btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.event-carousel__btn--prev {
    left: 1rem;
}

.event-carousel__btn--next {
    right: 1rem;
}

/* Dots Navigation */
.event-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 1rem;
}

.event-carousel__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-carousel__dot:hover {
    background: var(--muted-foreground);
}

.event-carousel__dot.active {
    background: var(--secondary);
    width: 1.25rem;
    border-radius: 0.375rem;
}

/* Counter */
.event-carousel__counter {
    text-align: center;
    margin-top: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.event-carousel__current {
    color: var(--secondary);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 640px) {
    .event-carousel {
        margin-bottom: 3rem;
    }

    .event-carousel__btn {
        width: 2.5rem;
        height: 2.5rem;
    }

    .event-carousel__btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .event-carousel__btn--prev {
        left: 0.5rem;
    }

    .event-carousel__btn--next {
        right: 0.5rem;
    }

    .event-carousel__dots {
        gap: 0.25rem;
    }

    .event-carousel__dot {
        width: 0.4rem;
        height: 0.4rem;
    }

    .event-carousel__dot.active {
        width: 1rem;
    }
}

/* ============================================================
   FAQ SECTION (origem: FAQSection.tsx)
   ============================================================ */

.faq {
    padding: 5rem 0;
    background: #fff;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: var(--secondary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    transition: background-color 0.2s;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-question:hover {
    background: rgba(245, 245, 245, 0.5);
}

.faq-question h3 {
    font-weight: 600;
    color: var(--foreground);
    font-size: 1rem;
    flex: 1;
    font-family: var(--font-body);
}

.faq-chevron {
    color: var(--secondary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-chevron.rotate-180 {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
}

.faq-answer.is-open {
    display: block;
}

.faq-answer p {
    color: var(--foreground);
    line-height: 1.7;
    padding-top: 1rem;
}

.faq-cta {
    margin-top: 4rem;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    color: #fff;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.faq-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .faq { padding: 8rem 0; }
    .faq-cta { padding: 3rem; }
}

/* ============================================================
   REGISTRATION SECTION (origem: RegistrationSection.tsx)
   ============================================================ */

.registration {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--muted), #fff);
}

.registration-grid {
    display: grid;
    gap: 3rem;
    align-items: flex-start;
    max-width: 72rem;
    margin: 0 auto;
}

.registration-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reg-info-card {
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: all 0.3s;
}

.reg-info-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reg-info-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.reg-info-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.reg-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reg-info-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-top: 0.25rem;
}

.scarcity-box {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, var(--primary), var(--primary-light));
    color: #fff;
}

.scarcity-box p:first-child {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.scarcity-box p:last-child {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.6;
}

.registration-form-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.registration-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
}

.registration-form-card > p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .registration-grid {
        grid-template-columns: 2fr 3fr;
    }
}

@media (min-width: 768px) {
    .registration { padding: 8rem 0; }
}

/* ============================================================
   LEAD FORM (origem: LeadForm.tsx)
   ============================================================ */

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-label .required {
    color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--foreground);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15);
}

.form-input.has-error,
.form-select.has-error {
    border-color: #f87171;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.form-error {
    font-size: 0.75rem;
    color: #ef4444;
}

.form-error-banner {
    font-size: 0.875rem;
    color: #ef4444;
    background: #fef2f2;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.form-privacy {
    font-size: 0.75rem;
    text-align: center;
    color: var(--muted-foreground);
}

/* Form success state */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    text-align: center;
    gap: 1rem;
}

.form-success-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    font-family: var(--font-display);
}

.form-success p {
    color: var(--muted-foreground);
    max-width: 28rem;
}

.form-success .highlight {
    font-weight: 700;
}

@media (min-width: 768px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SPOTS COUNTER (origem: SpotsCounter.tsx)
   ============================================================ */

/* Skeleton loading */
.spots-skeleton-hero {
    height: 2rem;
    width: 12rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
}

.spots-skeleton-section {
    height: 4rem;
    width: 100%;
    background: var(--muted);
    border-radius: 0.75rem;
}

/* Hero variant */
.spots-hero {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Section variant */
.spots-section {
    border-radius: 0.75rem;
    border-width: 2px;
    border-style: solid;
    background: #fff;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.spots-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.spots-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spots-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

.spots-progress {
    width: 100%;
    background: var(--muted);
    border-radius: 9999px;
    height: 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.spots-progress-bar {
    height: 0.75rem;
    border-radius: 9999px;
    transition: width 0.7s;
}

.spots-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
}

.spots-footer-left {
    color: var(--muted-foreground);
}

.spots-footer-left strong {
    color: var(--foreground);
}

.spots-footer-right {
    font-weight: 700;
    font-size: 1rem;
}

/* Urgency colors */
.urgency-bg-red { background-color: #dc2626; }
.urgency-bg-orange { background-color: #f97316; }
.urgency-bg-amber { background-color: #f59e0b; }
.urgency-bg-emerald { background-color: #10b981; }

.urgency-text-red { color: #dc2626; }
.urgency-text-orange { color: #ea580c; }
.urgency-text-amber { color: #d97706; }
.urgency-text-emerald { color: #059669; }

.urgency-border-red { border-color: #fca5a5; }
.urgency-border-orange { border-color: #fdba74; }
.urgency-border-amber { border-color: #fcd34d; }
.urgency-border-emerald { border-color: #6ee7b7; }

.urgency-badge-red { background: #fee2e2; color: #b91c1c; }
.urgency-badge-orange { background: #ffedd5; color: #c2410c; }
.urgency-badge-amber { background: #fef3c7; color: #b45309; }
.urgency-badge-emerald { background: #d1fae5; color: #047857; }

/* ============================================================
   TICKETS SECTION (origem: TicketsSection.tsx)
   ============================================================ */

.tickets {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--muted), #fff);
}

.tickets-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto 3rem;
}

.ticket-card {
    position: relative;
    padding: 2rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: all 0.3s;
    cursor: pointer;
}

.ticket-card:hover {
    border-color: rgba(0, 217, 255, 0.5);
}

.ticket-card.is-popular {
    transform: scale(1.02);
}

.ticket-card.is-selected {
    border-color: var(--secondary);
    box-shadow: 0 25px 50px rgba(0, 217, 255, 0.2);
    transform: scale(1.05);
}

.ticket-popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.ticket-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    font-family: var(--font-display);
}

.ticket-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.ticket-price-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    margin: 1.5rem 0;
}

.ticket-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
}

.ticket-price-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.ticket-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.ticket-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
}

.ticket-features li svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.ticket-cta-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--muted);
    color: var(--foreground);
}

.ticket-cta-btn:hover {
    background: var(--secondary);
    color: #fff;
}

.ticket-card.is-selected .ticket-cta-btn {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ticket-waitlist {
    background: linear-gradient(to right, rgba(15, 59, 92, 0.05), rgba(0, 217, 255, 0.05));
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
    border: 1px solid rgba(15, 59, 92, 0.1);
}

.ticket-waitlist h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.ticket-waitlist p {
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.ticket-payment-grid {
    display: grid;
    gap: 2rem;
    max-width: 56rem;
    margin: 4rem auto 0;
}

.ticket-payment-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
}

.ticket-payment-card h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
}

.ticket-payment-card li {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.ticket-payment-card li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: var(--secondary);
    border-radius: 9999px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .tickets { padding: 8rem 0; }
    .tickets-grid { grid-template-columns: repeat(3, 1fr); }
    .ticket-card.is-popular { transform: scale(1.05); }
    .ticket-payment-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FOOTER (origem: Footer.tsx)
   ============================================================ */

.site-footer {
    background: var(--primary);
    color: #fff;
}

.footer-content {
    padding: 3rem 0 2rem;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.footer-logo {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.footer-contact-item a {
    transition: opacity 0.2s;
}

.footer-contact-item a:hover {
    opacity: 1;
}

.footer-contact-item svg {
    flex-shrink: 0;
}

.footer-newsletter {
    width: 100%;
}

.footer-newsletter p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    min-width: 0;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.875rem;
    border: none;
    outline: none;
    font-family: var(--font-body);
    box-sizing: border-box;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    box-shadow: 0 0 0 2px var(--secondary);
}

.newsletter-btn {
    padding: 0.5rem 1rem;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.newsletter-btn:hover {
    background: rgba(0, 217, 255, 0.9);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.75;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social a {
    opacity: 0.75;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    opacity: 0.75;
    transition: opacity 0.2s;
}

.footer-legal a:hover {
    opacity: 1;
}

@media (min-width: 768px) {
    .footer-content { padding: 5rem 0 2rem; }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ============================================================
   PARTNERS / WORLDWIDE OUTREACH SECTION
   ============================================================ */

.partners {
    background: var(--primary);
    padding: 5rem 0;
}

.partners__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners__title {
    text-align: center;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.partners-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.partners-card__header {
    text-align: center;
    margin-bottom: 2rem;
}

.partners-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.partners-brand__icon {
    margin-bottom: 0.5rem;
    display: block;
}

.partners-brand__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.04em;
}

.partners-brand__tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.partners-brand__rule {
    width: 100%;
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0;
}

/* Carousel */
.partners-carousel {
    position: relative;
    overflow: hidden;
}

.partners-carousel__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.partners-carousel__slide {
    flex: 0 0 100%;
    min-width: 0;
}

/* Logo grid — 3 colunas × 3 linhas por slide */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0.5rem 3.5rem;
}

/* Tile individual */
.partner-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    background: #fafafa;
    transition: all 0.25s ease;
    cursor: default;
}

.partner-tile:hover {
    border-color: var(--secondary);
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
}

.partner-tile__name {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #555;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.25s;
    line-height: 1.3;
}

.partner-tile:hover .partner-tile__name {
    color: var(--primary);
}

/* Botões de navegação */
.partners-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.partners-carousel__btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transform: translateY(-50%) scale(1.08);
}

.partners-carousel__btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.partners-carousel__btn--prev { left: 0.5rem; }
.partners-carousel__btn--next { right: 0.5rem; }

/* Dots */
.partners-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.partners-carousel__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.partners-carousel__dot:hover {
    background: #888;
}

.partners-carousel__dot.active {
    background: var(--secondary);
    width: 1.25rem;
    border-radius: 0.375rem;
}

/* Contador */
.partners-carousel__counter {
    text-align: center;
    margin-top: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: #888;
    font-weight: 500;
}

.partners-carousel__current {
    color: var(--secondary);
    font-weight: 700;
}

/* Responsivo */
@media (min-width: 640px) {
    .partners-grid {
        gap: 1.25rem;
        padding: 0.5rem 4rem;
    }

    .partners__title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .partners {
        padding: 8rem 0;
    }

    .partners-grid {
        gap: 1.5rem;
        padding: 0.5rem 4.5rem;
    }
}

@media (max-width: 480px) {
    .partners__title {
        font-size: 1.75rem;
    }

    .partners-card {
        padding: 1.5rem 1rem 1.25rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0.5rem 3rem;
    }

    .partners-carousel__btn {
        width: 2.25rem;
        height: 2.25rem;
    }

    .partners-carousel__btn svg {
        width: 1rem;
        height: 1rem;
    }

    .partners-carousel__btn--prev { left: 0.25rem; }
    .partners-carousel__btn--next { right: 0.25rem; }
}

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */

.page-wrapper {
    min-height: 100vh;
    background: #fff;
    padding-top: 5rem;
}
