/* ==========================================================================
   AGÊNCIA ROAR — Premium CSS
   ========================================================================== */

/* ---------- Variables & Reset ---------- */
:root {
    --color-primary: #3d1755;
    --color-primary-dark: #2a103c;
    --color-secondary: #00c077;
    --color-secondary-dark: #00a063;
    --color-white: #ffffff;
    --color-light: #f7f3e8;
    --color-text: #222222;
    --color-text-light: #666666;
    --color-dark: #0e0518;

    --gradient-main: linear-gradient(135deg, #3d1755 0%, #1a0a30 50%, #0a2e1e 100%);
    --gradient-accent: linear-gradient(135deg, #3d1755, #00c077);
    --gradient-card: linear-gradient(135deg, rgba(61,23,85,0.06) 0%, rgba(0,192,119,0.04) 100%);

    --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 50px;

    --shadow-sm: 0 2px 8px rgba(61,23,85,0.06);
    --shadow-md: 0 8px 30px rgba(61,23,85,0.08);
    --shadow-lg: 0 16px 50px rgba(61,23,85,0.12);
    --shadow-glow: 0 0 40px rgba(0,192,119,0.15);

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

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

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.bg-light { background-color: var(--color-light); }
.bg-dark { background: var(--gradient-main); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
    box-shadow: 0 4px 20px rgba(0, 192, 119, 0.35);
}
.btn-primary:hover {
    background: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 192, 119, 0.45);
}

.btn-secondary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.btn-secondary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(61,23,85,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}
.section-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-top: 10px;
}
.text-white h2,
.text-white p {
    color: var(--color-white) !important;
}

/* ---------- Utilities ---------- */
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 30px; }
.mt-5 { margin-top: 60px; }
.text-center { text-align: center; }

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1) 0.25s, transform 0.8s cubic-bezier(0.4,0,0.2,1) 0.25s;
}
.fade-in-delay.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 18px 0;
}
#main-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(61,23,85,0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Logo --- */
.logo a {
    display: flex;
    align-items: center;
}
.img-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;
}
#main-header:not(.scrolled) .img-logo {
    filter: brightness(0) invert(1);
}
.logo-text {
    color: var(--color-secondary);
}

/* --- Nav --- */
#nav-menu { display: none; }

.menu-list {
    display: flex;
    gap: 32px;
}
.menu-list a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
    padding-bottom: 4px;
}
.menu-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}
.menu-list a:hover::after {
    width: 100%;
}
#main-header:not(.scrolled) .menu-list a {
    color: rgba(255,255,255,0.9);
}
.menu-list a:hover {
    color: var(--color-secondary) !important;
}

.header-cta { display: none; }

/* --- Mobile Toggle --- */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}
.menu-toggle .bar {
    width: 26px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition);
    border-radius: 3px;
}
#main-header.scrolled .menu-toggle .bar {
    background-color: var(--color-primary);
}
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-primary) !important;
}
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-primary) !important;
}

/* --- Mobile Menu Open --- */
body.menu-open #nav-menu {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
body.menu-open .menu-list {
    flex-direction: column;
    text-align: center;
    gap: 24px;
}
body.menu-open .menu-list a {
    color: var(--color-primary) !important;
    font-size: 1.4rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    padding: 160px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-main);
    overflow: hidden;
    color: var(--color-white);
}

/* Decorative background elements */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,192,119,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(61,23,85,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.hero-bg-shapes::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(0,192,119,0.1);
    border-radius: 50%;
}
.hero-bg-shapes::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}
.hero-buttons .btn-outline {
    color: var(--color-white);
    border-color: rgba(255,255,255,0.4);
}
.hero-buttons .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}
.microtext {
    font-size: 0.85rem !important;
    color: var(--color-secondary) !important;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* --- Floating Cards --- */
.hero-visual {
    position: relative;
    height: 380px;
}
.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}
.f-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-white);
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
}
.f-card-1 { top: 5%; left: 5%; animation-delay: 0s; }
.f-card-2 { top: 35%; right: 5%; animation-delay: 1s; }
.f-card-3 { bottom: 30%; left: 15%; animation-delay: 2s; background: var(--color-secondary); border-color: var(--color-secondary); }
.f-card-4 { top: 15%; right: 25%; animation-delay: 1.5s; }
.f-card-5 { bottom: 10%; right: 15%; animation-delay: 2.5s; }
.f-card-6 { top: 55%; left: 0%; animation-delay: 0.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ==========================================================================
   SOBRE
   ========================================================================== */
.highlight-phrase {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 30px;
    font-style: italic;
    border-left: 4px solid var(--color-secondary);
    padding-left: 20px;
    text-align: left;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.team-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.team-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--gradient-card);
    border: 4px solid var(--color-secondary);
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.team-card h3 { margin-bottom: 5px; font-size: 1.3rem; }
.team-card .role {
    display: inline-block;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.team-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* ==========================================================================
   ESPECIALIDADES
   ========================================================================== */
.grid-especialidades {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.esp-card {
    background: var(--color-white);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.esp-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: var(--transition);
}
.esp-card:hover::after { width: 100%; }
.esp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.esp-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-radius: var(--radius-sm);
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.esp-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.esp-card p {
    color: var(--color-text-light);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.servicos-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.servico-item {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: var(--transition);
}
.servico-item:hover {
    box-shadow: var(--shadow-lg);
}
.servico-icon-banner {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}
.servico-icon-banner.bg-social { background: linear-gradient(135deg, #3d1755 0%, #5a2d7a 100%); }
.servico-icon-banner.bg-trafego { background: linear-gradient(135deg, #1a3a2a 0%, #00c077 100%); }
.servico-icon-banner.bg-seo { background: linear-gradient(135deg, #2a103c 0%, #4a1d6e 100%); }
.servico-icon-banner.bg-sites { background: linear-gradient(135deg, #0a2e1e 0%, #00c077 100%); }
.servico-icon-banner.bg-identidade { background: linear-gradient(135deg, #3d1755 0%, #6b2d99 100%); }
.servico-icon-banner.bg-artes { background: linear-gradient(135deg, #00c077 0%, #3d1755 100%); }
.servico-icon-banner.bg-apresentacoes { background: linear-gradient(135deg, #1a0a24 0%, #3d1755 100%); }

.servico-icon-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}
.servico-icon-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.servico-content {
    padding: 40px;
}
.servico-item h3 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}
.servico-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}
.check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.check-list li, .check-list-small li {
    position: relative;
    padding-left: 28px;
    color: var(--color-text-light);
    line-height: 1.6;
}
.check-list li::before, .check-list-small li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1rem;
}
.servico-comercial {
    font-weight: 600;
    color: var(--color-primary);
    background: var(--gradient-card);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 20px;
    border-left: 3px solid var(--color-secondary);
}
.condicoes-box {
    background: var(--gradient-card);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border-left: 3px solid var(--color-primary);
}
.condicoes-box ul {
    margin-top: 12px;
    list-style-type: disc;
    padding-left: 20px;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* ==========================================================================
   PROCESSO
   ========================================================================== */
.processo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.proc-card {
    background: var(--color-white);
    padding: 22px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.proc-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}
.proc-card .num {
    background: var(--gradient-accent);
    color: var(--color-white);
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 18px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ==========================================================================
   PLANOS
   ========================================================================== */
.plan-category-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-primary);
    position: relative;
}
.planos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.centered-grid {
    max-width: 420px;
    margin: 0 auto;
}
.plano-card {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.plano-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.plano-card.destaque {
    border: 2px solid var(--color-secondary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.plano-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.plano-card h4 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}
.check-list-small {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}
.check-list-small li {
    font-size: 0.93rem;
    margin-bottom: 10px;
}
.price-tag {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.artes-avulsas-banner {
    background: var(--gradient-accent);
    color: var(--color-white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.artes-avulsas-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
}
.artes-avulsas-banner h4 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.artes-avulsas-banner .btn-outline {
    margin-top: 20px;
    border-color: var(--color-white);
    color: var(--color-white);
}
.artes-avulsas-banner .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* ==========================================================================
   RESULTADOS
   ========================================================================== */
.resultados-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.res-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 36px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--color-white);
    transition: var(--transition);
}
.res-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(0,192,119,0.3);
}
.res-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}
.res-card h3 {
    color: var(--color-white);
    font-size: 1.1rem;
}
.text-observacao {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 40px;
    font-style: italic;
}

/* ==========================================================================
   CLIENTES
   ========================================================================== */
.clientes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.cliente-item {
    background: var(--color-white);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--color-text-light);
    border: 1px solid rgba(0,0,0,0.04);
    font-size: 0.9rem;
    transition: var(--transition);
}
.cliente-item:hover {
    color: var(--color-primary);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final {
    padding: 100px 0;
    background: var(--gradient-main);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,192,119,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-final h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.cta-final p {
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
.contato-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
.info-list { margin-top: 30px; }
.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}
.info-list .icon {
    font-size: 1.3rem;
    margin-right: 16px;
    background: var(--gradient-card);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.04);
}
.info-list strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: 2px;
}
.info-list p {
    color: var(--color-text-light);
}

.contato-form-container {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
}
.form-group { margin-bottom: 20px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-primary);
    font-size: 0.92rem;
}
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e4f0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: #faf9fc;
    color: var(--color-text);
}
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(0, 192, 119, 0.1);
    background: var(--color-white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 70px 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-style: italic;
}
.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}
.footer-links h4,
.footer-contact h4 {
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}
.footer-links ul li a:hover { color: var(--color-secondary); }
.footer-contact p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE — Tablet
   ========================================================================== */
@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .hero-content h1 { font-size: 3.2rem; }

    .team-grid { grid-template-columns: 1fr 1fr; }
    .grid-especialidades { grid-template-columns: repeat(2, 1fr); }
    .processo-grid { grid-template-columns: repeat(2, 1fr); }
    .planos-grid { grid-template-columns: repeat(3, 1fr); }
    .resultados-grid { grid-template-columns: repeat(3, 1fr); }
    .contato-wrapper { grid-template-columns: 1fr 1fr; align-items: start; }
    .footer-content { grid-template-columns: 2fr 1fr 1fr; }
    .check-list { grid-template-columns: 1fr 1fr; }

    .servico-item {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }
    .servico-item.reverse {
        flex-direction: row-reverse;
    }
    .servico-icon-banner {
        width: 260px;
        min-width: 260px;
        height: auto;
        min-height: 100%;
        font-size: 5rem;
    }
    .servico-content {
        flex: 1;
        padding: 48px;
    }
}

/* ==========================================================================
   RESPONSIVE — Desktop
   ========================================================================== */
@media (min-width: 992px) {
    #nav-menu { display: block; }
    .menu-toggle { display: none; }
    .header-cta { display: block; }

    .section { padding: 120px 0; }

    .hero-content h1 { font-size: 3.8rem; }

    .grid-especialidades { grid-template-columns: repeat(4, 1fr); }
    .processo-grid { grid-template-columns: repeat(5, 1fr); }
    .resultados-grid { grid-template-columns: repeat(5, 1fr); }

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

    .servico-icon-banner {
        width: 340px;
        min-width: 340px;
    }
}

@media (min-width: 1200px) {
    .hero-content h1 { font-size: 4rem; }
    .container { padding: 0 40px; }
}
