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

body {
    font-family: 'Inter', sans-serif;
    background: #f4f6f9;
    color: #0f172a;
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

a:hover,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(20, 184, 166, 0.25);
    outline-offset: 2px;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

:root {
    --teal: #14b8a6;
    --teal-dark: #0d9488;
    --amber: #f59e0b;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-400: #475569;
    --gray-soft: #f8fafc;
    --border-light: rgba(226, 232, 240, 0.6);
    --shadow-card: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 30px 60px -15px rgba(20, 184, 166, 0.15);
}

/* ===== BACKGROUND GRID ===== */
.bg-grid {
    background-image: 
        radial-gradient(circle at 25% 0%, rgba(20, 184, 166, 0.06) 0%, transparent 50%),
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
}

/* ===== HEADER COM VIDRO ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    padding: 10px 0;
    transition: 0.3s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.logo {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--slate-900);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}
.logo i {
    color: var(--teal);
    background: rgba(20, 184, 166, 0.1);
    padding: 6px;
    border-radius: 10px;
}
.logo .brand-name {
    background: linear-gradient(135deg, var(--teal), #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.nav-links a {
    color: var(--slate-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, var(--teal), #0ea5e9);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--teal-dark);
}

.btn-header {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff !important;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
    transition: 0.3s;
}
.btn-header::after {
    display: none !important;
}
.btn-header:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4);
    color: #fff !important;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--slate-900);
    cursor: pointer;
}

/* ===== TOKENS DE COMPONENTE ===== */
.surface-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.surface-card--soft {
    background: var(--gray-soft);
    border: 1px solid var(--border-light);
    border-radius: 24px;
}

.section-shell {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-card);
}

/* ===== CHECKOUT ===== */
.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 24px;
    align-items: start;
}

.checkout-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.checkout-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.checkout-card--compact {
    padding: 18px 20px;
}

.checkout-summary {
    position: sticky;
    top: 100px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.95rem;
    background: #fff;
    color: var(--slate-900);
}

.form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14);
}

@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

/* ===== BOTÕES ===== */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    z-index: 1100;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}
.whatsapp-float:active {
    transform: scale(0.96);
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal), #0ea5e9);
    border: none;
    padding: 16px 44px;
    border-radius: 60px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.35);
    letter-spacing: 0.3px;
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(20, 184, 166, 0.45);
}
.btn-primary:active {
    transform: scale(0.96);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
    padding: 14px 38px;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.btn-outline:hover {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(20, 184, 166, 0.08);
    border: none;
    padding: 14px 32px;
    border-radius: 60px;
    color: var(--teal-dark);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.btn-secondary:hover {
    background: rgba(20, 184, 166, 0.16);
}

/* ===== SECTIONS ===== */
section {
    padding: 90px 0;
    width: 100%;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
}
.section-title .highlight {
    background: linear-gradient(135deg, var(--teal), #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title .highlight-gold {
    background: linear-gradient(135deg, var(--amber), #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--slate-400);
    font-size: 1.15rem;
    max-width: 650px;
    margin-bottom: 50px;
    line-height: 1.7;
}

.form-group label,
.form-label {
    color: var(--slate-900);
}

.text-center {
    text-align: center;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== HERO ===== */
#home {
    padding-top: 140px;
    padding-bottom: 60px;
    background:
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.12), transparent 28%),
        linear-gradient(135deg, #f8fbff 0%, #f4f6f9 48%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
#home .bg-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    max-width: 590px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.05;
    color: var(--slate-900);
    margin-bottom: 16px;
    letter-spacing: -2px;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--teal), #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--amber);
    opacity: 0.25;
    border-radius: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 24px;
    max-width: 500px;
    line-height: 1.8;
}

.hero .hero-description {
    font-size: 1rem;
    color: var(--slate-400);
    max-width: 460px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 32px;
}
.hero-badges div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--slate-900);
    font-size: 0.95rem;
}
.hero-badges i {
    color: var(--teal);
    font-size: 1.4rem;
    background: rgba(20, 184, 166, 0.08);
    padding: 8px;
    border-radius: 12px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.2);
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.7);
}
.hero-image-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 50px 100px -20px rgba(20, 184, 166, 0.15);
}
.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-image-wrapper:hover img {
    transform: scale(1.05);
}
.hero-image-wrapper .overlay-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: var(--slate-900);
}
.hero-image-wrapper .overlay-badge i {
    color: var(--teal);
    font-size: 2rem;
    background: rgba(20, 184, 166, 0.1);
    padding: 10px;
    border-radius: 14px;
}
.hero-image-wrapper .overlay-badge small {
    font-weight: 400;
    color: var(--slate-400);
    font-size: 0.85rem;
    display: block;
}

/* ===== TRUST ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}
.trust-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,250,252,0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226,232,240,0.9);
    padding: 28px 20px;
    border-radius: 24px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 20px 45px -24px rgba(15,23,42,0.18);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}
.trust-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,184,166,0.08), rgba(14,165,233,0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.trust-item:hover {
    transform: translateY(-8px);
    border-color: var(--teal);
    box-shadow: var(--shadow-hover);
}
.trust-item:hover::before {
    opacity: 1;
}
.trust-item i {
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
    background: linear-gradient(135deg, rgba(20,184,166,0.16), rgba(14,165,233,0.08));
    padding: 14px;
    border-radius: 16px;
    color: var(--teal);
    margin-bottom: 16px;
    display: inline-block;
}
.trust-item h4 {
    position: relative;
    z-index: 1;
    color: var(--slate-900);
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.trust-item p {
    position: relative;
    z-index: 1;
    color: var(--slate-500);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 14px;
}
.trust-item span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.9rem;
}
.trust-item span::after {
    content: '→';
    transition: transform 0.2s ease;
}
.trust-item:hover span::after {
    transform: translateX(3px);
}
.trust-item--brand {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}
.trust-item--growth {
    background: linear-gradient(135deg, #f8fcff, #ffffff);
}
.trust-item--automation {
    background: linear-gradient(135deg, #fcfffe, #f8fafc);
}
.trust-item--security {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

/* ===== NÚMEROS ===== */
#numeros {
    background: var(--slate-900);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
#numeros::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20,184,166,0.08), transparent 70%);
    border-radius: 50%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.stats-grid h3 {
    font-size: 3.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--teal), #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.stats-grid p {
    color: #94a3b8;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.stats-grid .stat-desc {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 400;
    margin-top: 2px;
}

/* ===== PLANOS ===== */
#planos {
    background: #ffffff;
}
.pricing-toggle {
    display: inline-flex;
    background: var(--gray-soft);
    padding: 6px;
    border-radius: 60px;
    border: 1px solid var(--border-light);
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 0.9rem;
}
.pricing-toggle button {
    background: transparent;
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    color: var(--slate-400);
    transition: 0.3s;
}
.pricing-toggle button.active {
    background: #ffffff;
    color: var(--slate-900);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.pricing-toggle .discount-badge {
    background: var(--amber);
    color: #fff;
    padding: 2px 12px;
    border-radius: 40px;
    font-size: 0.7rem;
    margin-left: 6px;
    font-weight: 700;
}
.pricing-save {
    display: block;
    font-size: 0.8rem;
    color: var(--amber);
    font-weight: 600;
    margin-top: 4px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 28px;
    padding: 40px 28px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--shadow-card);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover,
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--teal);
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: var(--teal);
}

.plan-card.popular {
    border: 2px solid var(--amber);
    background: #fffbeb;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.08);
}
.plan-card.popular::before {
    content: '⭐ MAIS VENDIDO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--amber), #d97706);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 28px;
    border-radius: 40px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.plan-icon {
    font-size: 2.4rem;
    color: var(--teal);
    margin-bottom: 8px;
}
.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
}
.plan-price {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--slate-900);
    margin: 10px 0 4px;
    letter-spacing: -1px;
}
.plan-price span {
    font-size: 1rem;
    color: var(--slate-400);
    font-weight: 500;
}
.plan-desc {
    color: var(--slate-400);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.plan-desc strong {
    color: var(--slate-700);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}
.plan-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #334155;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    line-height: 1.4;
}
.plan-features i {
    color: var(--teal);
    width: 20px;
    font-size: 1rem;
    background: rgba(20,184,166,0.06);
    padding: 4px;
    border-radius: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}
.plan-features .feature-detail {
    color: var(--slate-400);
    font-weight: 400;
    font-size: 0.85rem;
    display: block;
}

.btn-plan {
    width: 100%;
    padding: 16px;
    background: var(--gray-soft);
    border: 1px solid transparent;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--slate-700);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-plan:hover {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.3);
    transform: translateY(-2px);
}

.pricing-toggle {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.plan-card.popular .btn-plan {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.3);
}
.plan-card.popular .btn-plan:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.4);
}

/* ===== SERVIÇOS ===== */
#servicos {
    background: var(--gray-soft);
}
.services-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 auto 30px;
    max-width: 760px;
}
.services-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--slate-700);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}
.services-badges span i {
    color: var(--teal);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-item {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--shadow-card);
    transform: translateY(0);
    position: relative;
}
.service-item:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-hover);
    border-color: var(--teal);
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(20,184,166,0.04), transparent 60%);
    pointer-events: none;
}

.service-item .service-body {
    animation: fadeUp 0.7s ease both;
}
.service-item .img-wrapper {
    overflow: hidden;
    position: relative;
}
.service-item .img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-item:hover .img-wrapper img {
    transform: scale(1.08);
}
.service-item .img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(15,23,42,0.6), transparent);
}
.service-item .service-body {
    padding: 20px 24px 28px;
    position: relative;
}
.service-item .service-body h4 {
    color: var(--slate-900);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.service-item .service-body p {
    color: var(--slate-400);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.service-item .service-body .service-tag {
    display: inline-block;
    background: rgba(20,184,166,0.08);
    color: var(--teal-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 40px;
    margin-top: 8px;
    letter-spacing: 0.3px;
}
.service-item .service-body i {
    color: var(--teal);
    margin-right: 8px;
    background: rgba(20,184,166,0.06);
    padding: 6px;
    border-radius: 10px;
}

/* ===== SOBRE ===== */
#sobre {
    background: #ffffff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-grid .img-wrapper {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
}
.about-grid .img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-grid .img-wrapper:hover img {
    transform: scale(1.03);
}
.about-text .about-description {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-text ul {
    list-style: none;
    margin-top: 20px;
}
.about-text ul li {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    color: #334155;
    border-bottom: 1px solid var(--border-light);
}
.about-text ul li i {
    background: rgba(20,184,166,0.08);
    padding: 10px;
    border-radius: 14px;
    color: var(--teal);
    font-size: 1.2rem;
    width: 44px;
    text-align: center;
    flex-shrink: 0;
}
.about-mvv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.about-mvv div {
    background: var(--gray-soft);
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);
}
.about-mvv div i {
    font-size: 1.6rem;
    color: var(--teal);
    margin-bottom: 6px;
}
.about-mvv div h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate-900);
}
.about-mvv div p {
    font-size: 0.8rem;
    color: var(--slate-400);
    margin: 0;
}

/* ===== INFRAESTRUTURA ===== */
#infraestrutura {
    background: linear-gradient(135deg, #f8fbff 0%, #f4f6f9 100%);
    position: relative;
}
#infraestrutura::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(20,184,166,0.12), transparent 30%);
    pointer-events: none;
}
.infra-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.infra-grid .img-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px -25px rgba(0,0,0,0.16);
    border: 1px solid rgba(226,232,240,0.8);
    background: #fff;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    min-height: 520px;
    height: 520px;
    display: block;
    position: relative;
}
.infra-grid .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.infra-grid .img-wrapper:hover img {
    transform: scale(1.035);
}
.infra-text {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226,232,240,0.7);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 16px 40px -20px rgba(15,23,42,0.12);
    height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.infra-text .infra-description {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 10px;
}
.infra-text ul {
    list-style: none;
    margin-top: 20px;
    display: grid;
    gap: 10px;
}
.infra-text ul li {
    padding: 12px 14px;
    border: 1px solid rgba(226,232,240,0.8);
    border-radius: 14px;
    background: rgba(248,250,252,0.8);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    color: #1e293b;
}
.infra-text ul li i {
    color: var(--teal);
    font-size: 1.05rem;
    width: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}
.infra-text ul li small {
    font-weight: 400;
    color: var(--slate-400);
    font-size: 0.85rem;
    margin-left: 4px;
}
.infra-locations {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.infra-locations span {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    font-weight: 600;
    color: var(--slate-900);
    font-size: 0.82rem;
    box-shadow: 0 6px 16px rgba(15,23,42,0.04);
}
.infra-locations span i {
    color: var(--amber);
    margin-right: 8px;
}
.infra-cert {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.infra-cert span {
    background: #ffffff;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(226,232,240,0.9);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-700);
    box-shadow: 0 6px 16px rgba(15,23,42,0.03);
}
.infra-cert span i {
    color: var(--teal);
    margin-right: 6px;
}

/* ===== CONTATO ===== */
#contato {
    background: #ffffff;
}
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(255,255,255,0.98));
    padding: 50px;
    border-radius: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}
.contact-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(20,184,166,0.05), transparent 55%);
    pointer-events: none;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--slate-900);
    font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    font-size: 1rem;
    color: var(--slate-900);
    transition: 0.3s;
    font-family: inherit;
    min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    outline: none;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.08);
}
.form-group textarea {
    height: 120px;
    resize: vertical;
}
.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--slate-500);
    font-size: 0.95rem;
}
.form-note i {
    color: var(--teal);
}
.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #334155;
    margin-bottom: 16px;
    font-weight: 500;
}
.contact-info .contact-item i {
    color: var(--teal);
    width: 28px;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.contact-info .contact-item small {
    font-weight: 400;
    color: var(--slate-400);
    display: block;
    font-size: 0.85rem;
}
.contact-info .social-links {
    display: flex;
    gap: 20px;
    font-size: 2rem;
    color: var(--slate-700);
    margin-top: 20px;
}
.contact-info .social-links i {
    cursor: pointer;
    transition: 0.3s;
    width: auto;
    color: var(--slate-400);
}
.contact-info .social-links i:hover {
    color: var(--teal);
    transform: translateY(-4px) scale(1.1);
}
.contact-info .contact-cta {
    margin-top: 30px;
    background: rgba(20,184,166,0.04);
    padding: 20px 24px;
    border-radius: 20px;
    border-left: 4px solid var(--amber);
}
.contact-info .contact-cta p {
    margin: 0;
    font-weight: 700;
    color: var(--slate-900);
}
.contact-info .contact-cta small {
    color: #475569;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--slate-900);
    color: #94a3b8;
    padding: 50px 0 20px;
    border-top: 2px solid var(--teal);
}
.footer-grid a {
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-grid a:hover {
    color: #fff;
    transform: translateX(2px);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-grid h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 700;
}
.footer-grid a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.2s;
    font-size: 0.95rem;
}
.footer-grid a:hover {
    color: var(--teal);
    transform: translateX(4px);
}
.footer-payments i {
    font-size: 2.4rem;
    margin-right: 12px;
    color: #cbd5e1;
    transition: 0.2s;
}
.footer-payments i:hover {
    color: #fff;
}
.footer-newsletter {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.footer-newsletter input {
    flex: 1;
    padding: 10px 16px;
    border-radius: 40px;
    border: 1px solid #334155;
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
}
.footer-newsletter input::placeholder {
    color: #64748b;
}
.footer-newsletter button {
    background: var(--teal);
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.footer-newsletter button:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
}
.footer-security {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #64748b;
}
.footer-security i {
    color: var(--teal);
    margin-right: 4px;
}

/* ===== ESTILOS DO PAINEL PREMIUM ===== */
.painel-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border-light);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.painel-topbar h2 {
    margin: 0;
    color: var(--slate-900);
    font-size: 1.35rem;
    font-weight: 800;
}

.painel-topbar p {
    margin: 0.2rem 0 0;
    color: var(--slate-400);
    font-size: 0.95rem;
}

.topbar-actions {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.painel-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 1.1rem;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.modal-content {
    border: 0;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.modal-header {
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.modal-footer {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

/* ===== PÁGINA HOSPEDAGEM ===== */
#hospedagem-hero {
    animation: fadeInDown 0.8s ease-out;
}

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

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

#painel-cliente > .container > div {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

#painel-cliente > .container > div > div:nth-child(1) {
    animation-delay: 0.1s;
}

#painel-cliente > .container > div > div:nth-child(2) {
    animation-delay: 0.2s;
}

#painel-cliente > .container > div > div:nth-child(3) {
    animation-delay: 0.3s;
}

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

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero p, .hero .hero-description { margin: 0 auto 20px; }
    .hero-actions { justify-content: center; }
    .hero-badges { justify-content: center; }
    .plans-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .infra-grid { grid-template-columns: 1fr; text-align: center; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-mvv { grid-template-columns: 1fr 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-image-wrapper img { height: 300px; }
    .section-title { font-size: 2.4rem; }
    .hero h1 { font-size: 2.6rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .container { padding: 0 18px; }
    .hero-actions, .hero-badges { justify-content: center; }
    .hero-actions a, .hero-badges div { width: 100%; justify-content: center; }
    .hero-badges { gap: 12px; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        padding: 30px;
        gap: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.04);
        border-bottom: 2px solid var(--teal);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .nav-links.open {
        display: flex;
        animation: fadeDown 0.25s ease-out;
    }
    .plans-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .about-mvv { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .contact-wrap { padding: 24px; }
    .hero-image-wrapper .overlay-badge { 
        left: 16px; right: 16px; bottom: 16px; 
        flex-wrap: wrap; font-size: 0.9rem;
    }
    .pricing-toggle { flex-wrap: wrap; }
    .footer-newsletter { flex-direction: column; }
}

/* ===== IA POWERED BADGE ===== */
.ai-card { position: relative; border: 1px solid rgba(99,102,241,0.25) !important; background: linear-gradient(135deg, rgba(99,102,241,0.05), rgba(168,85,247,0.05)) !important; }
.ai-card .ai-badge { position: absolute; top: -10px; right: 14px; background: linear-gradient(135deg, #6366f1, #a855f7); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 3px 10px; border-radius: 10px; letter-spacing: 0.04em; z-index: 2; }

/* ===== FORM STYLES (checkout) ===== */
.form-label { display:block; font-size:0.85rem; font-weight:600; color:#334155; margin-bottom:4px; }
.form-control { width:100%; padding:11px 14px; border:1px solid #e2e8f0; border-radius:10px; font-size:0.92rem; font-family:inherit; color:#0f172a; background:#fff; transition:border-color 0.2s,box-shadow 0.2s; }
.form-control:focus { outline:none; border-color:#14b8a6; box-shadow:0 0 0 3px rgba(20,184,166,0.12); }
.form-control::placeholder { color:#94a3b8; }
.form-helper { font-size:0.78rem; color:#94a3b8; margin-top:4px; }
