:root {
  --bg-color: #c89f9c; /* Fundo Rose */
  --text-main: #4a3b32; /* Marrom escuro título principal */
  --text-light: #fbf9f6; /* Bege cpara os parágrafos */
  --text-highlight: #fbf9f6; /* Bege para o destaque em itálico */
  --cta-bg: #fbf9f6; /* Fundo do botão em Bege */
  --cta-text: #966966; /* Texto do botão em Rose */
  --cta-hover: #ebe5df; /* Hover do botão em bege */
  --font-title: "Playfair Display", serif;
  --font-text: "Lato", sans-serif;
}

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

body {
  font-family: var(--font-text);
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
}

/* HERO SECTION */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100vw;
  background-color: #c89f9c;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: -1;
  opacity: 0.4;
  animation:
    morph 15s linear infinite alternate,
    spin 25s linear infinite;
}
.hero::before {
  background-color: #966966;
  top: -15%;
  left: -10%;
  transform-origin: center;
}
.hero::after {
  background-color: #b38885;
  bottom: -20%;
  right: 15%;
  animation-direction: alternate-reverse;
  transform-origin: center;
}
@keyframes morph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5% 10%;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease,
    transform 1s ease;
  z-index: 2;
}
.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-content h1 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  font-weight: 600;
}
.hero-content h1 span {
  font-style: italic;
  color: var(--text-highlight);
  position: relative;
  display: inline-block;
  z-index: 1;
}
.hero-content h1 span::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: 6px;
  width: 104%;
  height: 14px;
  background-color: #966966;
  z-index: -1;
  border-radius: 8px;
  transform: rotate(2deg);
  opacity: 0.85;
  transition: transform 0.3s ease;
}
.hero-content h1 span:hover::after {
  transform: rotate(1deg) scale(1.05);
}
.hero-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  max-width: 90%;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}
.cta-button {
  display: inline-block;
  background-color: var(--cta-bg);
  color: var(--cta-text);
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 59, 50, 0.15);
  -webkit-tap-highlight-color: transparent;
}
.cta-button:hover,
.cta-button:focus,
.cta-button:active {
  background-color: var(--cta-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 59, 50, 0.25);
}
.hero-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1.5s ease 0.3s;
}
.hero-image img.visible {
  opacity: 1;
}
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero::before,
  .hero::after {
    width: 400px;
    height: 400px;
  }
  .hero-content {
    padding: 15% 8% 10% 8%;
    align-items: center;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content p {
    font-size: 1.1rem;
    max-width: 100%;
  }
  .hero-image {
    height: 60vh;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .cta-button {
    width: 100%;
    padding: 1.2rem 1rem;
  }
}

/* FILOSOFIA */
.filosofia {
  background-color: var(--cta-bg);
  padding: 8rem 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
}
.filosofia-container {
  max-width: 900px;
  text-align: center;
}
.filosofia-badge {
  font-family: var(--font-text);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--cta-text);
  margin-bottom: 2rem;
  font-weight: 700;
}
.filosofia-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 3.5rem;
  font-weight: 400;
}
.filosofia-title span {
  font-style: italic;
  color: var(--bg-color);
}
.filosofia-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.filosofia-linha {
  width: 2px;
  height: 70px;
  background-color: var(--bg-color);
}
.filosofia-textos {
  max-width: 650px;
}
.filosofia-textos .destaque {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.filosofia-textos p:not(.destaque) {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.8;
  opacity: 0.85;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .filosofia {
    padding: 5rem 8%;
  }
  .filosofia-title {
    font-size: 2.2rem;
  }
  .filosofia-linha {
    height: 40px;
  }
}

/* SOBRE DRA. FERNANDA */
.sobre-dra {
  background: linear-gradient(135deg, var(--bg-color) 0%, #d9b5b2 100%);
  padding: 8rem 10%;
  width: 100vw;
  overflow: hidden;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-imagem-wrapper {
  position: relative;
  padding-right: 2rem;
  -webkit-tap-highlight-color: transparent;
}
.imagem-moldura {
  position: relative;
  border-radius: 4px;
  z-index: 2;
}
.imagem-moldura::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--text-main);
  z-index: -1;
  border-radius: 4px;
  transition: transform 0.5s ease;
}
.sobre-imagem-wrapper:hover .imagem-moldura::before,
.sobre-imagem-wrapper:focus .imagem-moldura::before,
.sobre-imagem-wrapper:active .imagem-moldura::before {
  transform: translate(10px, 10px);
}
.foto-dra {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(74, 59, 50, 0.15);
}
.badge-experiencia {
  position: absolute;
  bottom: -30px;
  right: 0;
  background-color: var(--cta-bg);
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(74, 59, 50, 0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}
.badge-experiencia .numero {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--bg-color);
  font-weight: 700;
  line-height: 1;
}
.badge-experiencia .texto {
  font-size: 0.85rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.4;
}
.sobre-conteudo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sobre-conteudo h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.sobre-conteudo h2 span {
  font-style: italic;
  color: var(--cta-bg);
}
.sobre-textos .destaque {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.sobre-textos p {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.credenciais-lista {
  list-style: none;
  margin-top: 1rem;
  border-left: 2px solid var(--cta-bg);
  padding-left: 1.5rem;
}
.credenciais-lista li {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.assinatura {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--cta-bg);
  margin-top: 3rem;
  opacity: 0.8;
}
@media (max-width: 992px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .sobre-imagem-wrapper {
    padding-right: 0;
    max-width: 500px;
    margin: 0 auto;
  }
  .badge-experiencia {
    bottom: -20px;
    right: -10px;
  }
  .sobre-conteudo {
    text-align: center;
  }
  .credenciais-lista {
    border-left: none;
    padding-left: 0;
  }
}

/* ESPECIALIDADES */

.especialidades-premium {
  background-color: var(--cta-bg);
  padding: 8rem 10%;
  width: 100vw;
}
.badge-rose {
  display: inline-block;
  font-family: var(--font-text);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: #966966;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.especialidades-header {
  text-align: center;
  margin-bottom: 5rem;
}
.especialidades-header h2 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
}
.especialidades-header h2 span {
  font-style: italic;
  color: var(--bg-color);
  position: relative;
  display: inline-block;
  z-index: 1;
  white-space: nowrap;
}
.especialidades-header h2 span::after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -15px;
  right: -15px;
  border: 3px solid #966966;
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%;
  z-index: -1;
  transform: rotate(-2deg);
  opacity: 0.6;
  transition: all 0.4s ease;
}
.especialidades-header h2 span:hover::after {
  border-radius: 40% 60% 70% 30% / 60% 40% 50% 70%;
  transform: rotate(2deg) scale(1.02);
  opacity: 0.9;
}
@media (max-width: 768px) {
  .especialidades-header h2 span {
    white-space: normal;
  }
  .especialidades-header h2 span::after {
    top: -5px;
    bottom: -5px;
    left: -10px;
    right: -10px;
  }
}
.especialidades-header p {
  font-size: 1.15rem;
  color: var(--text-main);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.especialidades-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.especialidade-card {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: 280px;
  max-width: 300px;
  background: linear-gradient(135deg, #c89f9c, #e6c5c2, #b38885, #c89f9c);
  background-size: 300% 300%;
  animation: roseSilk 8s ease infinite;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(74, 59, 50, 0.08);
  -webkit-tap-highlight-color: transparent;
}
@keyframes roseSilk {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.especialidade-card:hover,
.especialidade-card:focus,
.especialidade-card:active {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(74, 59, 50, 0.18);
}
.card-icon {
  color: #ffffff;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}
.especialidade-card h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 2rem;
  font-weight: 600;
}
.lista-procedimentos {
  list-style: none;
  margin-bottom: 3rem;
  width: 100%;
}
.lista-procedimentos li {
  font-size: 1.05rem;
  color: var(--text-highlight);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(74, 59, 50, 0.15);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}
.lista-procedimentos li:last-child {
  border-bottom: none;
}
.card-btn {
  margin-top: auto;
  display: inline-block;
  width: 100%;
  padding: 1rem;
  font-family: var(--font-text);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
  background-color: #ffffff;
  color: var(--text-main);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(74, 59, 50, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.card-btn:hover,
.card-btn:focus,
.card-btn:active {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 59, 50, 0.2);
  background-color: var(--text-main);
  color: white;
}

/* ANTES E DEPOIS */
.prova-social {
  background-color: var(--bg-color);
  padding: 8rem 0;
  width: 100vw;
  overflow: hidden;
}
.social-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 10%;
}
.badge-brown {
  display: inline-block;
  font-family: var(--font-text);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--cta-text);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.social-header h2 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.social-header h2 span {
  color: var(--text-highlight);
  font-style: italic;
}
.social-header p {
  font-size: 1.15rem;
  color: var(--text-main);
  opacity: 0.85;
}
.carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}
.carousel-track {
  display: flex;
  padding: 2rem 0;
  animation: scroll 100s linear infinite;
  width: max-content;
  will-change: transform;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.depoimento-img-card {
  width: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(74, 59, 50, 0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  background-color: #ffffff;
  margin-right: 2.5rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.depoimento-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 992px) {
  .social-header h2 {
    font-size: 2.8rem;
  }
  .depoimento-img-card {
    width: 320px;
  }
}
@media (max-width: 480px) {
  .social-header h2 {
    font-size: 2.2rem;
  }
  .depoimento-img-card {
    width: 280px;
  }
}

/* FEEDBACKS */
.feedbacks-section {
  background-color: var(--cta-bg);
  padding: 8rem 0;
  width: 100%;
  overflow: hidden;
}
.feedbacks-header h2 span {
  font-style: italic;
  color: var(--bg-color);
  position: relative;
  display: inline-block;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}
.feedbacks-header h2 span::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: 6px;
  width: 104%;
  height: 14px;
  background-color: #966966;
  z-index: -1;
  border-radius: 8px;
  transform: rotate(-2deg);
  opacity: 0.25;
  transition: transform 0.3s ease;
}
.feedbacks-header h2 span:hover::after,
.feedbacks-header h2 span:focus::after,
.feedbacks-header h2 span:active::after {
  transform: rotate(1deg) scale(1.05);
}

/* INSTAGRAM */
.instagram-section {
  background-color: var(--bg-color);
  padding: 8rem 10%;
  width: 100vw;
  overflow: hidden;
}
.insta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}
.badge-bege {
  display: inline-block;
  font-family: var(--font-text);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--cta-bg);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.insta-content h2 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.insta-content h2 span {
  font-style: italic;
  color: var(--cta-bg);
  position: relative;
  display: inline-block;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}
.insta-content h2 span::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: 8px;
  width: 104%;
  height: 14px;
  background-color: #966966;
  z-index: -1;
  border-radius: 8px;
  transform: rotate(-1.5deg);
  opacity: 0.85;
  transition: transform 0.3s ease;
}
.insta-content h2 span:hover::after,
.insta-content h2 span:focus::after,
.insta-content h2 span:active::after {
  transform: rotate(1deg) scale(1.03);
}
.insta-content p {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.insta-handle {
  border-left: 3px solid var(--cta-bg);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
}
.insta-handle p {
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 500;
}
.insta-handle strong {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--text-main);
}
.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--cta-bg);
  color: var(--text-main);
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 10px 25px rgba(74, 59, 50, 0.15);
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.insta-btn:hover,
.insta-btn:focus,
.insta-btn:active {
  background-color: var(--text-main);
  color: var(--cta-bg);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(74, 59, 50, 0.25);
}
.insta-btn:hover .insta-icon,
.insta-btn:focus .insta-icon,
.insta-btn:active .insta-icon {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.3s ease;
}
.insta-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.insta-photo-container {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.insta-photo {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(74, 59, 50, 0.15);
  object-fit: cover;
  display: block;
}
.floating-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background-color: var(--cta-bg);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 30px rgba(74, 59, 50, 0.15);
  animation: floatDelay 5s ease-in-out infinite alternate;
}
.floating-card span {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes floatDelay {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}
@media (max-width: 992px) {
  .instagram-section {
    padding: 5rem 8%;
  }
  .insta-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .insta-handle {
    border-left: none;
    padding-left: 0;
    margin-bottom: 2.5rem;
  }
  .floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    animation: none;
  }
}
@media (max-width: 768px) {
  .insta-content h2 {
    font-size: 2.2rem;
  }
  .insta-content h2 span {
    white-space: nowrap;
    font-size: 0.9em;
  }
  .insta-content p {
    font-size: 1.05rem;
  }
  .insta-btn {
    width: 100%;
    justify-content: center;
    padding: 1.2rem 1rem;
  }
  .insta-photo {
    max-width: 100%;
  }
  .floating-card {
    width: max-content;
    padding: 0.8rem 1.2rem;
  }
}

/* FAQ */
.faq-premium {
  background-color: var(--cta-bg);
  padding: 8rem 10%;
  width: 100vw;
  display: flex;
  justify-content: center;
}
.faq-container {
  max-width: 800px;
  width: 100%;
}
.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}
.faq-header h2 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.faq-header h2 span {
  font-style: italic;
  color: var(--bg-color);
}
.faq-header p {
  font-size: 1.15rem;
  color: var(--text-main);
  opacity: 0.85;
}
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}
.faq-item {
  border-bottom: 1px solid rgba(74, 59, 50, 0.15);
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}
.question-text {
  font-family: var(--font-text);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  padding-right: 2rem;
  transition: color 0.3s ease;
}
.icon-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--bg-color);
  transition:
    transform 0.4s ease,
    color 0.3s ease;
  line-height: 1;
}
.faq-item summary:hover .question-text,
.faq-item summary:focus .question-text,
.faq-item summary:active .question-text {
  color: var(--bg-color);
}
.answer-text {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  animation: fadeInDown 0.4s ease-in-out;
}
.answer-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
  opacity: 0.85;
}
details[open] .icon-toggle {
  transform: rotate(45deg);
  color: var(--text-main);
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-cta-container {
  text-align: center;
}
.faq-btn {
  display: inline-block;
  background-color: var(--text-main);
  color: var(--cta-bg);
  text-decoration: none;
  padding: 1.2rem 3rem;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 25px rgba(74, 59, 50, 0.2);
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.faq-btn:hover,
.faq-btn:focus,
.faq-btn:active {
  background-color: var(--bg-color);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(200, 159, 156, 0.4);
}
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 2.5rem;
  }
  .question-text {
    font-size: 1.1rem;
  }
  .faq-btn {
    width: 100%;
    padding: 1.2rem 1rem;
  }
}

/* FOOTER */
.footer-premium {
  background-color: var(--bg-color);
  padding: 5rem 10% 3rem 10%;
  color: var(--text-main);
  width: 100vw;
}
.footer-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.footer-brand h2 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.footer-brand p {
  font-family: var(--font-text);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}
.footer-links {
  display: flex;
  gap: 3rem;
}
.footer-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.footer-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--cta-bg);
  transition: width 0.3s ease;
}
.footer-link:hover,
.footer-link:focus,
.footer-link:active {
  color: var(--cta-bg);
}
.footer-link:hover::after,
.footer-link:focus::after,
.footer-link:active::after {
  width: 100%;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(74, 59, 50, 0.15);
  margin-bottom: 2.5rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-copy p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.dev-credit {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.dev-credit a {
  color: var(--text-main);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.dev-credit a:hover,
.dev-credit a:focus,
.dev-credit a:active {
  color: var(--cta-bg);
}
.back-to-top {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
}
.back-to-top:hover,
.back-to-top:focus,
.back-to-top:active {
  color: var(--cta-bg);
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2.5rem;
    align-items: center;
  }
}
