*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.4s ease; }
ul, ol, li { margin: 0; padding: 0; list-style: none; }
button { cursor: pointer; border: none; background: none; outline: none; }

html, body {
  scroll-behavior: smooth;
}
/* =========================================
   VARIABLES (extraídas do CSS original)
========================================= */
:root {
  --bg:        #F9EDE5;   /* fundo geral */
  --primary:   #5B3000;   /* marrom escuro */
  --accent:    #D79D83;   /* salmão */
  --text:      #554F4C;   /* texto corpo */
  --dark:      #1E1E24;   /* títulos h2/h3 */
  --white:     #ffffff;
  --border-light: #ead4c9;
  --font-head: 'Comfortaa', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* =========================================
   BASE
========================================= */

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px;
}
h1 { font-size: 48px; color: var(--primary); text-transform: uppercase; }
h2 { font-size: 36px; color: var(--dark); }
h3 { font-size: 20px; color: var(--dark); }
h4 { font-size: 14px; color: var(--primary); text-transform: uppercase; font-weight: 700; }

@media (max-width: 1399px) { h1 { font-size: 38px; } }
@media (max-width: 1199px) { h1 { font-size: 34px; } h2 { font-size: 30px; } }
@media (max-width: 767px)  { h1 { font-size: 28px; } h2 { font-size: 26px; } }

p { margin-bottom: 15px; }
p:last-child { margin-bottom: 0; }

section, footer, header { float: left; width: 100%; }

/* =========================================
   CONTAINER
========================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 575px)  { .container { max-width: 100%; } }
@media (min-width: 576px)  { .container { max-width: 540px;  } }
@media (min-width: 768px)  { .container { max-width: 720px;  } }
@media (min-width: 992px)  { .container { max-width: 960px;  } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

/* =========================================
   BOTÕES (border-radius 35px = pílula)
========================================= */
.bt { margin: 0; display: flex; align-items: center; }
.bt a, .bt button, .btn-pill {
  transition: all 0.4s ease;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  border-radius: 35px;
  background: var(--primary);
  color: var(--white);
  text-transform: uppercase;
  padding: 5px 40px;
  border: 1px solid var(--primary);
}
.bt a:hover, .bt button:hover, .btn-pill:hover {
  background: transparent;
  color: var(--primary);
}
.bt a.outline, .btn-pill.outline {
  background: transparent;
  color: var(--primary);
}
.bt a.outline:hover, .btn-pill.outline:hover {
  background: var(--primary);
  color: var(--white);
}
/* Botão branco (para seção escura) */
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
/* Botão small (underline) */
.bt a.small {
  padding: 7px 0 5px;
  min-height: 30px;
  border-left: 0; border-right: 0; border-top: 0;
  border-radius: 0;
  font-size: 12px;
  background: transparent;
  color: var(--primary);
}
.bt a.small:hover { background: transparent; color: var(--accent); }

.bt-light a{
    background: #E7D2CE;
    color: var(--primary);
    border: 1px solid #E7D2CE;
}

.bt-light a:hover{
    background: transparent;
    color: #E7D2CE;
    border-color: #E7D2CE;
}

.equipe-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:40px;
}

/* =========================================
   WHATSAPP FLUTUANTE
========================================= */
.fix-wpp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
  transition: all 0.4s ease;
}
.fix-wpp img { width: auto !important; height: 70px !important; }
.fix-wpp:hover { transform: scale(1.1); }

/* =========================================
   HEADER
========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}

.wrap-head {
  transition: all 0.4s ease;
  background: transparent;
  width: 100%;
  position: relative;
  z-index: 5;
}
header.scroll .wrap-head,
header.toggled .wrap-head {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.wrap-head .head-inner {
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
header.scroll .wrap-head .head-inner,
header.toggled .wrap-head .head-inner { height: 60px; }

@media (max-width: 767px) {
  .wrap-head .head-inner { height: 100px; }
  header.scroll .wrap-head .head-inner,
  header.toggled .wrap-head .head-inner { height: 60px; }
}

/* Logo */
.branding {
  width: 160px;
  height: 94px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.branding img { width: auto; height: 94px; transition: all 0.4s ease; }
header.scroll .branding,
header.toggled .branding { height: 37px; }
header.scroll .branding img,
header.toggled .branding img { height: 37px; }

@media (max-width: 767px) {
  .branding { height: 80px; }
  .branding img { height: 80px; }
}

/* Nav Menu */
ul.menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.menu > li { margin-right: 30px; position: relative; }
@media (max-width: 1399px) { ul.menu > li { margin-right: 20px; } }
ul.menu > li:last-child { margin-right: 0; }

ul.menu > li > a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-family: var(--font-head) !important;
  line-height: 1 !important;
  color: var(--text) !important;
  height: 60px !important;
  position: relative !important;
  padding: 0 !important;
  text-transform: uppercase !important;
}
@media (max-width: 1399px) { ul.menu > li > a { font-size: 12px !important; } }

ul.menu > li > a:hover { color: var(--primary) !important; }

/* Dropdown */
ul.menu > li.has-children ul.sub-menu {
  list-style: none;
  margin: 0;
  position: absolute;
  width: 220px;
  background: rgba(255,255,255,0.95);
  left: calc(50% - 110px);
  border-radius: 0 0 10px 10px;
  padding: 0;
  transition: all 0.4s ease;
  flex-flow: column;
  pointer-events: none;
  opacity: 0;
  top: calc(100% - 15px);
  display: flex;
  z-index: 200;
}
ul.menu > li.has-children:hover ul.sub-menu,
ul.menu > li.has-children.focus ul.sub-menu {
  pointer-events: inherit;
  opacity: 1;
  top: 100%;
}
ul.menu > li.has-children ul.sub-menu li {
  margin: 0;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.1);
}
ul.menu > li.has-children ul.sub-menu li:first-child { border-top: 0; }
ul.menu > li.has-children ul.sub-menu li a {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-size: 14px !important;
  font-family: var(--font-body) !important;
  line-height: 1.2 !important;
  color: var(--text) !important;
  font-weight: 400 !important;
  text-transform: none;
  height: auto !important;
}
ul.menu > li.has-children ul.sub-menu li a:hover { color: var(--primary) !important; }

/* Botão hambúrguer */
.burger-btn {
  display: none;
  background: transparent;
  border: 0;
  width: 50px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.burger-element {
  width: 26px;
  height: 20px;
  position: relative;
}
.burger-element span {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: var(--primary);
  top: 0;
  transition: transform 0.21s, margin 0.21s 0.22s, opacity 0.3s, top 0.21s 0.22s;
}
.burger-element span:nth-child(2) { top: 50%; margin-top: -1px; }
.burger-element span:nth-child(3) { top: 100%; margin-top: -2px; }

/* Menu mobile */
.mobile-nav {
  display: none;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid var(--border-light);
  padding: 20px 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { flex-direction: column; display: flex; gap: 0; }
.mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--text);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav ul li a:hover { color: var(--primary); }

/* Botão WA no header */
.nav-wpp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 35px;
  padding: 8px 18px;
  white-space: nowrap;
  transition: all 0.4s ease;
}
.nav-wpp:hover { background: var(--primary); color: var(--white); }
.nav-wpp svg { flex-shrink: 0; }

    /* Hambúrguer */
    .burger-btn {
      display: none;
      background: transparent;
      border: 0;
      width: 50px;
      height: 44px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
    }
    .burger-element {
      width: 26px;
      height: 20px;
      position: relative;
    }
    .burger-element span {
      position: absolute;
      left: 0;
      right: 0;
      width: 100%;
      height: 2px;
      border-radius: 1px;
      background-color: var(--primary);
      transition: transform 0.21s, margin 0.21s 0.22s, opacity 0.3s, top 0.21s 0.22s;
    }
    .burger-element span:nth-child(1) { top: 0; }
    .burger-element span:nth-child(2) { top: 50%; margin-top: -1px; }
    .burger-element span:nth-child(3) { top: 100%; margin-top: -2px; }
    header.toggled .burger-element span:nth-child(1) {
      transform: rotate(45deg); top: 50%; margin-top: -1px;
      transition: top 0.21s, transform 0.21s 0.22s;
    }
    header.toggled .burger-element span:nth-child(2) { opacity: 0; }
    header.toggled .burger-element span:nth-child(3) {
      transform: rotate(-45deg); top: 50%; margin-top: -1px;
      transition: top 0.21s, transform 0.21s 0.22s;
    }
    @media (max-width: 1199px) { .burger-btn { display: flex; } }

    /* Mobile nav */
    .mobile-nav {
      display: none;
      background: rgba(255,255,255,0.98);
      border-top: 1px solid var(--border-light);
      padding: 20px 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    .mobile-nav.open { display: block; }
    .mobile-nav ul { flex-direction: column; display: flex; }
    .mobile-nav ul li a {
      display: block;
      padding: 12px 0;
      font-size: 14px;
      font-weight: 700;
      font-family: var(--font-head);
      color: var(--text);
      text-transform: uppercase;
      border-bottom: 1px solid var(--border-light);
    }
    .mobile-nav ul li a:hover { color: var(--primary); }
    .mobile-nav .sub-menu { padding-left: 15px; display: none; }
    .mobile-nav .sub-menu li a {
      font-size: 13px;
      font-weight: 400;
      text-transform: none;
    }

    /* =========================================
       TITLE / BREADCRUMB
    ========================================= */
    .section-title {
      float: left;
      width: 100%;
      background: var(--bg);
      padding: 150px 0 40px;
    }
    @media (max-width: 767px) { .section-title { padding: 120px 0 30px; } }

    #breadcrumbs {
      font-size: 13px;
      color: var(--text);
      margin-bottom: 10px;
    }
    #breadcrumbs a { color: var(--primary); }
    #breadcrumbs a:hover { text-decoration: underline; }
    #breadcrumbs span { display: inline; }

    .section-title h1 {
      font-size: 42px;
      color: var(--primary);
    }
    @media (max-width: 767px) { .section-title h1 { font-size: 28px; } }

    /* =========================================
       SEÇÃO PRINCIPAL (antes/depois + texto)
    ========================================= */
    .section-main {
      float: left;
      width: 100%;
      padding: 60px 0;
      background: var(--bg);
    }
    .row-flex {
      display: flex;
      flex-wrap: wrap;
      margin-left: -15px;
      margin-right: -15px;
      align-items: center;
    }
    .col-6 {
      width: 50%;
      padding: 0 15px;
    }
    @media (max-width: 767px) {
      .col-6 { width: 100%; }
      .col-6 + .col-6 { margin-top: 30px; }
    }

    /* =========================================
       BEFORE/AFTER SLIDER
    ========================================= */
    .nba-wrapper {
      position: relative;
      width: 80%;
      overflow: hidden;
      border-radius: 12px;
      user-select: none;
      cursor: col-resize;
    }
    .nba-wrapper img {
      display: block;
      width: 100%;
      height: auto;
      pointer-events: none;
    }
    .nba-after { position: relative; }
    .nba-before {
      position: absolute;
      top: 0; left: 0;
      overflow: hidden;
      width: 100%;
      height: 100%;
    }
    .nba-before img {
      width: auto;
      min-width: 100%;
      max-width: none;
      height: 100%;
      object-fit: cover;
      position: absolute;
      left: 0; top: 0;
    }
    .nba-after img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .nba-divider {
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;
      width: 2px;
      background: #fff;
      cursor: col-resize;
      z-index: 10;
    }
    .nba-handle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 44px;
      height: 44px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    }
    .nba-handle svg { fill: var(--primary); width: 20px; height: 20px; }

    /* =========================================
       GRID 3 ANTES/DEPOIS
    ========================================= */
    .section-grid-ad {
      float: left;
      width: 100%;
      padding: 0 0 60px;
      background: var(--bg);
    }
    .row-3 {
      display: flex;
      flex-wrap: wrap;
      margin-left: -10px;
      margin-right: -10px;
    }
    .col-3-item {
      width: 33.333%;
      padding: 0 10px;
    }
    @media (max-width: 767px) { .col-3-item { width: 100%; margin-bottom: 20px; } }

    /* =========================================
       SEÇÃO TOXINA BOTULÍNICA
    ========================================= */
    .section-toxina {
      float: left;
      width: 100%;
      background: var(--dark);
      padding: 80px 0;
    }
    .section-toxina h4 { color: var(--accent); }
    .section-toxina h2 { color: var(--white); }
    .section-toxina p  { color: rgba(255,255,255,0.85); }

    .toxina-row {
      display: flex;
      flex-wrap: wrap;
      margin-left: -15px;
      margin-right: -15px;
      align-items: flex-start;
      gap: 0;
    }
    .toxina-txt {
      width: 50%;
      padding: 0 15px;
    }
    .toxina-cards {
      width: 50%;
      padding: 0 15px;
    }
    @media (max-width: 767px) {
      .toxina-txt, .toxina-cards { width: 100%; }
      .toxina-txt { margin-bottom: 40px; }
    }

    .info-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      padding: 22px 24px;
      margin-bottom: 16px;
      transition: background 0.3s ease;
    }
    .info-card:hover { background: rgba(255,255,255,0.1); }
    .info-card:last-child { margin-bottom: 0; }
    .info-card h3 {
      font-size: 16px;
      color: var(--accent);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .info-card h3 i { font-size: 18px; }
    .info-card p {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      margin: 0;
    }

    /* =========================================
       SEÇÃO VÍDEOS
    ========================================= */
    .section-videos {
      float: left;
      width: 100%;
      background: var(--bg);
      padding: 80px 0;
    }
    .videos-row {
      display: flex;
      flex-wrap: wrap;
      margin-left: -15px;
      margin-right: -15px;
    }
    .video-col {
      width: 50%;
      padding: 0 15px;
    }
    @media (max-width: 767px) {
      .video-col { width: 100%; margin-bottom: 25px; }
    }
    .video-embed {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }
    .video-embed iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: 0;
    }

    /* =========================================
       FOOTER
    ========================================= */
    footer { background: #1a0a00; color: rgba(255,255,255,0.7); float: left; width: 100%; }

    .footer-map { width: 100%; height: 300px; overflow: hidden; }
    .footer-map iframe { width: 100%; height: 100%; border: none; display: block; }

    .footer-news {
      background: #120700;
      padding: 50px 0 30px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-news-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin-left: -15px;
      margin-right: -15px;
      gap: 0;
    }
    .footer-news-txt {
      width: 33%;
      padding: 0 15px;
    }
    .footer-news-txt h3 {
      color: var(--white);
      font-size: 16px;
      margin: 0;
    }
    .footer-news-form {
      width: 67%;
      padding: 0 15px;
    }
    @media (max-width: 767px) {
      .footer-news-txt, .footer-news-form { width: 100%; }
      .footer-news-txt { margin-bottom: 20px; }
    }
    .fnews-form {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }
    .fnews-form input[type="text"],
    .fnews-form input[type="email"] {
      flex: 1;
      min-width: 160px;
      padding: 12px 18px;
      border: 1px solid rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.1);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 14px;
      border-radius: 35px;
      outline: none;
    }
    .fnews-form input::placeholder { color: rgba(255,255,255,0.5); }
    .fnews-form .form-check {
      width: 100%;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13px;
      color: rgba(255,255,255,0.65);
    }
    .fnews-form .form-check input { margin-top: 2px; flex-shrink: 0; }
    .fnews-form button {
      padding: 12px 30px;
      background: var(--white);
      color: var(--primary);
      border: 1px solid var(--white);
      border-radius: 35px;
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-transform: uppercase;
      transition: all 0.4s ease;
      white-space: nowrap;
    }
    .fnews-form button:hover { background: transparent; color: var(--white); }

    .footer-main { padding: 60px 0 40px; }
    .footer-grid {
      display: flex;
      flex-wrap: wrap;
      margin-left: -15px;
      margin-right: -15px;
    }
    .footer-col { padding: 0 15px; }
    .footer-col-logo    { width: 25%; }
    .footer-col-contato { width: 30%; }
    .footer-col-sitemap { width: 45%; }
    @media (max-width: 991px) {
      .footer-col-logo,
      .footer-col-contato { width: 50%; margin-bottom: 30px; }
      .footer-col-sitemap { width: 100%; }
    }
    @media (max-width: 575px) {
      .footer-col-logo,
      .footer-col-contato,
      .footer-col-sitemap { width: 100%; }
    }

    .footer-logo { margin-bottom: 20px; }
    .footer-logo img { height: 60px; width: auto; }

    .footer-social {
      display: flex;
      gap: 8px;
      margin-top: 10px;
    }
    .footer-social a {
      width: 30px; height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 14px;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.7);
      transition: all 0.4s ease;
    }
    .footer-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

    .footer-col-title {
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 20px;
      display: block;
    }

    .contato-list { list-style: none; padding: 0; margin: 0; }
    .contato-list li {
      margin: 10px 0 0;
      font-size: 14px;
      line-height: 1.5;
    }
    .contato-list li address,
    .contato-list li a {
      padding-left: 22px;
      position: relative;
      display: block;
      font-style: normal;
      color: rgba(255,255,255,0.7);
    }
    .contato-list li i {
      position: absolute;
      left: 0; top: 3px;
      color: var(--accent);
      font-size: 14px;
      width: 15px;
      text-align: center;
    }
    .contato-list li a:hover { opacity: 0.6; }

    .sitemap-grid {
      display: flex;
      flex-wrap: wrap;
      margin-left: -15px;
      margin-right: -15px;
    }
    .sitemap-col { width: 33.333%; padding: 0 15px; }
    @media (max-width: 575px) { .sitemap-col { width: 50%; margin-bottom: 20px; } }

    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links li a {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      transition: all 0.4s ease;
    }
    .footer-links li a:hover { color: var(--accent); }
    .footer-links li .sub-links {
      padding-left: 12px;
      margin-top: 4px;
    }

    .footer-hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0; }

    .footer-bottom {
      padding: 20px 0;
    }
    .footer-bottom .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 13px;
      color: rgba(255,255,255,0.4);
    }
    .footer-bottom a { color: var(--accent); }

    .section-indicacoes{
    float:left;
    width:100%;
    padding:90px 0;
    background:#f7f2ee;
}

.section-indicacoes h4{
    color:var(--primary);
}

.section-indicacoes .section-intro{
    max-width:700px;
    margin-bottom:50px;
}

/* =========================================
   INDICAÇÕES DA TOXINA BOTULÍNICA
========================================= */

.section-indicacoes{
    float:left;
    width:100%;
    padding:100px 0;
    background:linear-gradient(180deg,#f8f3ef 0%,#ffffff 100%);
}

.section-indicacoes h4{
    color:var(--primary);
}

.section-indicacoes h2{
    margin-bottom:15px;
}

.section-indicacoes .section-intro{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

/* GRID */

.indicacoes-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

@media(max-width:991px){
    .indicacoes-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

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

/* =========================================
   INDICAÇÕES DA TOXINA BOTULÍNICA
========================================= */

.section-indicacoes{
    float:left;
    width:100%;
    padding:90px 0;
    background:linear-gradient(180deg,#f8f2ed 0%,#ffffff 100%);
}

.section-indicacoes h4{
    color:var(--primary);
    text-align:center;
}

.section-indicacoes h2{
    text-align:center;
    margin-bottom:18px;
}

.section-indicacoes .section-intro{
    max-width:760px;
    margin:0 auto 55px;
    text-align:center;
}

/* GRID */

.section-indicacoes .areas-grid{
    display:flex !important;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.section-indicacoes .area-card{
    flex:0 0 calc(50% - 15px);
    max-width:calc(50% - 15px);
    width:calc(50% - 15px) !important;
    padding:0 !important;
    margin:0 !important;
}

@media(max-width:768px){

.section-indicacoes .area-card{
    flex:0 0 100%;
    max-width:100%;
    width:100% !important;
}

}

/* CARD */

.section-indicacoes .area-card-inner{
    height:100%;
    background:#fff;
    border:none;
    border-radius:22px;
    padding:35px 32px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.section-indicacoes .area-card-inner::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
}

.section-indicacoes .area-card-inner:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(91,48,0,.15);
}

/* ÍCONE */

.section-indicacoes .area-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:linear-gradient(135deg,var(--primary),var(--accent));

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;
}

.section-indicacoes .area-icon i{
    color:#fff;
    font-size:24px;
    line-height:1;
}

/* TEXTO */

.section-indicacoes h3{
    color:var(--dark);
    margin-bottom:12px;
    font-size:20px;
}

.section-indicacoes p{
    margin:0;
    color:var(--text);
    line-height:1.75;
    font-size:14px;
}

/* RESPONSIVO */

@media(max-width:768px){

    .section-indicacoes{
        padding:70px 0;
    }

    .section-indicacoes .areas-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .section-indicacoes .area-card-inner{
        padding:30px 24px;
    }

}