/*
Theme Name: JB Transfer Executivo - Premium
Theme URI: https://jbtransfer.com.br
Author: JB Transfer
Author URI: https://jbtransfer.com.br
Description: Tema WordPress premium dark mode para empresa de táxi executivo com design sofisticado.
Version: 2.0.0
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jb-transfer-premium
Domain Path: /languages
*/

/* ============================================
   VARIÁVEIS CSS - PALETA REFINADA
   ============================================ */
:root {
    --primary-dark: #0A0A12;
    --primary-light: #12121E;
    --surface: #16162A;
    --surface-hover: #1C1C34;
    --accent: #C6A355;
    --accent-light: #D4B76A;
    --accent-dark: #A8883F;
    --accent-glow: rgba(198,163,85,0.15);
    --text-light: #F0EDE6;
    --text-muted: #8A8799;
    --text-dim: #5A5770;
    --border-color: rgba(198,163,85,0.08);
    --border-hover: rgba(198,163,85,0.2);
    --success: #4ADE80;
    --whatsapp: #25D366;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--primary-dark);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Textura sutil de ruído */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* Glow decorativo */
body::after {
    content: '';
    position: fixed;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }
.reveal-d7 { transition-delay: 0.56s; }
.reveal-d8 { transition-delay: 0.64s; }

/* ============================================
   HEADER / NAVEGAÇÃO
   ============================================ */
header {
    background: rgba(10, 10, 18, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

.logo-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo span {
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--text-light);
}

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

nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 14px;
    border-radius: 8px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

nav a:hover {
    color: var(--accent);
}

nav a:hover::after {
    transform: scaleX(1);
}

/* Menu hamburger mobile */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 130px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(198,163,85,0.07) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

/* Grid sutil no fundo */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(198,163,85,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198,163,85,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(198,163,85,0.2);
    background: rgba(198,163,85,0.06);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-badge .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.08;
    letter-spacing: -1px;
    color: var(--text-light);
}

.hero h1 .accent {
    color: var(--accent);
    display: inline;
}

.hero h1 .thin-italic {
    font-weight: 400;
    font-style: italic;
    color: var(--text-muted);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary-dark);
    box-shadow: 0 8px 30px rgba(198,163,85,0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(198,163,85,0.35);
}

.btn-secondary {
    background: rgba(198,163,85,0.06);
    color: var(--text-light);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(198,163,85,0.1);
    border-color: var(--border-hover);
    color: var(--accent);
    transform: translateY(-3px);
}

/* ============================================
   HERO STATS
   ============================================ */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 20px;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2,
.section-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-light);
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.section-title p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SEÇÃO RESERVA
   ============================================ */
.reserva-section {
    padding: 100px 20px;
    background: var(--primary-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.reserva-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.reserva-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.reserva-left h2 .accent-text {
    color: var(--accent);
}

.reserva-left p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.35s ease;
}

.contact-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    transform: translateX(6px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(198,163,85,0.1);
    border: 1px solid rgba(198,163,85,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.contact-info h3 {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-info a {
    color: var(--accent) !important;
    text-decoration: none !important;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent-light) !important;
}

/* ============================================
   FORMULÁRIO AGENDAMENTO
   ============================================ */
.form-section {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.form-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

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

.form-group label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(10, 10, 18, 0.6);
    border: 1px solid rgba(198,163,85,0.1);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text-light);
    font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group select option {
    background: var(--primary-dark);
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(10, 10, 18, 0.8);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(198,163,85,0.08);
}

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

.form-required {
    color: var(--accent);
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: var(--radius-md);
    padding: 16px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.35s ease;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(198,163,85,0.3);
}

.form-submit:active {
    transform: translateY(0);
}

/* ============================================
   SOBRE
   ============================================ */
.about {
    background: transparent;
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.about-item {
    padding: 24px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
}

.about-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.about-item .about-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(198,163,85,0.08);
    border: 1px solid rgba(198,163,85,0.1);
}

.about-item strong {
    color: var(--text-light);
    font-size: 0.92rem;
    display: block;
    margin-bottom: 4px;
}

.about-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

/* ============================================
   GALERIA DE CARROS
   ============================================ */
.cars {
    background: var(--primary-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.car-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.car-card:hover {
    transform: translateY(-8px);
    background: var(--surface-hover);
    border-color: var(--border-hover);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.car-image {
    width: 100%;
    height: 230px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 50%, #16162a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.car-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--surface), transparent);
    pointer-events: none;
    z-index: 1;
}

.car-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
    mix-blend-mode: lighten;
}

.car-card:hover .car-image img {
    transform: scale(1.08);
}

.car-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(10,10,18,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(198,163,85,0.15);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
}

.car-info {
    padding: 22px 24px 26px;
}

.car-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.car-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   SERVIÇOS
   ============================================ */
.services {
    background: transparent;
}

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

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.service-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(198,163,85,0.06);
    border: 1px solid rgba(198,163,85,0.08);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: rgba(198,163,85,0.12);
    border-color: rgba(198,163,85,0.2);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-badge {
    display: inline-block;
    background: rgba(198,163,85,0.1);
    color: var(--accent);
    border: 1px solid rgba(198,163,85,0.15);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-top: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--primary-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: all 0.35s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(198,163,85,0.1);
    line-height: 1;
}

.testimonial-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--accent);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: var(--surface);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 70px 40px;
    text-align: center;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(198,163,85,0.04) 0%, transparent 50%);
    animation: ctaRotate 25s linear infinite;
}

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

.cta > * { position: relative; z-index: 1; }

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta .btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-dark);
    box-shadow: 0 8px 30px rgba(198,163,85,0.25);
}

.cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(198,163,85,0.4);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--primary-light);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    color: var(--text-dim);
    font-size: 0.78rem;
}

/* ============================================
   BOTÃO WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2.5s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 20px;
    }

    /* Mobile menu */
    .mobile-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary-dark);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        padding: 80px 32px 40px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    nav.open {
        right: 0;
    }

    nav a {
        font-size: 0.95rem;
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        width: 100%;
    }

    nav a:hover {
        background: var(--surface);
    }

    nav a::after {
        display: none;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(10,10,18,0.6);
        backdrop-filter: blur(4px);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .reserva-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reserva-left h2 {
        font-size: 32px;
    }

    .form-section {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 50px 28px;
        margin: 0 12px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

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

    nav a {
        font-size: 14px;
    }
}
