* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: var(--dark);
background-color: var(--light);
overflow-x: hidden;
}
h1, h2, h3, h4 {
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.2;
}
.container {
max-width: 1140px;
margin: 0 auto;
padding: 0 20px;
}
section {
padding: 100px 0;
position: relative;
}
.btn {
display: inline-block;
padding: 20px 40px;
background-color: var(--accent);
color: var(--light);
text-decoration: none;
font-weight: 700;
border-radius: 4px;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 14px;
border: none;
cursor: pointer;
box-shadow: 0 4px 15px rgba(205, 127, 50, 0.3);
}
.btn:hover {
background-color: #b36b28;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(205, 127, 50, 0.4);
}
/* HEADER */
header {
padding: 20px 0;
background: rgba(255, 255, 255, 0.95);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 20px rgba(0,0,0,0.05);
backdrop-filter: blur(10px);
}
.header-flex {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 24px;
color: var(--primary);
text-decoration: none;
}
.nav-cta {
font-size: 13px;
font-weight: 700;
color: var(--primary);
text-decoration: none;
border: 2px solid var(--primary);
padding: 10px 25px;
border-radius: 4px;
transition: 0.3s;
text-transform: uppercase;
}
.nav-cta:hover {
background: var(--primary);
color: var(--light);
}
/* HERO */
.hero {
background-color: var(--primary);
color: var(--light);
padding: 200px 0 120px;
overflow: hidden;
}
.hero-grid {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 60px;
align-items: center;
}
.hero h1 {
font-size: 56px;
margin-bottom: 20px;
color: var(--light);
}
.hero .subtitle {
font-size: 18px;
color: var(--secondary);
font-weight: 600;
margin-bottom: 30px;
display: block;
text-transform: uppercase;
letter-spacing: 2px;
}
.hero p {
font-size: 22px;
font-weight: 300;
opacity: 0.9;
border-left: 4px solid var(--accent);
padding-left: 25px;
margin-bottom: 40px;
}
.hero-img-placeholder {
width: 100%;
height: 500px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
/* PROVA SOCIAL */
.proof {
background: var(--light);
text-align: center;
padding: 80px 0;
border-bottom: 1px solid var(--gray);
}
.proof h3 {
font-size: 14px;
text-transform: uppercase;
letter-spacing: 3px;
color: var(--text-muted);
margin-bottom: 50px;
}
.logo-grid {
display: flex;
justify-content: center;
gap: 80px;
align-items: center;
flex-wrap: wrap;
opacity: 0.7;
}
.logo-item {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 28px;
color: var(--primary);
letter-spacing: 2px;
}
/* DOR */
.pain {
background-color: var(--primary);
color: var(--light);
}
.pain h2 {
text-align: center;
font-size: 42px;
margin-bottom: 70px;
}
.pain-grid {
max-width: 900px;
margin: 0 auto;
}
.pain-item {
background: rgba(255,255,255,0.03);
padding: 30px;
border-radius: 8px;
margin-bottom: 20px;
border-left: 4px solid var(--accent);
font-style: italic;
font-size: 18px;
}
.pain-footer {
text-align: center;
margin-top: 50px;
font-size: 20px;
color: var(--secondary);
font-weight: 600;
}
/* PONTE */
.bridge {
text-align: center;
background: var(--light);
}
.bridge h2 { font-size: 42px; margin-bottom: 40px; color: var(--primary); }
.bridge p { max-width: 850px; margin: 0 auto; font-size: 20px; color: var(--text-muted); }
/* BENEFICIOS */
.benefits {
background-color: var(--primary);
color: var(--light);
}
.benefits h2 { text-align: center; margin-bottom: 60px; font-size: 42px; }
.benefits-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}
.benefit-card {
display: flex;
align-items: center;
padding: 30px;
background: rgba(255,255,255,0.05);
border-radius: 8px;
transition: 0.3s;
}
.benefit-card:hover { background: rgba(255,255,255,0.08); }
.benefit-icon {
font-size: 32px;
margin-right: 25px;
color: var(--secondary);
}
.benefit-text { font-weight: 600; font-size: 18px; }
/* PRODUTOS */
.products { background: var(--light); }
.products-header { text-align: center; margin-bottom: 70px; }
.products-header h2 { font-size: 42px; color: var(--primary); margin-bottom: 15px; }
.products-header p { font-size: 20px; color: var(--text-muted); }
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}
.product-card {
background: var(--gray);
padding: 50px 40px;
border-radius: 12px;
transition: all 0.4s ease;
border: 1px solid transparent;
}
.product-card:hover {
background: var(--light);
border-color: var(--secondary);
box-shadow: 0 20px 40px rgba(0,0,0,0.05);
transform: translateY(-10px);
}
.product-card h4 { color: var(--primary); margin-bottom: 20px; font-size: 24px; }
.product-card p { font-size: 16px; color: var(--text-muted); line-height: 1.8; }
/* QUALIFICAÇÃO */
.qualify { background: var(--dark); color: var(--light); }
.qualify h2 { text-align: center; margin-bottom: 60px; font-size: 42px; color: var(--secondary); }
.qualify-list {
max-width: 800px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}
.qualify-item {
display: flex;
align-items: center;
font-size: 18px;
}
.qualify-item::before {
content: "✦";
color: var(--accent);
margin-right: 20px;
font-size: 24px;
}
/* VALUE STACK */
.stack { background: var(--light); text-align: center; }
.stack h2 { font-size: 42px; color: var(--primary); margin-bottom: 60px; }
.stack-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}
.stack-item {
padding: 30px;
border-bottom: 3px solid var(--gray);
}
.stack-item h5 { font-size: 18px; color: var(--dark); margin-bottom: 10px; }
/* OFERTA */
.offer { background: var(--primary); color: var(--light); text-align: center; }
.offer h2 { font-size: 48px; margin-bottom: 20px; }
.offer p { font-size: 22px; opacity: 0.9; margin-bottom: 50px; }
/* COMO FUNCIONA */
.steps { background: var(--light); }
.steps h2 { text-align: center; margin-bottom: 70px; font-size: 42px; color: var(--primary); }
.steps-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
}
.step-card { text-align: center; }
.step-num {
width: 60px;
height: 60px;
background: var(--accent);
color: var(--light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
margin: 0 auto 30px;
}
.step-card h4 { margin-bottom: 20px; font-size: 22px; }
/* DUAS ESCOLHAS */
.choices { background: var(--dark); color: var(--light); text-align: center; }
.choices p { font-size: 24px; max-width: 800px; margin: 0 auto 50px; font-family: 'Playfair Display', serif; }
/* AUTORIDADE */
.authority { background: var(--light); }
.auth-flex {
display: flex;
align-items: center;
gap: 60px;
max-width: 900px;
margin: 0 auto;
}
.auth-img {
width: 300px;
height: 300px;
border-radius: 50%;
background: var(--gray);
flex-shrink: 0;
border: 8px solid var(--gray);
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.auth-content h2 { font-size: 36px; color: var(--primary); margin-bottom: 10px; }
.auth-content .tag { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 20px; }
.auth-content p { font-size: 20px; font-style: italic; color: var(--text-muted); }
/* FAQ */
.faq { background: var(--light); border-top: 1px solid var(--gray); }
.faq h2 { text-align: center; margin-bottom: 60px; font-size: 42px; color: var(--primary); }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 40px; }
.faq-item h4 { font-size: 20px; color: var(--dark); margin-bottom: 15px; }
.faq-item p { color: var(--text-muted); }
/* FOOTER */
footer { background: var(--dark); color: var(--light); padding: 80px 0 40px; }
.footer-grid {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 60px;
flex-wrap: wrap;
gap: 40px;
}
.footer-brand h3 { font-size: 28px; margin-bottom: 20px; color: var(--light); }
.footer-brand p { opacity: 0.7; max-width: 400px; }
.footer-contact p { margin-bottom: 10px; opacity: 0.8; }
.footer-bottom {
padding-top: 40px;
border-top: 1px solid rgba(255,255,255,0.1);
text-align: center;
font-size: 14px;
opacity: 0.5;
}
/* ANIMATIONS */
[data-fade] {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.visible {
opacity: 1;
transform: translateY(0);
}
/* RESPONSIVIDADE */
@media (max-width: 992px) {
.hero-grid, .auth-flex, .steps-grid { grid-template-columns: 1fr; text-align: center; }
.hero h1 { font-size: 42px; }
.hero-img-placeholder { display: none; }
.auth-flex { flex-direction: column; }
.benefits-grid { grid-template-columns: 1fr; }
.auth-img { margin: 0 auto; }
.header-flex { flex-direction: column; gap: 20px; }
}
@media (max-width: 600px) {
section { padding: 60px 0; }
.hero h1 { font-size: 32px; }
.offer h2 { font-size: 32px; }
}