/* ============================================
   STABILE ESTÉTICA - Bumbum Firme para o Verão
   Ultra Modern Landing Page - High Conversion
   ============================================ */

:root {
  --primary: #1a1a1a;
  --secondary: #7B9E89;
  --accent: #E8B4C8;
  --light: #F8F7F5;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --muted: #888888;
  --success: #27AE60;
  
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  letter-spacing: -1.5px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.8px;
}

h3 {
  font-size: 1.3rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  border: none;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--success);
  color: var(--white);
}

.btn-primary:hover {
  background: #229954;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: #6A8B79;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1.3rem 3.5rem;
  font-size: 1.1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f7f5 0%, #f0ebe5 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  right: -5%;
  width: 55%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 4rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-offer {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
  border-left: 5px solid var(--success);
}

.hero-offer-text {
  font-size: 0.9rem;
  color: var(--success);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.hero-offer-value {
  font-size: 3.5rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.hero-offer p {
  margin: 0.5rem 0;
  color: var(--text);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-background {
    width: 50%;
    right: -3%;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .hero-background {
    position: relative;
    width: 100%;
    height: 350px;
    right: 0;
    margin-bottom: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-offer {
    padding: 1.5rem;
  }
  
  .hero-offer-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-offer-value {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
}

/* ============================================
   SECTION TITLE
   ============================================ */

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   WHY NOW SECTION
   ============================================ */

.why-now {
  padding: 6rem 0;
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.why-item:hover {
  border-top-color: var(--secondary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-item h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.why-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============================================
   TREATMENT SECTION
   ============================================ */

.treatment {
  padding: 6rem 0;
  background: var(--white);
}

.treatment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.treatment-text h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.treatment-text p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.treatment-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.treatment-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .treatment-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================
   BEFORE & AFTER SECTION
   ============================================ */

.before-after {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f7f5 0%, #f0ebe5 100%);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.before-after-item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.before-after-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.before-after-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.result-text {
  padding: 1.5rem;
  background: var(--white);
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  padding: 6rem 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 0.8rem;
  border-left: 4px solid var(--secondary);
}

.highlight h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.highlight p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.about-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LOCATION MAP
   ============================================ */

.location-map {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f7f5 0%, #f0ebe5 100%);
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}

.map-wrapper iframe {
  border-radius: 1rem;
}

.map-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.8rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.info-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.info-card a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}

.info-card a:hover {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .map-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-wrapper {
    height: 300px;
  }
  
  .map-info {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DOCTORS GALLERY
   ============================================ */

.doctors-gallery {
  padding: 6rem 0;
  background: var(--white);
}

.doctors-gallery {
  padding: 6rem 0;
  background: var(--white);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.doctor-card {
  background: var(--light);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.doctor-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.doctor-card:hover .doctor-image img {
  transform: scale(1.05);
}

.doctor-info {
  padding: 2rem;
}

.doctor-info h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.doctor-title {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.doctor-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f7f5 0%, #f0ebe5 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-text {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

/* ============================================
   BENEFITS
   ============================================ */

.benefits {
  padding: 6rem 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.benefit-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============================================
   URGENCY SECTION
   ============================================ */

.urgency {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #6A8B79 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.urgency-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.urgency-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.urgency-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  padding: 6rem 0;
  background: var(--light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}

.final-cta h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   COOKIES BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  animation: slideUp 0.3s ease-out;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cookie-text h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons .btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .cookie-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   POLICY PAGES
   ============================================ */

.policy-section {
  padding: 4rem 0;
  background: var(--light);
  min-height: 100vh;
}

.policy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.policy-header h1 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.policy-header p {
  color: var(--muted);
}

.policy-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

.policy-content h2 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--secondary);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-details {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 0.8rem;
  margin: 1.5rem 0;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.policy-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.3rem;
  margin-top: 0.2rem;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--secondary);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .btn {
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
  }
  
  .btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
  }
  
  .why-now,
  .treatment,
  .before-after,
  .doctors-gallery,
  .testimonials,
  .benefits,
  .urgency,
  .faq,
  .final-cta {
    padding: 4rem 0;
  }
  
  .policy-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .why-grid,
  .benefits-grid,
  .before-after-grid,
  .testimonials-grid,
  .faq-grid,
  .doctors-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title h2 {
    font-size: 1.3rem;
  }
  
  .cookie-text p {
    font-size: 0.85rem;
  }
}
