/* --- Base Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --luxury-beige: #F5F0E8;
  --luxury-gold: #DAC292;
  --luxury-earth: #E6DFD3;
  --luxury-neutral: #C8B6A6;
  --luxury-dark: #5A5245;
  --white: #FFFFFF;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --radius: 1rem;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--luxury-dark);
  background-color: var(--luxury-beige);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hidden {
  display: none !important;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

/* --- Section Styles --- */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1rem;
  width: 5rem;
  height: 0.25rem;
  background-color: var(--luxury-gold);
  transform: translateX(-50%);
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* --- Background Colors --- */
.bg-white {
  background-color: var(--white);
}

.bg-luxury-beige {
  background-color: var(--luxury-beige);
}

/* --- Button Styles --- */
.btn-primary, .btn-gold, .btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border: none;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--luxury-gold);
  color: var(--luxury-dark);
}

.btn-gold {
  background-color: var(--luxury-gold);
  color: var(--luxury-dark);
  border: 1px solid rgba(218, 194, 146, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--luxury-dark);
  border: 1px solid var(--luxury-gold);
}

.btn-primary:hover, .btn-gold:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
  background-color: var(--luxury-beige);
}

.full-width {
  width: 100%;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow);
  padding: 0.75rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--luxury-dark);
  text-decoration: none;
}

.desktop-nav {
  display: none;
}

.nav-link {
  color: var(--luxury-dark);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--luxury-gold);
}

.header-btn {
  display: none;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  width: 2rem;
  height: 1.5rem;
  position: relative;
  z-index: 60;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--luxury-dark);
  margin: 0.3rem 0;
  transition: var(--transition);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  display: block;
  font-size: 1.25rem;
  padding: 1rem;
  color: var(--luxury-dark);
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--luxury-gold);
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 40rem;
  color: var(--white);
  padding-top: 280px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem; /* ou o valor que quiser */
  }
  .hero-subtitle {
    font-size: 0.9rem !important;
    margin-top: 20px;
  }

  .hero-profession {
    font-size: 0.7rem !important;
    margin-bottom: -20px !important;
  }

  .hero-cta {
  margin-top: 0.5rem;
  }

  .hero-content {
  margin-top: 200px;
  }

  .btn-gold {
    font-size: 10px; 

  }

  .specialites-image {
    display: none;
  }
  
.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; 
  width: 100% !important;
}
}



.hero-subtitle {
  font-size: 1.75rem;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-profession {
  font-size: 1.25rem;
  color: var(--luxury-gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 2.5rem;
  padding: 0;
}

.hero-cta {
  margin-top: 2.5rem;
}

/* --- About Section --- */
.about-grid {
  display: flex;
}

#read-more-btn {
  display: block;
  margin: 20px auto 0 auto;
}

.about-text {
  margin-bottom: 2rem;
}

.bio-text p {
  margin-bottom: 1rem;
}

/* .about-experience {
  background-color: var(--luxury-beige);
  padding: 2rem;
  border-radius: var(--radius);
}

.experience-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
} */

/* .number-circle {
  width: 3rem;
  height: 3rem;
  background-color: var(--luxury-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
} */

/* .experience-content h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
} */

/* --- Authority Section --- */
/* Authority Section */
      .authority-section {
        padding: 6rem 0;
      }
      
      .section-header {
        text-align: center;
        margin-bottom: 2rem;
      }
      
      .section-header h2 {
        font-size: 2.5rem;
        font-weight: 600;
        color: #6a5142;
        margin-bottom: 1.5rem;
      }
      
      .divider {
        width: 5rem;
        height: 0.25rem;
        background-color: var(--luxury-gold);
        margin: 0 auto;
      }
      
      .credentials-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
      }
      
      @media (min-width: 640px) {
        .credentials-container {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      
      @media (min-width: 1024px) {
        .credentials-container {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      
      .credential-card {
        background-color: rgba(255, 255, 255, 0.9);
        border: 1px solid #e9dfc4;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        border-radius: 0.5rem;
        padding: 2rem;
        text-align: center;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
      }


      .authority-section .credentials-container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 5rem 2rem;
      }
            
      .credential-card:hover {
        transform: translateY(-0.25rem);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
      }
      
      .credential-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(244, 239, 222, 0.3), rgba(244, 239, 222, 0.1));
        opacity: 0;
        transition: opacity 0.5s ease;
      }
      
      .credential-card:hover::before {
        opacity: 1;
      }
      
      .icon-wrapper {
        margin-bottom: 1.5rem;
      }
      
      .icon-circle {
        width: 4rem;
        height: 4rem;
        background-color: #f4efde;
        border: 1px solid #e9dfc4;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        font-size: 1.5rem;
        color: #c6ad7a;
        transition: transform 1.5s ease;
      }
      
      .credential-card:hover .icon-circle {
        animation: float 5s ease-in-out infinite;
      }
      
      @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
      }
      
      .credential-card h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #6a5142;
        margin-bottom: 0.75rem;
      }
      
      .credential-badge {
        display: inline-block;
        padding: 0.25rem 1rem;
        background-color: #f4efde;
        color: #7f624a;
        font-size: 0.875rem;
        font-weight: 500;
        border: 1px solid #e9dfc4;
        margin-bottom: 1rem;
      }
      
      .credential-card p {
        color: #9c7c59;
        font-size: 0.875rem;
        line-height: 1.5;
      }
      
      .decorative-line {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #c6ad7a;
        transform: scaleX(0);
        transition: transform 0.5s ease;
      }
      
      .credential-card:hover .decorative-line {
        transform: scaleX(1);
      }


/* --- Specialties Section --- */
.specialties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}



/* --- Testimonials Section --- */
/* .testimonial-container {
  max-width: 36rem;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 36rem;
  margin: 0 auto;
}

.quote-mark {
  font-size: 3rem;
  color: var(--luxury-gold);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  text-align: right;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--luxury-neutral);
  opacity: 0.3;
  margin: 0 0.5rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--luxury-gold);
  opacity: 1;
}

.testimonial-disclaimer {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 3rem;
  color: var(--luxury-dark);
  opacity: 0.7;
} */

/* Especialidades Section */
.especialidades-section {
  padding: 4rem 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.divider {
  height: 4px;
  width: 6rem;
  background: #DAC292;
  margin: 0 auto;
  border-radius: 9999px;
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; 
  width: 60%;
}

.specialites-image {
  width: 35%;
}
.specialites-image img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  
}

.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.especialidade-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.5s ease-out forwards;
}


@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.especialidade-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: transform 0.3s;
}

.especialidade-card:hover .icon-wrapper {
  transform: scale(1.1);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.card-description {
  color: #666;
  text-align: center;
  line-height: 1.6;
}

/* Responsive Styles */

@media (max-width: 640px) {
  .especialidades-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 768px) {
  .especialidades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .especialidades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* --- FAQ Section --- */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  background-color: var(--luxury-beige);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.accordion-item {
  border-bottom: 1px solid var(--luxury-neutral);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--luxury-dark);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-trigger.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}

.accordion-content.active {
  max-height: 500px;
  padding-bottom: 1rem;
}

/* --- Office Photos Section --- */
.office-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.office-gallery img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.office-gallery img:hover {
  transform: scale(1.05);
  filter: brightness(0.8);
}


/* --- Footer --- */
.footer {
  background-color: var(--white);
  padding: 3rem 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.footer-crp {
  font-size: 0.875rem;
  opacity: 0.7;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  background-color: var(--luxury-gold);
  color: var(--luxury-dark);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.btn-whatsapp:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp .icon {
  display: flex; /* para que o svg dentro também alinhe */
  align-items: center;
}

.icon {
  margin-right: 0.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-text {
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 182, 166, 0.3);
}

.copyright {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* --- WhatsApp Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  padding: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
}


/* --- Animations --- */
.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.animate-fade-in-slow {
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.appear-animation {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.appear-animation.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Media Queries --- */
@media (min-width: 640px) {
  .benefits-grid,
  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .header-btn {
    display: block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  

  .footer-top {
    flex-direction: row;
  }
  
  .footer-info {
    text-align: left;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .authority-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


