/* ==========================================================================
CSS Variables & Resets
========================================================================== */
:root {
--bg-primary: #FAF7F2;      /* Cream / Light Beige */
--bg-secondary: #EBE5DB;    /* Slightly darker beige for contrast sections */
--text-main: #3B3A36;       /* Dark Olive / Almost Black */
--text-muted: #6B6861;
--accent: #A89F91;          /* Soft taupe/olive */
--btn-bg: #4A4843;          /* Dark Olive button */
--btn-text: #FDFCFB;
--whatsapp: #25D366;
--border-color: #DED8CC;
--font-heading: 'Playfair Display', serif;
--font-body: 'Inter', sans-serif;
--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: var(--font-body);
color: var(--text-main);
background-color: var(--bg-primary);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 600;
line-height: 1.2;
color: var(--text-main);
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
img {
max-width: 100%;
height: auto;
display: block;
}
/* ==========================================================================
Utility Classes
========================================================================== */
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
.max-w-800 {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.text-center { text-align: center; }
.text-justify { text-align: justify; }
.text-muted { color: var(--text-muted); }
.text-red { color: #d9534f; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }
.section-padding { padding: 6rem 0; }
.bg-alt { background-color: var(--bg-secondary); }
.bg-dark {
background-color: var(--text-main);
color: var(--bg-primary);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark p {
color: var(--bg-primary);
}
.grid-2 {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
}
@media (min-width: 768px) {
.grid-2 { grid-template-columns: 1fr 1fr; }
}
.align-center { align-items: center; }
/* ==========================================================================
Buttons & Badges
========================================================================== */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 1rem 2rem;
font-family: var(--font-body);
font-weight: 600;
font-size: 1rem;
border-radius: 4px;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
border: none;
}
.btn-primary {
background-color: var(--btn-bg);
color: var(--btn-text);
box-shadow: 0 4px 15px rgba(74, 72, 67, 0.2);
}
.btn-primary:hover {
background-color: #33312c;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(74, 72, 67, 0.3);
}
.badge {
display: inline-block;
padding: 0.5rem 1rem;
background-color: transparent;
border: 1px solid var(--accent);
border-radius: 30px;
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 1.5rem;
color: var(--text-muted);
}
/* ==========================================================================
Navbar & Logo
========================================================================== */
.navbar {
position: absolute;
top: 35px; /* Below marquee */
left: 0;
width: 100%;
z-index: 10;
padding: 1rem 0;
}
.navbar .container {
display: flex;
justify-content: center;
}
.logo-img {
height: 60px;
object-fit: contain;
}
@media (min-width: 992px) {
.navbar .container {
justify-content: flex-start;
}
.logo-img {
height: 80px;
}
}
/* ==========================================================================
Marquee (Letreiro)
========================================================================== */
.top-marquee {
background-color: var(--bg-secondary);
border-bottom: 1px solid var(--border-color);
padding: 0.5rem 0;
overflow: hidden;
white-space: nowrap;
position: relative;
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 2px;
color: var(--text-muted);
}
.marquee-content {
display: inline-block;
animation: marquee 30s linear infinite;
}
.marquee-content span {
padding-right: 2rem;
}
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
/* ==========================================================================
Hero Section
========================================================================== */
.hero {
position: relative;
overflow: hidden;
padding: 6rem 0 8rem 0; /* Extra bottom padding for the tapes */
}
.hero-bg-watermark {
position: absolute;
top: -10%;
right: -10%;
width: 60%;
height: 120%;
background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=800&q=80');
background-size: cover;
background-position: center;
opacity: 0.05;
z-index: 0;
pointer-events: none;
mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
-webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.hero-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 3rem;
position: relative;
z-index: 1;
}
.hero-content {
text-align: center;
max-width: 700px;
}
.hero-title {
font-size: 2.5rem;
margin-bottom: 1.5rem;
}
.hero-subtitle {
font-size: 1.1rem;
color: var(--text-muted);
margin-bottom: 2rem;
}
.hero-image {
width: 100%;
display: flex;
justify-content: center;
position: relative;
z-index: 2; /* To sit above tapes if needed, or behind tapes */
}
.hero-image img {
border-radius: 12px 12px 0 0;
max-height: 65vh;
object-fit: cover;
mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}
@media (min-width: 992px) {
.hero-container {
flex-direction: row;
text-align: left;
}
.hero-content {
text-align: left;
flex: 1;
padding-bottom: 4rem;
}
.hero-image {
flex: 1;
justify-content: flex-end;
}
.hero-title {
font-size: 3.5rem;
}
}
/* Hero Crossing Marquee Tapes */
.marquee-tapes-container {
position: absolute;
bottom: 2rem;
left: -10%;
width: 120%;
height: 100px;
z-index: 3; /* Tapes sit above background, intersecting image */
overflow: hidden;
}
.marquee-tape {
position: absolute;
width: 100%;
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
padding: 0.75rem 0;
white-space: nowrap;
border-top: 1px solid rgba(168, 159, 145, 0.2);
border-bottom: 1px solid rgba(168, 159, 145, 0.2);
color: var(--text-muted);
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 2px;
box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.tape-1 {
transform: rotate(-3deg);
bottom: 10px;
}
.tape-2 {
transform: rotate(3deg);
bottom: 25px;
}
.tape-content {
display: inline-block;
}
.tape-left {
animation: marquee-left 40s linear infinite;
}
.tape-right {
animation: marquee-right 40s linear infinite;
}
.tape-content span {
padding-right: 3rem;
}
@keyframes marquee-left {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
0% { transform: translateX(-50%); }
100% { transform: translateX(0); }
}
/* ==========================================================================
Conexão Emocional
========================================================================== */
.section-title {
font-size: 2rem;
margin-bottom: 1rem;
}
.conexao-content {
margin-top: 3rem;
display: flex;
flex-direction: column;
gap: 3rem;
}
.pain-images {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.pain-img-wrap img {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 8px;
filter: grayscale(80%);
transition: var(--transition);
}
.pain-img-wrap:hover img {
filter: grayscale(0%);
}
.pain-text {
font-size: 1.1rem;
}
.pain-list {
list-style: none;
margin: 2rem 0;
}
.pain-list li {
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--border-color);
}
.quote-box {
background-color: #fff;
padding: 2rem;
border-left: 4px solid var(--accent);
border-radius: 0 8px 8px 0;
font-style: italic;
box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
@media (min-width: 992px) {
.conexao-content {
flex-direction: row;
}
.pain-images {
flex: 1;
grid-template-columns: repeat(4, 1fr);
}
.pain-img-wrap img {
height: 500px;
}
.pain-text {
flex: 1;
}
}
/* ==========================================================================
Benefícios & Planos
========================================================================== */
.benefits-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
margin-top: 3rem;
}
@media (min-width: 768px) {
.benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
.benefit-card, .plan-card {
background: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 5px 20px rgba(0,0,0,0.02);
border: 1px solid var(--border-color);
transition: var(--transition);
}
.benefit-card:hover, .plan-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.benefit-icon {
font-size: 2rem;
color: var(--accent);
margin-bottom: 1rem;
}
.plans-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}
@media (min-width: 992px) {
.plans-grid { grid-template-columns: repeat(3, 1fr); }
}
.plan-title {
font-size: 1.25rem;
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--border-color);
}
/* ==========================================================================
Features
========================================================================== */
.features-list {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.feature-item {
display: flex;
gap: 1rem;
align-items: flex-start;
}
.feature-item i {
font-size: 1.5rem;
color: var(--accent);
margin-top: 0.25rem;
}
/* ==========================================================================
Quem Sou
========================================================================== */
.quem-image img {
border-radius: 8px;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.doc-name {
font-size: 2.5rem;
color: var(--accent);
margin: 1rem 0 0.5rem;
}
.doc-role {
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--text-muted);
}
/* ==========================================================================
Testimonials (WhatsApp Cards)
========================================================================== */
.depoimentos .section-title {
margin-bottom: 3rem;
}
.carousel-container {
position: relative;
display: flex;
align-items: center;
width: 100%;
}
.carousel-btn {
background: #fff;
border: 1px solid var(--border-color);
width: 45px;
height: 45px;
border-radius: 50%;
display: none; /* Hidden on mobile by default */
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
z-index: 2;
transition: var(--transition);
color: var(--accent);
flex-shrink: 0;
}
.carousel-btn:hover {
background: var(--bg-secondary);
transform: scale(1.05);
}
@media (min-width: 768px) {
.carousel-btn {
display: flex; /* Show on desktop */
}
.prev-btn { margin-right: -20px; }
.next-btn { margin-left: -20px; }
}
.testimonials-wrapper {
overflow: hidden;
padding: 1rem 0;
flex: 1;
}
.testimonials-scroll {
display: flex;
gap: 1.5rem;
padding: 1rem 5vw;
overflow-x: auto;
scrollbar-width: none; /* Firefox */
}
.testimonials-scroll::-webkit-scrollbar {
display: none; /* Chrome */
}
.testimonial-card {
flex: 0 0 85%;
max-width: 320px;
background: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png') #E5DDD5;
background-size: cover;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
display: flex;
flex-direction: column;
}
.testimonial-card.image-card {
background: none;
box-shadow: none;
padding: 0;
justify-content: center;
align-items: center;
}
.testimonial-card.image-card img {
max-width: 100%;
max-height: 380px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
object-fit: contain;
}
.whatsapp-body {
padding: 1rem;
display: flex;
flex-direction: column;
height: 100%;
}
.whatsapp-bubble {
background: #FFFFFF;
padding: 1rem 1rem 1.5rem 1rem;
border-radius: 0 8px 8px 8px;
font-size: 0.95rem;
color: #303030;
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
position: relative;
flex-grow: 1;
}
.whatsapp-bubble p {
margin-bottom: 0.5rem;
}
.whatsapp-bubble .time {
position: absolute;
bottom: 5px;
right: 10px;
font-size: 0.75rem;
color: #999;
}
.heart-icon {
margin-top: 0.5rem;
font-size: 1rem;
background: #fff;
display: inline-flex;
padding: 0.3rem;
border-radius: 50%;
align-self: flex-start;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
/* ==========================================================================
FAQ
========================================================================== */
.accordion-item {
border-bottom: 1px solid var(--border-color);
margin-bottom: 1rem;
}
.accordion-header {
width: 100%;
text-align: left;
background: none;
border: none;
padding: 1.5rem 0;
font-size: 1.1rem;
font-weight: 600;
font-family: var(--font-heading);
color: var(--text-main);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: var(--transition);
}
.accordion-header:hover {
color: var(--accent);
}
.accordion-header i {
transition: transform 0.3s ease;
}
.accordion-header.active i {
transform: rotate(180deg);
}
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}
.accordion-content p {
padding-bottom: 1.5rem;
color: var(--text-muted);
}
/* ==========================================================================
Footer
========================================================================== */
.footer-quote {
font-size: 2rem;
font-family: var(--font-heading);
font-style: italic;
color: var(--bg-primary);
}
.footer-bottom {
background: #1a1a18;
padding: 1.5rem 0;
font-size: 0.85rem;
color: #888;
}
/* ==========================================================================
Floating WhatsApp
========================================================================== */
.floating-whatsapp {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 60px;
height: 60px;
background-color: var(--whatsapp);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
z-index: 1000;
transition: var(--transition);
}
.floating-whatsapp:hover {
transform: scale(1.1);
background-color: #20bd5a;
}
/* ==========================================================================
Animations
========================================================================== */
.fade-up {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
opacity: 1;
transform: translateY(0);
}