@charset "UTF-8";
/* ==========================================================================
   VARIÁVEIS E MIXINS
   ========================================================================== */
/* ==========================================================================
   ESTILOS BASE
   ========================================================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: #445;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #285484;
  margin-bottom: 20px;
  font-weight: 300;
}

h2 {
  line-height: 1.2;
}

p {
  margin-bottom: 15px;
  font-weight: 300;
}

a {
  color: #285484;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #004085;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ==========================================================================
   LAYOUT PRINCIPAL
   ========================================================================== */
main {
  padding-top: 90px;
}

section {
  text-align: center;
}
section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  bottom: -20px;
  left: 0;
}
@media (max-width: 768px) {
  section h2 {
    font-size: 2rem;
  }
}
section h3 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #004085;
}
@media (max-width: 768px) {
  section h3 {
    font-size: 1.5rem;
  }
}
section ul:not(.nav-links) {
  margin: 20px 0;
  text-align: left;
}
section ul:not(.nav-links) li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* ==========================================================================
   LAYOUT E CONTAINERS
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.content-wrapper {
  text-align: left;
}
.content-wrapper p,
.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 20px;
}

.subsection {
  margin-bottom: 40px;
}
.subsection h3,
.subsection h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 15px;
}
.form-group input,
.form-group textarea {
  width: 100%;
}

.top-border {
  width: 100%;
  height: 5px;
  background-color: #d4af37;
  background: linear-gradient(301deg, rgb(212, 175, 55) 12%, rgb(255, 255, 238) 37%, rgb(212, 175, 55) 65%);
}
.top-border.blue {
  background: linear-gradient(301deg, rgb(40, 84, 132) 12%, rgb(255, 255, 255) 37%, rgb(40, 84, 132) 65%);
}

/* ==========================================================================
   HEADER E NAVEGAÇÃO
   ========================================================================== */
header {
  color: #445;
  padding: 30px 0 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  header nav {
    flex-direction: column;
  }
}
header nav .container {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 768px) {
  header nav .container .logo {
    margin: 0 auto;
    text-align: center;
  }
}
header nav .container .nav-links {
  display: flex;
}
@media (max-width: 768px) {
  header nav .container .nav-links {
    flex-direction: column;
    margin-top: 10px;
    display: none;
  }
  header nav .container .nav-links.active {
    display: flex;
  }
}
header nav .container .nav-links li {
  margin-left: 30px;
}
@media (max-width: 768px) {
  header nav .container .nav-links li {
    margin: 5px 0;
  }
}
header nav .container .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  padding: 5px 0;
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
  text-shadow: 1px 1px 40px #013;
}
header nav .container .nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #d4af37;
  transition: width 0.3s ease;
}
header nav .container .nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
  }
  .menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #285484;
    transition: all 0.3s ease;
  }
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ==========================================================================
   HERO SECTION - MELHORADO
   ========================================================================== */
.hero-section {
  background: linear-gradient(90deg, rgba(0, 10, 20, 0.9) 0%, rgba(255, 255, 255, 0) 70%), url("../images/hero-maeda.webp") no-repeat center center/cover;
  color: #fff;
  width: 100%;
  max-width: none;
  position: relative;
  display: flex;
  align-items: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 0;
  min-height: 100vh;
  padding: 120px 0 80px;
}
@media (max-width: 768px) {
  .hero-section {
    background: linear-gradient(180deg, rgba(0, 10, 20, 0.9) 0%, rgba(0, 10, 20, 0) 25%, rgba(0, 10, 20, 0.7) 70%), url("../images/hero-maeda.webp") no-repeat 70% center/cover;
    text-align: center;
    padding: 100px 0 30px;
    align-items: end;
  }
}
.hero-section .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.hero-section .hero-content {
  width: 50%;
  max-width: 540px;
  text-align: left;
}
@media (max-width: 768px) {
  .hero-section .hero-content {
    width: 100%;
    text-align: center;
  }
}
.hero-section .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
}
.hero-section .hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .hero-section .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.4;
  }
}
.hero-section .hero-btn {
  background: linear-gradient(301deg, rgb(181, 146, 29) 0%, rgb(212, 175, 55) 100%);
  color: #fff;
  padding: 18px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.hero-section .hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}
@media (max-width: 768px) {
  .hero-section .hero-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   SEÇÕES DE CONTEÚDO
   ========================================================================== */
.about-section,
.rhinoplasty-section,
.facialsurgery-section,
.location-section,
.contact-section {
  background-color: #fff;
  text-align: left;
}
.about-section:nth-child(even),
.rhinoplasty-section:nth-child(even),
.facialsurgery-section:nth-child(even),
.location-section:nth-child(even),
.contact-section:nth-child(even) {
  background-color: #f4f4f4;
}

/* ==========================================================================
   SEÇÃO ABOUT - LAYOUT SIMPLES DE DUAS COLUNAS
   ========================================================================== */
.about-section {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
}
.about-section .about-full-width {
  background-color: linear-gradient(135deg, rgb(243.5864197531, 233.7654320988, 201.9135802469) 0%, rgb(230.049382716, 208.5802469136, 138.950617284) 100%);
  width: 100%;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .about-section .about-full-width {
    padding: 0;
  }
}
.about-section .about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .about-section .about-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .about-section .about-wrapper {
    gap: 40px;
  }
}
.about-section .about-content {
  flex: 1;
}
.about-section .about-content h2 {
  color: #285484;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-section .about-content h2 {
    font-size: 1.8rem;
    text-align: center;
  }
}
.about-section .about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-section .about-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .about-section .about-content p {
    text-align: center;
  }
}
.about-section .about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .about-section .about-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.about-section .about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.about-section .about-image img:hover {
  transform: scale(1.02);
}

/* Ajuste de responsividade */
@media (max-width: 768px) {
  .about-section .about-wrapper {
    flex-direction: column-reverse;
  }
}
@media (max-width: 1024px) {
  .about-section .about-wrapper {
    flex-direction: column;
  }
  .about-section .about-image {
    max-width: 80%;
    margin: 0 auto;
  }
}
/* ==========================================================================
   SEÇÃO RHINOPLASTY - ESTILOS MODIFICADOS
   ========================================================================== */
.rhinoplasty-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a365d 0%, #2d5a87 50%, #285484 100%);
}
@media (max-width: 768px) {
  .rhinoplasty-section {
    padding: 50px 15px;
  }
}
.rhinoplasty-section .rhinoplasty-full-width {
  width: 100%;
}
.rhinoplasty-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #fff;
  position: relative;
  display: block;
}
.rhinoplasty-section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .rhinoplasty-section h2 {
    font-size: 2rem;
  }
}
.rhinoplasty-section .intro-text {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.rhinoplasty-section .intro-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .rhinoplasty-section .intro-text p {
    font-size: 1.1rem;
  }
}
.rhinoplasty-section .rhinoplasty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .rhinoplasty-section .rhinoplasty-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .rhinoplasty-section .rhinoplasty-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.rhinoplasty-section .rhinoplasty-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.rhinoplasty-section .rhinoplasty-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(301deg, rgb(212, 175, 55) 12%, rgb(255, 255, 238) 37%, rgb(212, 175, 55) 65%);
  border-radius: 20px 20px 0 0;
}
.rhinoplasty-section .rhinoplasty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .rhinoplasty-section .rhinoplasty-card {
    padding: 25px 20px;
  }
}
.rhinoplasty-section .rhinoplasty-card h3 {
  color: #285484;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .rhinoplasty-section .rhinoplasty-card h3 {
    font-size: 1.2rem;
  }
}
.rhinoplasty-section .rhinoplasty-card p {
  color: #445;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .rhinoplasty-section .rhinoplasty-card p {
    font-size: 0.95rem;
  }
}
.rhinoplasty-section .rhinoplasty-card p strong {
  color: #285484;
  font-weight: 500;
}
.rhinoplasty-section .rhinoplasty-card ul {
  text-align: left;
  margin: 15px 0;
}
.rhinoplasty-section .rhinoplasty-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.rhinoplasty-section .rhinoplasty-card ul li strong {
  color: #285484;
  font-weight: 500;
}
.rhinoplasty-section .faq-section {
  margin-top: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.rhinoplasty-section .faq-section h3 {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .rhinoplasty-section .faq-section h3 {
    font-size: 1.6rem;
  }
}
.rhinoplasty-section .faq-section .faq-accordion {
  text-align: left;
}
.rhinoplasty-section .faq-section .faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.rhinoplasty-section .faq-section .faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 25px;
}
.rhinoplasty-section .faq-section .faq-item.active .accordion-arrow {
  transform: rotate(180deg);
}
.rhinoplasty-section .faq-section .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #285484;
  transition: all 0.3s ease;
}
.rhinoplasty-section .faq-section .faq-question:hover {
  background-color: rgba(40, 84, 132, 0.05);
}
.rhinoplasty-section .faq-section .faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #d4af37;
}
.rhinoplasty-section .faq-section .faq-question span {
  flex-grow: 1;
}
.rhinoplasty-section .faq-section .faq-question .accordion-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
.rhinoplasty-section .faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: all 0.3s ease;
}
.rhinoplasty-section .faq-section .faq-answer p {
  margin: 0;
  color: #445;
  line-height: 1.6;
}

/* Ajuste de responsividade */
@media (max-width: 768px) {
  .rhinoplasty-section .rhinoplasty-grid {
    grid-template-columns: 1fr;
  }
  .rhinoplasty-section .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .rhinoplasty-section .rhinoplasty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ==========================================================================
   SEÇÃO FACIALSURGERY - ESTILOS MODIFICADOS
   ========================================================================== */
.facialsurgery-section {
  padding: 80px 20px;
  background-color: #f4f4f4;
}
@media (max-width: 768px) {
  .facialsurgery-section {
    padding: 50px 15px;
  }
}
.facialsurgery-section .facialsurgery-full-width {
  width: 100%;
}
.facialsurgery-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #285484;
  position: relative;
  display: block;
}
.facialsurgery-section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .facialsurgery-section h2 {
    font-size: 2rem;
  }
}
.facialsurgery-section .intro-text {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.facialsurgery-section .intro-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #445;
}
@media (max-width: 768px) {
  .facialsurgery-section .intro-text p {
    font-size: 1.1rem;
  }
}
.facialsurgery-section .facialsurgery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .facialsurgery-section .facialsurgery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .facialsurgery-section .facialsurgery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.facialsurgery-section .facialsurgery-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.facialsurgery-section .facialsurgery-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(301deg, rgb(212, 175, 55) 12%, rgb(255, 255, 238) 37%, rgb(212, 175, 55) 65%);
  border-radius: 20px 20px 0 0;
}
.facialsurgery-section .facialsurgery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .facialsurgery-section .facialsurgery-card {
    padding: 25px 20px;
  }
}
.facialsurgery-section .facialsurgery-card h3 {
  color: #285484;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .facialsurgery-section .facialsurgery-card h3 {
    font-size: 1.2rem;
  }
}
.facialsurgery-section .facialsurgery-card p {
  color: #445;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .facialsurgery-section .facialsurgery-card p {
    font-size: 0.95rem;
  }
}
.facialsurgery-section .facialsurgery-card p strong {
  color: #285484;
  font-weight: 500;
}
.facialsurgery-section .facialsurgery-card ul {
  text-align: left;
  margin: 15px 0;
}
.facialsurgery-section .facialsurgery-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.facialsurgery-section .facialsurgery-card ul li strong {
  color: #285484;
  font-weight: 500;
}
.facialsurgery-section .faq-section {
  margin-top: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.facialsurgery-section .faq-section h3 {
  text-align: center;
  font-size: 2rem;
  color: #285484;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .facialsurgery-section .faq-section h3 {
    font-size: 1.6rem;
  }
}
.facialsurgery-section .faq-section .faq-accordion {
  text-align: left;
}
.facialsurgery-section .faq-section .faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.facialsurgery-section .faq-section .faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 25px;
}
.facialsurgery-section .faq-section .faq-item.active .accordion-arrow {
  transform: rotate(180deg);
}
.facialsurgery-section .faq-section .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #285484;
  transition: all 0.3s ease;
}
.facialsurgery-section .faq-section .faq-question:hover {
  background-color: rgba(40, 84, 132, 0.05);
}
.facialsurgery-section .faq-section .faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #d4af37;
}
.facialsurgery-section .faq-section .faq-question span {
  flex-grow: 1;
}
.facialsurgery-section .faq-section .faq-question .accordion-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
.facialsurgery-section .faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: all 0.3s ease;
}
.facialsurgery-section .faq-section .faq-answer p {
  margin: 0;
  color: #445;
  line-height: 1.6;
}

/* ==========================================================================
   CÍRCULOS COM IMAGENS PARA OS CARDS
   ========================================================================== */
.rhinoplasty-card,
.facialsurgery-card {
  position: relative;
  padding-top: 70px;
  margin-top: 40px;
}
.rhinoplasty-card .card-image-circle,
.facialsurgery-card .card-image-circle {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  border: 4px solid #d4af37;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: all 0.3s ease;
}
.rhinoplasty-card .card-image-circle img,
.facialsurgery-card .card-image-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rhinoplasty-card .card-image-circle:hover,
.facialsurgery-card .card-image-circle:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.rhinoplasty-card h3,
.facialsurgery-card h3 {
  margin-top: 15px;
}

@media (max-width: 768px) {
  .rhinoplasty-card,
  .facialsurgery-card {
    padding-top: 60px;
    margin-top: 30px;
  }
  .rhinoplasty-card .card-image-circle,
  .facialsurgery-card .card-image-circle {
    width: 70px;
    height: 70px;
    top: -35px;
  }
}
/* ==========================================================================
   SEÇÃO DE AGENDAMENTO DE CONSULTA
   ========================================================================== */
.appointment-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a365d 0%, #2d5a87 50%, #285484 100%);
  color: #fff;
  text-align: center;
}
.appointment-section h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.appointment-section h2::after {
  background-color: #d4af37;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .appointment-section h2 {
    font-size: 2rem;
  }
}
.appointment-section .section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.9;
  color: #fff;
}

.appointment-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .appointment-wrapper {
    flex-direction: column;
  }
}

.appointment-options {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .appointment-options {
    grid-template-columns: 1fr;
  }
}

.appointment-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}
.appointment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.appointment-card .option-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #285484 0%, rgb(61, 112, 169) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.appointment-card .option-icon i {
  width: 40px;
  height: 40px;
  color: #fff;
}
.appointment-card h3 {
  color: #285484;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.appointment-card p {
  margin-bottom: 25px;
  color: rgb(113.3333333333, 113.3333333333, 141.6666666667);
}

.appointment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #285484;
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.appointment-btn:hover {
  background: rgb(28.1395348837, 59.0930232558, 92.8604651163);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #d4af37;
}
.appointment-btn i {
  width: 20px;
  height: 20px;
}

.contact-info-sidebar {
  flex: 1;
}
@media (max-width: 1024px) {
  .contact-info-sidebar {
    margin-top: 40px;
  }
}

.info-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  color: #445;
  text-align: left;
}
.info-card h3 {
  color: #285484;
  font-size: 1.5rem;
  margin-bottom: 25px;
  margin-top: 0;
  text-align: center;
  position: relative;
}
.info-card h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: #d4af37;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: center;
}
.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: #d4af37;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details {
  flex: 1;
}
.contact-details .label {
  font-size: 0.85rem;
  color: rgb(113.3333333333, 113.3333333333, 141.6666666667);
  margin-bottom: 5px;
}
.contact-details a,
.contact-details p {
  color: #285484;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
}
.contact-details a:hover,
.contact-details p:hover {
  color: rgb(28.1395348837, 59.0930232558, 92.8604651163);
}

/* ==========================================================================
   SEÇÃO DE CONTATO - COM ÍCONES
   ========================================================================== */
.contact-section {
  background-color: #fff;
  text-align: left;
}
.contact-section .contact-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .contact-section .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.contact-section .contact-form-container,
.contact-section .contact-info-container {
  flex: 1;
}
.contact-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-section .contact-form input[type=text],
.contact-section .contact-form input[type=email],
.contact-section .contact-form input[type=tel],
.contact-section .contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
}
.contact-section .contact-form input[type=text]:focus,
.contact-section .contact-form input[type=email]:focus,
.contact-section .contact-form input[type=tel]:focus,
.contact-section .contact-form textarea:focus {
  outline: none;
  border-color: #285484;
}
.contact-section .contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-section .contact-form button[type=submit] {
  background-color: #285484;
  color: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-section .contact-form button[type=submit]:hover {
  background-color: #004085;
}
.contact-section .contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-section .contact-info .info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-section .contact-info .info-item .icon {
  color: #d4af37;
  margin-right: 15px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .contact-section .contact-info .info-item .icon {
    width: 20px;
    height: 20px;
  }
}
.contact-section .contact-info .info-item .info-content {
  flex: 1;
}
.contact-section .contact-info .info-item .info-content p,
.contact-section .contact-info .info-item .info-content ul {
  margin-bottom: 0;
}
.contact-section .contact-info .info-item .info-content ul {
  margin-top: 5px;
}
.contact-section .contact-info .info-item .info-content ul li {
  margin-bottom: 5px;
  font-size: 1rem;
}
.contact-section .contact-info .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-section .contact-info .social-links a {
  display: flex;
  align-items: center;
  color: #285484;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-section .contact-info .social-links a i {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}
.contact-section .contact-info .social-links a:hover {
  color: #004085;
}
.contact-section .contact-info .social-links a:hover i {
  color: #004085;
}

/* Ajuste de responsividade para a seção de contato */
@media (max-width: 768px) {
  .contact-section .contact-wrapper {
    flex-direction: column;
  }
  .contact-section .contact-form-container,
  .contact-section .contact-info-container {
    width: 100%;
  }
  .contact-section .contact-info .info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
/* Ajuste para tablets */
@media (max-width: 1024px) {
  .contact-section .contact-wrapper {
    flex-direction: column;
  }
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
/* ==========================================================================
   VARIÁVEIS E MIXINS
   ========================================================================== */
/* ==========================================================================
   ESTILOS BASE
   ========================================================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: #445;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #285484;
  margin-bottom: 20px;
  font-weight: 300;
}

h2 {
  line-height: 1.2;
}

p {
  margin-bottom: 15px;
  font-weight: 300;
}

a {
  color: #285484;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #004085;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ==========================================================================
   LAYOUT PRINCIPAL
   ========================================================================== */
main {
  padding-top: 90px;
}

section {
  text-align: center;
}
section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  bottom: -20px;
  left: 0;
}
@media (max-width: 768px) {
  section h2 {
    font-size: 2rem;
  }
}
section h3 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #004085;
}
@media (max-width: 768px) {
  section h3 {
    font-size: 1.5rem;
  }
}
section ul:not(.nav-links) {
  margin: 20px 0;
  text-align: left;
}
section ul:not(.nav-links) li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* ==========================================================================
   LAYOUT E CONTAINERS
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.content-wrapper {
  text-align: left;
}
.content-wrapper p,
.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 20px;
}

.subsection {
  margin-bottom: 40px;
}
.subsection h3,
.subsection h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 15px;
}
.form-group input,
.form-group textarea {
  width: 100%;
}

.top-border {
  width: 100%;
  height: 5px;
  background-color: #d4af37;
  background: linear-gradient(301deg, rgb(212, 175, 55) 12%, rgb(255, 255, 238) 37%, rgb(212, 175, 55) 65%);
}
.top-border.blue {
  background: linear-gradient(301deg, rgb(40, 84, 132) 12%, rgb(255, 255, 255) 37%, rgb(40, 84, 132) 65%);
}

/* ==========================================================================
   HEADER COM TRANSIÇÃO
   ========================================================================== */
.header-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0 0;
  z-index: 1000;
  transition: all 0.4s ease;
}
.header-absolute nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header-absolute nav .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.header-absolute .logo img {
  height: 151px;
  width: auto;
}
@media (max-width: 768px) {
  .header-absolute .logo img {
    height: 95px;
  }
}
.header-absolute .nav-links {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .header-absolute .nav-links {
    display: none;
    position: fixed;
    top: 151px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 151px);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  .header-absolute .nav-links.active {
    left: 0;
  }
}
.header-absolute .nav-links li {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .header-absolute .nav-links li {
    margin: 15px 0;
  }
}
.header-absolute .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  font-size: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.header-absolute .nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #d4af37;
  transition: width 0.3s ease;
}
.header-absolute .nav-links a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .header-absolute .nav-links a {
    color: #285484;
    font-size: 1.2rem;
    padding: 10px 0;
    text-shadow: none;
  }
}

.header-fixed {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1001;
  transition: top 0.4s ease;
}
@media (max-width: 768px) {
  .header-fixed {
    display: none;
  }
}
.header-fixed nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-fixed nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-fixed .logo {
  height: 50px;
  transition: all 0.4s ease;
}
.header-fixed .logo img {
  height: 100%;
  width: auto;
}
@media (max-width: 768px) {
  .header-fixed .logo {
    height: 40px;
  }
}
.header-fixed .nav-links {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header-fixed .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  .header-fixed .nav-links.active {
    left: 0;
  }
}
.header-fixed .nav-links li {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .header-fixed .nav-links li {
    margin: 15px 0;
  }
}
.header-fixed .nav-links a {
  color: #d4af37 !important;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-shadow: none !important;
}
.header-fixed .nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #d4af37;
  transition: width 0.3s ease;
}
.header-fixed .nav-links a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .header-fixed .nav-links a {
    font-size: 1.2rem;
    padding: 10px 0;
  }
}
.header-fixed .menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .header-fixed .menu-toggle {
    display: flex;
  }
}

main {
  padding-top: 0;
}

section:not(.hero-section) {
  scroll-margin-top: 80px;
}
@media (max-width: 768px) {
  section:not(.hero-section) {
    scroll-margin-top: 70px;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}
.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #285484;
  margin: 3px 0;
  transition: all 0.3s ease;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ==========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
.whatsapp-float i {
  width: 30px;
  height: 30px;
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float i {
    width: 25px;
    height: 25px;
  }
}

/* ==========================================================================
   SEÇÃO SLOGAN COM IMAGEM DE FUNDO
   ========================================================================== */
.slogan-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/bg-slogan.webp") no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .slogan-section {
    padding: 60px 0;
  }
}
.slogan-section .slogan-content {
  max-width: 800px;
  margin: 0 auto;
}
.slogan-section .slogan-content h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 100;
}
@media (max-width: 768px) {
  .slogan-section .slogan-content h2 {
    font-size: 2rem;
  }
}
.slogan-section .slogan-content h2::after {
  display: none;
}
.slogan-section .slogan-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .slogan-section .slogan-content p {
    font-size: 1.1rem;
  }
}
.slogan-section .slogan-btn {
  background: transparent;
  color: #fff;
  padding: 15px 35px;
  font-size: 1.1rem;
  border: 2px solid #d4af37;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.slogan-section .slogan-btn:hover {
  background: #d4af37;
  color: #285484;
  transform: translateY(-2px);
}

/* ==========================================================================
   RODAPÉ MELHORADO
   ========================================================================== */
footer {
  background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
  color: #fff;
  padding: 60px 0 20px;
}
footer .footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  footer .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
footer .footer-column h3 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
footer .footer-logo {
  max-width: 220px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
footer .footer-links li {
  margin-bottom: 12px;
}
footer .footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
footer .footer-links li a:hover {
  color: #d4af37;
}
footer .footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
footer .footer-contact p i {
  width: 18px;
  height: 18px;
  color: #d4af37;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}
footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ==========================================================================
   MODAIS
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}
.modal.active {
  display: block;
}
.modal .modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}
@media (max-width: 768px) {
  .modal .modal-content {
    margin: 10% auto;
    width: 95%;
    padding: 20px;
  }
}
.modal .modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}
.modal .modal-close:hover {
  color: #285484;
}
.modal h2 {
  color: #285484;
  margin-bottom: 20px;
  padding-right: 30px;
}
.modal .modal-text {
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVIDADE MELHORADA
   ========================================================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  section h2 {
    font-size: 1.8rem;
  }
  section h2::after {
    width: 60px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .rhinoplasty-grid,
  .facialsurgery-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .appointment-options {
    grid-template-columns: 1fr !important;
  }
  .about-section,
  .rhinoplasty-section,
  .facialsurgery-section,
  .appointment-section {
    padding: 50px 0 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media print {
  .whatsapp-float,
  .menu-toggle,
  .hero-btn,
  .appointment-btn,
  .slogan-btn {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
  .hero-section {
    background: #fff !important;
    color: #000 !important;
    min-height: auto;
  }
}
/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.testimonials h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.testimonials-carousel {
  position: relative;
  margin-bottom: 4rem;
}

.testimonials-container {
  overflow: hidden;
  border-radius: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
  align-items: center;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 1.333rem);
  min-width: 350px;
}
.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  padding: 2.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.testimonial-stars i {
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}
.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: #e2e8f0;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #222222, #333333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-avatar i {
  font-size: 1.5rem;
  color: white;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 0.25rem;
}
.author-info span {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

/* Carousel Navigation */
.carousel-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 50px);
  margin: 0 -25px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.carousel-btn {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: #222222;
  border-color: #222222;
  color: white;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.carousel-btn:disabled:hover {
  background: white;
  border-color: #e2e8f0;
  color: #64748b;
}

.carousel-prev {
  left: -25px;
}

.carousel-next {
  right: -25px;
}

.carousel-btn i {
  font-size: 1.2rem;
  color: #64748b;
  transition: color 0.3s ease;
}

.carousel-btn:hover i {
  color: white;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  margin-bottom: 5px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #222222;
  transform: scale(1.2);
}

.indicator:hover {
  background: #64748b;
}

/* Mobile Counter */
.mobile-counter {
  display: none;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-stats {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonials-stats .stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.testimonials-stats .stat-item {
  padding: 1rem;
}

.testimonials-stats .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #222222;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonials-stats .stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: 300px;
  }
}
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 280px;
  }
  .testimonial-content {
    padding: 2rem;
  }
  .carousel-prev {
    left: -15px;
  }
  .carousel-next {
    right: -15px;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .carousel-btn i {
    font-size: 1rem;
  }
  .testimonials-stats .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .testimonials-stats .stat-number {
    font-size: 2.5rem;
  }
  .testimonials-stats {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .testimonials-stats .stats-container {
    grid-template-columns: 1fr;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .author-avatar {
    width: 50px;
    height: 50px;
  }
  .author-avatar i {
    font-size: 1.2rem;
  }
  .author-info h4 {
    font-size: 1rem;
  }
  .author-info span {
    font-size: 0.85rem;
  }
  .carousel-navigation {
    display: none;
  }
  .carousel-indicators {
    display: none;
  }
  .mobile-counter {
    display: block !important;
  }
  .testimonials-carousel {
    touch-action: pan-x;
  }
}
/* ==========================================================================
   SEÇÃO DE HOSPITAIS PARCEIROS
   ========================================================================== */
.hospitais-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fcfae9 0%, #d1c184 100%);
  text-align: center;
}
@media (max-width: 768px) {
  .hospitais-section {
    padding: 50px 15px;
  }
}
.hospitais-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #285484;
  position: relative;
  display: block;
}
.hospitais-section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .hospitais-section h2 {
    font-size: 2rem;
  }
}
.hospitais-section .hospitais-intro {
  max-width: 800px;
  margin: 50px auto 50px;
}
.hospitais-section .hospitais-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #445;
}
@media (max-width: 768px) {
  .hospitais-section .hospitais-intro p {
    font-size: 1.1rem;
  }
}
.hospitais-section .hospitais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .hospitais-section .hospitais-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .hospitais-section .hospitais-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 400px;
    margin: 0 auto 40px;
  }
}
.hospitais-section .hospital-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform box-shadow 0.3s ease;
}
.hospitais-section .hospital-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .hospitais-section .hospital-card {
    padding: 25px 20px;
  }
}
.hospitais-section .hospital-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hospitais-section .hospital-logo img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hospitais-section .hospital-card h3 {
  font-size: 1.3rem;
  color: #285484;
  margin-bottom: 15px;
}
.hospitais-section .hospital-card p {
  color: rgb(113.3333333333, 113.3333333333, 141.6666666667);
  line-height: 1.6;
  margin: 0;
}
.hospitais-section .hospitais-cta {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hospitais-section .hospitais-cta {
    padding: 25px 20px;
  }
}
.hospitais-section .hospitais-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #445;
}
.hospitais-section .cta-btn {
  display: inline-block;
  background: linear-gradient(301deg, rgb(177.7777777778, 144.8888888889, 38.2222222222) 0%, #d4af37 100%);
  color: #fff;
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}
.hospitais-section .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   ESTILOS PARA REDES SOCIAIS NO RODAPÉ
   ========================================================================== */
/* ==========================================================================
   REDES SOCIAIS NO RODAPÉ
   ========================================================================== */
.footer-social {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social h3 {
  color: #d4af37;
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #d4af37;
  color: #285484;
  transform: translateY(-3px);
}
.social-icons a svg {
  width: 22px;
  height: 22px;
}

/* Responsividade para redes sociais */
@media (max-width: 768px) {
  .footer-social {
    margin-top: 20px;
    padding-top: 20px;
  }
  .social-icons {
    gap: 15px;
  }
  .social-icons a {
    width: 40px;
    height: 40px;
  }
  .social-icons a svg {
    width: 20px;
    height: 20px;
  }
}
/* ==========================================================================
   MELHORIAS PARA MODAIS
   ========================================================================== */
.modal-text {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
  /* Personalizar scrollbar para modais */
}
.modal-text h3 {
  color: #285484;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.modal-text ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
.modal-text ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}
.modal-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.modal-text::-webkit-scrollbar {
  width: 6px;
}
.modal-text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.modal-text::-webkit-scrollbar-thumb {
  background: #285484;
  border-radius: 10px;
}
.modal-text::-webkit-scrollbar-thumb:hover {
  background: rgb(28.1395348837, 59.0930232558, 92.8604651163);
}/*# sourceMappingURL=style.css.map */