:root {
    /* Paleta de Cores Refinada */
    --primary-rosa: #FFD1DC; /* Rosa Bebê */
    --accent-rosa: #B1456E;  /* Rosa para CTAs */
    --gold: #C9A24A;         /* Dourado */
    --gold-light: #E5C878;
    --text-main: #2D2D2F;    /* Quase preto Apple */
    --text-light: #6E6E73;   /* Cinza Apple */
    --bg-white: #FFFFFF;
    --bg-off: #F5F5F7;       /* Off-white Apple */
    --bg-dark: #1D1D1F;      /* Dark Apple */
    --glass-bg: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    background-color: var(--bg-white);
    font-size: 0.95rem;
}

/* Tipografia */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Header */
header {
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.9);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 2px;
}

.btn-header {
    background: var(--text-main);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.btn-header:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    background-color: var(--bg-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1516549655169-df83a0774514?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.10; /* Opacidade de 15% conforme solicitado */
    z-index: 0;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.05;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.hero-content h1 span {
    color: var(--accent-rosa);
    display: block;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 32px;
}

.btn-primary {
    background: var(--accent-rosa);
    color: white;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
}

/* Form Container */
.form-container {
    background: white;
    padding: 48px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.form-container h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-align: center;
}

.form-container p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    margin-bottom: 16px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-off);
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-rosa);
    background: white;
}

.btn-submit {
    width: 100%;
    background: var(--text-main);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: #000;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-off);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: 24px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-rosa);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ITP Section */
.itp-section {
    padding: 120px 0;
    background: white;
}

.itp-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.itp-content h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.itp-content h2 span {
    color: var(--gold);
}

.itp-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.itp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-item {
    padding: 24px;
    background: var(--bg-off);
    border-radius: 16px;
}

.stat-item h5 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--gold);
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Professional Section (Isa Thomazini) */
.professional-section {
    padding: 120px 0;
    background: var(--bg-dark);
    color: white;
}

.professional-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.professional-image {
    position: relative;
}

.professional-image img {
    width: 100%;
    border-radius: 24px;
    filter: grayscale(20%);
}

.professional-content h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.professional-content h2 span {
    color: var(--gold);
}

.professional-content p {
    color: #A1A1A6;
    font-size: 1rem;
    margin-bottom: 32px;
}

.professional-list {
    list-style: none;
}

.professional-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.professional-list i {
    color: var(--gold);
}

/* Target Section */
.target-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.target-section h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important; /* Força 3 colunas no desktop */
    grid-template-rows: repeat(2, auto) !important; /* Força 2 linhas */
    gap: 30px;
    margin-top: 60px;
}

.target-card {
    padding: 48px 24px;
    background: var(--bg-off);
    border-radius: 24px;
    transition: all 0.3s;
}

.target-card:hover {
    background: var(--accent-rosa);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(177, 69, 110, 0.2);
}

.target-card:hover i {
    color: white;
}

.target-card i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.target-card span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--bg-off);
}

.cta-box {
    background: var(--bg-dark);
    color: white;
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
}

.cta-box h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.cta-box p {
    color: #A1A1A6;
    font-size: 1.15rem;
    margin-bottom: 40px;
}

/* Footer */
footer {
    padding: 100px 0 40px;
    background: var(--bg-dark);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: block;
}

.footer-brand p {
    color: #A1A1A6;
    max-width: 350px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-grid h4 {
    margin-bottom: 30px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-contact p {
    margin-bottom: 15px;
    color: #A1A1A6;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact p i {
    color: var(--gold);
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #6E6E73;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none; /* Removendo qualquer traço/sublinhado */
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    header { display: none; } /* Remove o navbar no mobile */
    .hero { padding: 80px 0 60px; }
    .hero-grid, .itp-grid, .professional-grid, .features-grid, .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .target-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 por linha no tablet para não ficar muito esticado */
        gap: 20px;
    }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content h1 span { font-size: 3rem; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-cta-group { flex-direction: column; gap: 20px; width: 100%; max-width: 400px; margin: 0 auto; }
    .btn-primary { width: 100%; text-align: center; padding: 18px 20px; font-size: 0.95rem; }
    .hero-trust-badge { justify-content: center; }
    .professional-image { max-width: 400px; margin: 0 auto 40px; }
    .itp-image { order: -1; margin-bottom: 40px; }
    .stat-item { padding: 20px; }
    .stat-item h5 { font-size: 1.4rem; }
    .form-container { padding: 30px 20px; }
}

@media (max-width: 576px) {
    .hero { padding-top: 100px; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content h1 span { font-size: 2.4rem; }
    .hero-content p { font-size: 1.1rem; }
    .itp-content h2, .professional-content h2, .target-section h2, .cta-box h2 { font-size: 2.2rem; }
    .itp-content h2 span, .professional-content h2 span, .target-section .section-header h2 span { font-size: 2.2rem; letter-spacing: -0.5px; }
    .target-section .section-header h2 span { display: inline-block; width: 100%; }
    .itp-stats { grid-template-columns: 1fr; }
    .section-subtitle, .hero-tag { font-size: 0.75rem; }
    .cta-box { padding: 60px 20px; border-radius: 30px; }
    .target-grid { grid-template-columns: 1fr; gap: 15px; }
    .target-card { padding: 30px 20px; min-height: 140px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
    .target-card i { font-size: 2.5rem; margin-bottom: 15px; }
    .target-card span { font-size: 1rem; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
}
