/* ========================================
   DRA. DANIELA MANTOVANI — STYLE.CSS
   ======================================== */

:root {
  --primary-color: #0daa9f;
  --primary-hover: #09948a;
  --secondary-color: #0daa9f;
  --secondary-hover: #14375f;
  --accent-color: #0daa9f;
  --bg-primary: #fefefe;
  --bg-light: #ffffff;
  --bg-dark: #1a487c;
  --text-dark: #14375f;
  --text-medium: #4b5563;
  --text-light: #4d5e72;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --font-heading: "Comfortaa", sans-serif;
  --font-body: "Inter", sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 90px;
  --line-height-base: 1.4;
  --line-height-heading: 1.3;
  --line-height-relaxed: 1.8;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: var(--line-height-base);
  text-wrap: balance;
  color: var(--text-medium);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main {
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: var(--line-height-heading);
}

p,
span,
a,
button,
input,
textarea,
label,
li {
  font-family: var(--font-body);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}
.address-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 24px;
  margin-bottom: 32px;
}
.address-title{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__card span{
  content: '';
  background-color: var(--border-color);
  width: 100%;
  position: absolute;
  height: 1px;
  bottom: -10px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--light {
  background-color: var(--bg-light);
}

.section--dark {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0f3054 100%);
  color: rgba(255, 255, 255, 0.85);
}

.section--dark .section-title {
  color: var(--white);
}
.section--dark .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.section--accent {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: rgba(255, 255, 255, 0.9);
}

.section--accent .section-title {
  color: var(--white);
}
.section--accent .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header--light .section-title {
  color: var(--white);
}
.section-header--light .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.section-tag--light {
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  line-height: var(--line-height-base);
}

/* Buttons */
.btn-rota{
  color: var(--accent-color);
}
.btn-rota:hover{
  text-decoration: underline;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn--primary img {
  filter: brightness(0) invert(1);
}

.btn--primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(13, 170, 159, 0.35);
}

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

.btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn--white:hover {
  background-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(254, 254, 254, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header__logo img {
  height: 72px;
  width: auto;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  position: relative;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition);
}

.header__link:hover {
  color: var(--primary-color);
}

.header__link:hover::after {
  width: 100%;
}

.header__cta {
  flex-shrink: 0;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(
    160deg,
    var(--bg-primary) 0%,
    #eef9f8 50%,
    #e8f0f8 100%
  );
  overflow: hidden;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero__shape--1 {
  width: 500px;
  height: 500px;
  background: rgba(13, 170, 159, 0.12);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: rgba(26, 72, 124, 0.08);
  bottom: -50px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 200px;
  height: 200px;
  background: rgba(13, 170, 159, 0.15);
  top: 50%;
  left: 40%;
  animation: float 6s ease-in-out infinite;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 24px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(13, 170, 159, 0.1);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(13, 170, 159, 0.2);
}

.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: var(--line-height-heading);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: var(--line-height-relaxed);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
}

.hero__stat-label {
  font-size: 13px;
  color: var(--text-light);
}

.hero__visual {
  position: relative;
}

.hero__image-wrapper {
  position: relative;
}

.hero__carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 6/7;
}

.hero__carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: carouselFade 9s infinite;
}

.hero__carousel-image:nth-child(1) {
  animation-delay: 0s;
}

.hero__carousel-image:nth-child(2) {
  animation-delay: 3s;
}

.hero__carousel-image:nth-child(3) {
  animation-delay: 6s;
}

.hero__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 6/7;
  object-fit: cover;
}

.hero__glass-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-md);
  max-width: 280px;
}

.hero__glass-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.hero__glass-card strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.hero__glass-card p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

/* Objections */
.objections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.objections__text p {
  margin-bottom: 16px;
  line-height: var(--line-height-relaxed);
}

.objections__list {
  margin: 28px 0 32px;
}

.objections__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--text-dark);
  line-height: var(--line-height-base);
}

.objections__list svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.objections__image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.objections__image-card img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 28px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 170, 159, 0.1);
  color: var(--primary-color);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--primary-color);
  color: var(--white);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  line-height: var(--line-height-base);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image-wrapper img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
}
.about__experience-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.about__intro {
  font-size: 17px;
  margin-bottom: 28px;
  line-height: var(--line-height-relaxed);
}

.about__details {
  margin-bottom: 32px;
}

.about__detail {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.about__detail:last-child {
  border-bottom: none;
}

.about__detail h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.about__detail p {
  font-size: 14px;
}

.about__numbers {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.about__number-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
}

.about__number-label {
  font-size: 12px;
  color: var(--text-light);
}

/* Differentials */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diff-card {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

.diff-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.diff-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--line-height-base);
}

/* Exams */
#exames {
  padding-top: 80px;
  padding-bottom: 80px;
}

.exams-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.exam-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition);
}

.exam-item:hover {
  border-color: var(--primary-color);
  background: rgba(13, 170, 159, 0.04);
}

.exam-item__dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Cities */
.cities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

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

.cities__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  transition: transform var(--transition);
}

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

.cities__info {
  text-align: center;
}

.cities__map-visual svg {
  width: 100%;
  border-radius: var(--radius-lg);
}

.cities__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}

.city-tag {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: all var(--transition);
}

.city-tag:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Testimonials */
#depoimentos {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.testimonial-card {
  padding: 32px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.testimonial-card__google {
  margin-left: auto;
  flex-shrink: 0;
}

.testimonial-card__text {
  font-size: 14px;
  line-height: var(--line-height-relaxed);
  color: var(--text-medium);
  font-style: italic;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-color);
}

.faq__item:first-child {
  border-top: 1px solid var(--border-color);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--primary-color);
}

.faq__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-light);
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 600px;
  padding-bottom: 24px;
}

.faq__answer p {
  font-size: 15px;
  line-height: var(--line-height-relaxed);
  color: var(--text-light);
}

.faq__answer ul {
  margin-top: 12px;
  padding-left: 20px;
  list-style-type: disc;
}

.faq__answer li {
  font-size: 15px;
  line-height: var(--line-height-relaxed);
  color: var(--text-light);
  margin-bottom: 8px;
}

.faq__answer li:last-child {
  margin-bottom: 0;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact__card {
  padding: 32px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.contact__card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.contact__card p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: var(--line-height-base);
  margin-bottom: 16px;
}

.contact__card svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary-color);
}

.contact__phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.contact__phones a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

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

.contact__phones svg {
  color: var(--primary-color);
}

.contact__instagram {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
}

.contact__instagram:hover {
  color: var(--primary-hover);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.contact__map iframe {
  display: block;
}

.contact__form {
  padding: 36px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--bg-primary);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 170, 159, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__form .btn {
  grid-column: 1 / -1;
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: rgba(255, 255, 255, 0.9);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer__brand img {
  margin: 0 auto 12px;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 14px;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.footer__links li {
  list-style: none;
}
.footer__links li:hover {
  text-decoration: underline;
}
.desenvolvedor {
  font-style: italic;
}
.desenvolvedor:hover {
  text-decoration: underline;
  font-weight: 600;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float img {
  filter: brightness(0) invert(1);
}

@keyframes pulse-whatsapp {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Especialidades Tabs */
.especialidades-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 100%;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 0;
}

.tab-button {
  padding: 12px 20px;
  color: var(--text-medium);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  background-color: transparent;
  border-radius: var(--radius-md);
  border: 1px solid var(--primary-color);
}

.tab-button:hover {
  color: var(--primary-color);
}

.tab-button.active {
  color: var(--white);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.tabs-content {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 400px;
  position: relative;
  justify-content: center;
}

.tab-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  justify-content: center;
  justify-items: center;
  overflow: hidden;
  gap: 20px;
}

.tab-panel.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.tab-panel img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tab-panel.active img {
  animation: fadeInUp 0.4s ease-out;
}

/* Sinais de Alerta Grid */
.sinais-card-container {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.sinais-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.sinais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sinal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid rgba(13, 170, 159, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.sinal-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 170, 159, 0.08);
}

.sinal-item--double {
  grid-column: 1 / -1;
}

.sinal-icon-wrapper {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(13, 170, 159, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sinal-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Raças Predispostas Section */
.section--light-accent {
  background-color: rgba(13, 170, 159, 0.03);
  border-top: 1px solid rgba(13, 170, 159, 0.05);
  border-bottom: 1px solid rgba(13, 170, 159, 0.05);
}

.racas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.racas-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.racas-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.racas-card img {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.racas-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.racas-card__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 16px;
  background: rgba(13, 170, 159, 0.1);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  font-family: var(--font-heading);
}

.racas-card p {
  font-size: 14px;
  line-height: var(--line-height-base);
  color: var(--text-medium);
}
.map-container {
  width: 100%;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}