/* style-edat.css - Estilos para a Landing Page da EDAT */

/* CSS Variables */
:root {
  --primary: #ee2b8c;
  --primary-dark: #d61e7c;
  --background-light: #f8f6f7;
  --background-dark: #221019;
  --soft-grey: #eae8e9;
  --light-nude: #f7f2f4;
  --text-dark: #1b0d14;
  --text-gray: #6b7280;

  /* Tipografia Scale */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease;
}

.navbar-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
}

/* Navigation Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

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

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

.navbar-link:hover::after {
  width: 100%;
}

/* CTA Button no Navbar */
.navbar-cta {
  padding: 10px 20px;
  font-size: 0.95rem;
}

/* Hamburger Menu (Hidden by default) */
.navbar-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.navbar-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Back-to-Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(238, 43, 140, 0.3);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(238, 43, 140, 0.4);
}

/* Mobile Responsividade */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 24px;
    height: 70px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .navbar-menu.active {
    max-height: 350px;
  }

  .navbar-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 16px 24px;
  }

  .navbar-link {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--soft-grey);
    color: var(--text-dark);
  }

  .navbar-link:last-child {
    border-bottom: none;
  }

  .navbar-link::after {
    display: none;
  }

  .navbar-cta {
    width: calc(100% - 48px);
    margin: 16px 24px;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0 16px;
  }

  .navbar-menu.active {
    max-height: 320px;
  }

  .navbar-links {
    padding: 12px 16px;
  }

  .navbar-cta {
    width: calc(100% - 32px);
    margin: 12px 16px;
  }
}

/* Reset e Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Lexend", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

/* Container Principal */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Tipografia */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

p {
  margin: 0 0 1rem 0;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-family: "Lexend", sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 43, 140, 0.3);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* SVG Utilitários */
svg.icon-primary {
  fill: var(--primary);
  color: var(--primary);
}

/* FAB */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.fab:hover {
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .fab {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }
}

/* Seções */
section {
  padding: 80px 0;
}

/* Hero Section */
.hero-section {
  height: calc(100vh - 80px);
  position: relative;
  background: linear-gradient(rgba(35, 15, 22, 0.4), rgba(35, 15, 22, 0.6)),
    url("assets/images/bailarina-detem-sapatos-de-ponta.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  text-align: center;
  overflow: hidden;
}

.hero-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-title h1 {
  text-shadow: 0 0 16px #ee2b8c;
}
.hero-content h1 {
  font-weight: 700;
  font-size: var(--font-size-5xl);
  margin: 0;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.hero-subtitle a {
  color: #fff;
}
.hero-subtitle a:hover {
  color: #ee2b8c;
}

.hero-title-span {
  color: var(--primary, #ee2b8c);
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

.hero-location {
  margin-top: 1rem;
}

.hero-location p {
  margin: 0;
  font-size: 0.95rem;
}

.hero-location a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.hero-location a:hover {
  color: #ee2b8c;
}

@media (max-width: 768px) {
  .hero-section {
    height: calc(100vh - 70px);
    margin-top: 70px;
    min-height: 90vh;
	  background-position: right;
  }

  .hero-section .container {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}
/* FAB */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.fab:hover {
  transform: scale(1.1);
}

/* About Section */
.section-about {
  padding: 80px 0;
  background-color: #f6edf1;
}

.section-about .container {
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.about-title-subtitle {
  margin-bottom: 3rem;
}

.about-title {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: #1c0d12;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-subtitle {
  font-size: var(--font-size-xl);
  color: #666;
  font-weight: 500;
  margin: 0 auto;
}

.about-content-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about-text-left,
.about-text-right {
  flex: 1;
}

.about-text-left {
  text-align: left;
}

.about-text-right {
  text-align: left;
}

.about-text-left h2,
.about-text-right h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1c0d12;
  margin-bottom: 0.75rem;
}

.about-text-left p,
.about-text-right p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  opacity: 0.9;
}

.about-image {
  position: relative;
  width: 192px;
  height: 192px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 4px solid rgba(238, 43, 140, 0.2);
  background: rgba(248, 245, 246, 0.05);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(238, 43, 140, 0.3), transparent);
}

.about-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 9999px;
  background: #1c0d12;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.about-btn:hover {
  background: #ee2b8c;
  color: white;
  transform: scale(1.05);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.about-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Responsividade - About Section */
@media (min-width: 1024px) {
  .about-content-grid {
    flex-direction: row;
  }

  .about-text-left {
    text-align: right;
  }

  .about-text-right {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-image {
    width: 256px;
    height: 256px;
  }

  .about-text-left h2,
  .about-text-right h2 {
    font-size: 1.25rem;
  }

  .about-text-left p,
  .about-text-right p {
    font-size: 0.95rem;
  }

  .about-btn {
    height: 2.5rem;
    padding: 0 1.5rem;
    font-size: 0.8rem;
  }
}

/* Professor Section */
.section-teacher {
  background-color: #fcf8fa;
}
.teacher-image-texts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.teacher-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.6);
    max-width: 80%;

}

.teacher-bg-decoration {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 100%;
  height: 50vw;
  background: rgba(238, 43, 140, 0.1);
  border-radius: 1rem;
  transform: rotate(-2deg);
  z-index: 0;
}

.teacher-image img {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.teacher-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 20;
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 160px;
}

.teacher-badge p:first-child {
  font-size: 2rem;
  font-weight: bold;
  color: #ee2b8c;
  margin-bottom: 0.25rem;
}

.teacher-badge p:last-child {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
}

.teacher-texts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.teacher-header-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.teacher-line-span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.teacher-line {
  height: 2px;
  width: 32px;
  background-color: #ee2b8c;
}

.teacher-highlight {
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ee2b8c;
}

.teacher-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: #1c0d12;
}

.teacher-subtitle {
  font-size: var(--font-size-xl);
  color: #666;
  font-weight: 500;
}

.teacher-body-texts p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #1c0d12;
  opacity: 0.9;
}

.teacher-emphasis {
  font-weight: bold;
  color: #ee2b8c;
}
.teacher-emphasis:hover {
  color: #ee2b8c;
}

.teacher-qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.qualification-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(238, 43, 140, 0.05);
  border: 1px solid rgba(238, 43, 140, 0.2);
  font-size: 0.875rem;
  font-weight: 500;
  color: #1c0d12;
}

.pill-icon {
  color: #ee2b8c;
  font-size: 1.25rem;
}

.teacher-cta {
  padding-top: 0.5rem;
}

.teacher-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 200px;
  padding: 0.75rem 2rem;
  border: 2px solid #ee2b8c;
  border-radius: 9999px;
  background: transparent;
  color: #ee2b8c;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.teacher-btn:hover {
  background: #ee2b8c;
  color: white;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.teacher-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Responsividade - Professor Section */
@media (max-width: 1024px) {
  .teacher-image-texts {
    gap: 3rem;
  }

  .teacher-title {
    font-size: 2rem;
  }

  .teacher-subtitle {
    font-size: 1.125rem;
  }

  .teacher-body-texts p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .teacher-image-texts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .teacher-image {
    order: 2; /* Imagem vem depois dos textos */
    max-width: 100%;
    margin: 0 auto;
  }

  .teacher-texts {
    order: 1; /* Textos vêm primeiro */
    text-align: center;
  }

  .teacher-header-group {
    align-items: center;
  }

  .teacher-line-span {
    justify-content: center;
  }

  .teacher-qualifications {
    justify-content: center;
  }

  .teacher-cta {
    display: flex;
    justify-content: center;
  }

  .teacher-title {
    font-size: 1.75rem;
  }

  .teacher-subtitle {
    font-size: 1rem;
  }

  .teacher-body-texts p {
    font-size: 0.95rem;
  }

  .qualification-pill {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .teacher-btn {
    min-width: 180px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* New Studio Section */
.studio-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.studio-header {
  text-align: center;
  margin-bottom: 3rem;
}

.studio-subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ee2b8c;
  margin-bottom: 0.5rem;
}

.studio-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.studio-line {
  height: 4px;
  width: 48px;
  background-color: #ee2b8c;
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .studio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.studio-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.studio-description p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #666;
}

.studio-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .studio-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(238, 43, 140, 0.1);
  color: #ee2b8c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-text span {
  font-size: 0.875rem;
  color: #666;
}

.studio-cta {
  padding-top: 2rem;
}
.studio-cta a {
  gap: 1rem;
}

.studio-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.studio-main-img {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.studio-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.studio-main-img:hover img {
  transform: scale(1.05);
}

.studio-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border-left: 4px solid #ee2b8c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.studio-badge p:first-child {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ee2b8c;
  margin-bottom: 0.25rem;
}

.studio-badge p:last-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1c0d12;
  margin: 0;
}

.studio-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  height: 120px;
}

.studio-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.studio-thumbs img:hover {
  opacity: 0.8;
}

.thumb-overlay {
  position: relative;
}

.thumb-overlay img {
  filter: brightness(0.6);
}

.overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

/* Modality Section */
.modality-section {
  background-color: white;
  padding: 80px 0;
}

.modality-header {
  text-align: center;
  margin-bottom: 3rem;
}

.modality-header h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: 0.5rem;
}

.modality-header p {
  font-size: var(--font-size-lg);
  color: #666;
}

.modality-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.modality-card {
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: white;
}
.modality-01 {
  background-image: url(https://lh3.googleusercontent.com/aida-public/AB6AXuDJI_IplAZdyonF5R4wm-dnyf2522vnjPIwUrS1VrGgjhz9-hNZZy-i7Oop8mvfAKaMLXBS0Gm0byLmF0sGRXLFtWffPydOeUGTJjI1aom46dIKFRRGhGgOY78rrQk3jxM4nN0GJJhfI3MEUtKjCEDmIOHi1-ygV6fKaYyrGCybno6oaqHVf_4I8bB3MFOX_c0u6V4gN_fhmt3voIr2LqqqmYHCVYCL8Y6LUXCqM63t0scsL772seRwTj9AoJ_YAYbAebJ0wPu4XSA);
}
.modality-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.modality-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(250, 51, 121, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ee2b8c;
}

.modality-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.modality-card p {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

.modality-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modality-card .schedule {
  font-size: 0.875rem;
  color: #666;
}

/* Pricing Section */
.pricing-section {
  background-color: var(--background-light);
  padding: 80px 0;
}

.pricing-header h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pricing-card {
  padding: 2rem;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: white;
}

.pricing-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-card p {
  font-size: 0.875rem;
  color: #666;
}

.pricing-card .price {
  text-align: right;
}

.pricing-card .price .currency {
  font-size: 0.875rem;
}

.pricing-card .price .amount {
  font-size: 2rem;
  font-weight: 700;
}

.pricing-card .price .period {
  font-size: 0.875rem;
  color: #666;
}

/* Footer Section */
.footer-section {
  background-color: #1c0d12;
  color: white;
  padding: 80px 0 40px;
}

.footer-contact h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.footer-map {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
}

.footer-contact-item:last-child {
  border-bottom: none;
}

.footer-contact-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(250, 51, 121, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ee2b8c;
}

/* Responsividade */

/* Tablet */

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.125rem;
  }

  section {
    padding: 60px 0;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .professor-content h1 {
    font-size: 1.75rem;
  }

  .modality-header h2 {
    font-size: 1.75rem;
  }

  .pricing-header h2 {
    font-size: 1.75rem;
  }

  .footer-contact h2 {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1rem;
  }

  section {
    padding: 40px 0;
  }

  .about-content h2 {
    font-size: 1.75rem;
  }

  .studio-content {
    margin: 1rem;
    padding: 1.5rem;
  }

  .studio-features {
    grid-template-columns: 1fr;
  }

  .professor-content h1 {
    font-size: 1.5rem;
  }

  .professor-cards {
    grid-template-columns: 1fr;
  }

  .modality-header h2 {
    font-size: 1.5rem;
  }

  .modality-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .modality-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .pricing-card .price {
    text-align: left;
  }

  .footer-contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-social {
    gap: 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .fab {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .professor-card {
    padding: 1rem;
  }

  .modality-card {
    padding: 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .footer-links a {
    padding: 0.5rem 0;
  }
}

/* Modal de Galeria */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 80vw;
  height: 80vh;
  max-width: 1200px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: -80px;
}

.next-btn {
  right: -80px;
}

@media (max-width: 768px) {
  .close-btn {
    top: 10px;
    right: 10px;
    font-size: 30px;
  }

  .nav-btn {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

/* Schedule Section */
.section-schedule {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff;
  overflow-x: hidden;
  background-color: #fcf8fa;
}

.schedule-bg-decoration-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  height: 500px;
  width: 500px;
  border-radius: 50%;
  background: rgba(238, 43, 140, 0.05);
  filter: blur(120px);
  pointer-events: none;
}

.schedule-bg-decoration-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  height: 400px;
  width: 400px;
  border-radius: 50%;
  background: var(--light-nude);
  filter: blur(100px);
  pointer-events: none;
}

.schedule-layout-container {
  display: flex;
  height: 100%;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

.schedule-layout-content-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .schedule-layout-content-container {
    padding: 5rem 0;
  }
}

.schedule-layout-content-container > div {
  width: 100%;
  max-width: 1024px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.schedule-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.schedule-line {
  height: 4px;
  width: 48px;
  background-color: #ee2b8c;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.schedule-header h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: #1b0d14;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .schedule-header h2 {
    font-size: var(--font-size-4xl);
  }
}

.schedule-header p {
  color: #6b7280;
  font-size: var(--font-size-base);
  font-weight: 300;
  max-width: 512px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .schedule-header p {
    font-size: 1.125rem;
  }
}

.schedule-table-container {
  width: 100%;
  container-type: inline-size;
}

.schedule-table-wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--soft-grey);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

@media (max-width: 1024px) {
  .schedule-table-wrapper {
    overflow-x: auto;
  }
}

.schedule-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  margin-block-end: 0;
}

.schedule-table thead tr {
  background: #f7f2f4;
  border-bottom: 1px solid #eae8e9;
}

.schedule-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  width: 40%;
}

.schedule-table th:nth-child(2),
.schedule-table th:nth-child(3) {
  width: 30%;
}

.th-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.th-icon {
  font-family: "Material Symbols Outlined";
  font-size: 20px;
  color: #ee2b8c;
}

.schedule-table tbody {
  background: white;
}

.schedule-table tbody tr {
  border-bottom: 1px solid var(--soft-grey);
  transition: background-color 0.2s ease;
}

.schedule-table tbody tr:hover {
  background: rgba(247, 242, 244, 0.5);
}

.schedule-table td {
  padding: 1.5rem 1.5rem;
  color: #374151;
  font-size: 1rem;
}

.schedule-table td:first-child {
  font-weight: 500;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .schedule-table td:first-child {
    font-size: 1.125rem;
  }
}

.td-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #6b7280;
  margin-top: 0.25rem;
}

.time-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  background: var(--light-nude);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid rgba(238, 43, 140, 0.2);
}

.mobile-hint {
  padding: 1rem 1.5rem;
  background: rgba(247, 242, 244, 0.3);
  border-top: 1px solid #eae8e9;
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {
  .mobile-hint {
    display: block;
  }
}

.schedule-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.availability-notice {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ee2b8c;
  background: rgba(238, 43, 140, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-align: center;
  margin: 0;
}

.schedule-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-top: 0.5rem;
}

.schedule-btn {
  display: flex;
  width: 100%;
  max-width: 384px;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 12px;
  background: var(--text-dark);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.schedule-btn:hover {
  background: #ee2b8c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-icon {
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  transition: transform 0.3s ease;
}

.schedule-btn:hover .btn-icon {
  transform: scale(1.1);
}

/* Benefits Section */
.section-benefits {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: #f6edf1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  font-family: "Manrope", sans-serif;
}

.benefits-container {
  width: 100%;
  max-width: 1440px;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .benefits-container {
    padding: 0 2.5rem;
  }
}

@media (min-width: 1024px) {
  .benefits-container {
    padding: 0 10rem;
  }
}

.benefits-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.benefits-line-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-line {
  height: 4px;
  width: 48px;
  background-color: #ff69b4;
  border-radius: 2px;
}

.benefits-subtitle {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ff69b4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.benefits-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: #2c2c2c;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .benefits-title {
    font-size: var(--font-size-5xl);
  }
}

.benefits-title-highlight {
  color: #ff69b4;
}

.benefits-images-grid {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .benefits-images-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}

.benefits-bg-decoration-1 {
  position: absolute;
  top: -20%;
  left: -10%;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  background: rgba(255, 105, 180, 0.1);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.benefits-bg-decoration-2 {
  position: absolute;
  bottom: -20%;
  right: -10%;
  height: 250px;
  width: 250px;
  border-radius: 50%;
  background: rgba(147, 51, 234, 0.2);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.benefits-image-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .benefits-image-card {
    aspect-ratio: 4/5;
  }
}

.benefits-image-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefits-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits-main-text {
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: #6a6a6a;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .benefits-main-text {
    font-size: var(--font-size-xl);
  }
}

.benefits-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin: 0 auto;
}

.benefits-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 400px;
}

.benefits-check-icon {
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  color: #ff69b4;
  margin-top: 2px;
  flex-shrink: 0;
}

.benefits-feature p {
  font-size: 1rem;
  color: #6a6a6a;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.benefits-cta {
  padding-top: 1rem;
}

.benefits-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: #ff69b4;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefits-btn:hover {
  background: rgba(255, 105, 180, 0.9);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

.benefits-btn-icon {
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  transition: transform 0.3s ease;
}

.benefits-btn:hover .benefits-btn-icon {
  transform: translateX(4px);
}

/* Testimonials Section */
.section-testimonials {
  padding: 80px 0;
  background-color: #ffffff;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .testimonials-container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-container {
    padding: 0 4rem;
  }
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

@media (min-width: 768px) {
  .testimonials-title {
    font-size: 2.5rem;
  }
}

.testimonials-title-accent {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 4px;
  background-color: #ee2b8c;
  border-radius: 2px;
}

.testimonials-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  font-weight: 500;
  max-width: 512px;
  margin: 0 auto;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .testimonials-subtitle {
    font-size: 1.25rem;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Carrossel para mobile */
@media (max-width: 767px) {
  .testimonials-grid {
    display: flex;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    margin-right: 1rem;
  }

  .testimonial-card:last-child {
    margin-right: 0;
  }
}

/* Controles do carrossel */
.testimonials-carousel-controls {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .testimonials-carousel-controls {
    display: flex;
  }
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ee2b8c;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(238, 43, 140, 0.3);
}

.carousel-btn:hover {
  background: #d63384;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(238, 43, 140, 0.4);
}

.carousel-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #ee2b8c;
  transform: scale(1.2);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #f7f2f4;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon-bg {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon-bg {
  opacity: 0.2;
}

.testimonial-quote-icon {
  font-family: "Material Symbols Outlined";
  font-size: 4rem;
  color: #ee2b8c;
}

.testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-quote-start {
  margin-bottom: 1rem;
}

.testimonial-quote-icon-small {
  font-family: "Material Symbols Outlined";
  font-size: 1.875rem;
  color: #ee2b8c;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1.125rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: auto;
}

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.testimonial-author-role {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  margin: 0;
}

.testimonials-cta {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}

.testimonials-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  background-color: #ee2b8c;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(238, 43, 140, 0.3);
}

.testimonials-btn:hover {
  background-color: #d63384;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(238, 43, 140, 0.4);
}

.testimonials-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(238, 43, 140, 0.2);
}

/* Responsividade - Testimonials Section */
@media (max-width: 767px) {
  .section-testimonials {
    padding: 60px 0;
  }

  .testimonials-container {
    padding: 0 1rem;
  }

  .testimonials-header {
    margin-bottom: 3rem;
  }

  .testimonials-title {
    font-size: 1.75rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonial-author {
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .testimonial-author-avatar {
    width: 40px;
    height: 40px;
  }

  .testimonial-author-name {
    font-size: 0.9rem;
  }

  .testimonial-author-role {
    font-size: 0.8rem;
  }

  .testimonials-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ===== SECTION PRICING ===== */
.section-pricing {
  position: relative;
  background-color: #f6edf1;

  width: 100%;
  padding: 2rem 0 3rem 0;
  background-color: white;
  overflow: hidden;
}

.pricing-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.pricing-blur-top {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(247, 242, 244, 0.5);
  filter: blur(96px);
}

.pricing-blur-bottom {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(238, 43, 140, 0.05);
  filter: blur(96px);
}

.pricing-container {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}
.pricing-line {
  height: 4px;
  width: 48px;
  background-color: #ee2b8c;
  border-radius: 2px;
  margin: 0 auto 1rem;
}
.pricing-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--text-dark, #1b0d14);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.pricing-title-highlight {
  color: var(--primary, #ee2b8c);
}

.pricing-subtitle {
  font-size: var(--font-size-lg);
  color: #6b7280;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

.pricing-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  align-items: start;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .pricing-content-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

/* Pricing Table */
.pricing-table-wrapper {
  background-color: white;
  border-radius: 1rem;
  border: 1px solid var(--soft-grey, #eae8e9);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.pricing-table-container {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-block-end: 0;
}

.pricing-table-header {
  background-color: #f7f2f4;
  border-bottom: 1px solid #eae8e9;
}

.pricing-table-th {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  border-right: none;
}

.pricing-table-th.text-right {
  text-align: center;
}

.pricing-table-body {
  border-top: 1px solid var(--soft-grey, #eae8e9);
}

.pricing-table-row {
  border-bottom: 1px solid var(--soft-grey, #eae8e9);
  background-color: white;
  transition: background-color 0.2s ease;
}

.pricing-table-row:hover {
  background-color: rgba(238, 43, 140, 0.03);
}

.pricing-table-cell {
  padding: 1rem 1.5rem;
  font-size: var(--font-size-sm);
  color: var(--text-dark, #1b0d14);
  font-weight: 500;
  display: table-cell;
  text-align: center;
  border-right: none;
}

.pricing-table-cell.text-right {
  text-align: center;
  font-weight: 600;
}

/* Right Column: Info Cards */
.pricing-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-info-box {
  background-color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--soft-grey, #eae8e9);
}

.pricing-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark, #1b0d14);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-info-title .material-symbols-outlined {
  color: var(--primary, #ee2b8c);
  font-size: 1.5rem;
}

.pricing-info-text {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}

.pricing-info-text strong {
  color: var(--text-dark, #1b0d14);
  font-weight: 600;
}

/* Trial Card */
.pricing-trial-card {
  background: linear-gradient(135deg, var(--primary, #ee2b8c) 0%, #c2186c 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(238, 43, 140, 0.2);
}

.pricing-trial-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.pricing-trial-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.pricing-trial-icon {
  opacity: 0.8;
}

.pricing-trial-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-trial-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1;
}

.pricing-trial-note {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.pricing-trial-note .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.125rem;
}

/* Admin Card */
.pricing-admin-card {
  background-color: rgba(247, 242, 244, 1);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--soft-grey, #eae8e9);
}

.pricing-admin-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark, #1b0d14);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--soft-grey, #eae8e9);
}

.pricing-admin-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-admin-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.pricing-admin-item-text {
  flex: 1;
}

.pricing-admin-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark, #1b0d14);
  margin-bottom: 0.25rem;
}

.pricing-admin-sublabel {
  font-size: 0.75rem;
  color: #6b7280;
}

.pricing-admin-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary, #ee2b8c);
  white-space: nowrap;
  margin-left: 1rem;
}

.pricing-recess-policy {
  padding-top: 1rem;
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.6;
}

.pricing-recess-policy .material-symbols-outlined {
  flex-shrink: 0;
  color: #6b7280;
  font-size: 1.125rem;
  margin-top: 0.125rem;
}

.pricing-recess-policy strong {
  color: var(--text-dark, #1b0d14);
}

/* CTA Section */
.pricing-cta-section {
  display: flex;
  flex-direction: column;
}

.pricing-cta-button {
  width: 100%;
  padding: 1rem;
  background-color: var(--text-dark, #1b0d14);
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.pricing-cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.pricing-cta-button .material-symbols-outlined {
  font-size: 1.125rem;
}

.pricing-cta-subtitle {
  text-align: center;
  font-size: 0.625rem;
  color: #6b7280;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Footer Info */
.pricing-footer-info {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--soft-grey, #eae8e9);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .pricing-footer-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.pricing-footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark, #1b0d14);
}

.pricing-footer-location .material-symbols-outlined {
  color: var(--primary, #ee2b8c);
}

.pricing-footer-tags {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark, #1b0d14);
}

/* ===== FOOTER ===== */
.edat-footer {
  position: relative;
  width: 100%;
  background-color: #fcf8fa;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid #e7cfdb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-right: 1rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: var(--primary, #ee2b8c);
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-brand-icon .material-symbols-outlined {
  font-size: 1.25rem;
}

.footer-brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.footer-brand-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background-color: #fff;
  color: #6b7280;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  border-color: var(--primary, #ee2b8c);
  background-color: var(--primary, #ee2b8c);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social-link .material-symbols-outlined {
  font-size: 1.125rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary, #ee2b8c);
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: var(--primary, #ee2b8c);
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary, #ee2b8c);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item .material-symbols-outlined {
  color: var(--primary, #ee2b8c);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--primary, #ee2b8c);
  border-bottom-color: var(--primary, #ee2b8c);
}

.adress-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.adress-link:hover {
  text-decoration: underline;
  color: var(--primary, #ee2b8c);
}

.footer-map {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-map-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary, #ee2b8c);
}

.footer-map-container {
  position: relative;
  width: 100%;
  height: 10rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.5s ease;
}

.footer-map-container:hover {
  filter: grayscale(0);
  opacity: 1;
}

.footer-map-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  opacity: 0.8;
  transition: all 0.5s ease;
}

.footer-map-container:hover .footer-map-bg {
  filter: grayscale(0);
  opacity: 1;
}

.footer-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.footer-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-map-pin::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary, #ee2b8c);
  opacity: 0.75;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.footer-map-pin-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: var(--primary, #ee2b8c);
}

.footer-map-pin-inner .material-symbols-outlined {
  font-size: 1.25rem;
}

.footer-map-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-map-container:hover .footer-map-link {
  opacity: 1;
}

.footer-map-link span {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary, #ee2b8c);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #e7cfdb;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: left;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  font-size: 0.75rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--primary, #ee2b8c);
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ===== RESPONSIVE PRICING SECTION ===== */

/* Tablet and smaller screens */
@media (max-width: 1024px) {
  .pricing-content-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table-wrapper {
    order: 1;
  }

  .pricing-info-column {
    order: 2;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .section-pricing {
    padding: 2.5rem 0 2rem 0;
  }

  .pricing-header {
    margin-bottom: 2.5rem;
  }

  .pricing-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .pricing-subtitle {
    font-size: 0.95rem;
  }

  .pricing-table-wrapper {
    margin-bottom: 1.5rem;
  }

  .pricing-table-th {
    padding: 1rem 1rem;
    font-size: 0.7rem;
  }

  .pricing-table-cell {
    padding: 0.875rem 1rem;
    font-size: 0.8rem;
  }

  .pricing-badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.4rem;
  }

  .pricing-info-box {
    padding: 1.25rem;
  }

  .pricing-info-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .pricing-info-text {
    font-size: 0.8rem;
  }

  .pricing-trial-card {
    padding: 1.25rem;
  }

  .pricing-trial-title {
    font-size: 1.25rem;
  }

  .pricing-trial-price {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .pricing-admin-card {
    padding: 1.5rem;
  }

  .pricing-admin-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .pricing-admin-item {
    gap: 0.5rem;
  }

  .pricing-admin-value {
    font-size: 1.1rem;
    margin-left: 0.5rem;
  }

  .pricing-recess-policy {
    font-size: 0.7rem;
  }

  .pricing-cta-button {
    padding: 0.875rem;
    font-size: 0.8rem;
  }

  .pricing-cta-subtitle {
    font-size: 0.6rem;
    margin-top: 0.75rem;
  }

  .pricing-footer-info {
    gap: 1rem;
    font-size: 0.7rem;
  }

  .pricing-footer-tags {
    gap: 1rem;
    font-size: 0.65rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .section-pricing {
    padding: 2rem 0 1.5rem 0;
  }

  .pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .pricing-subtitle {
    font-size: 0.85rem;
  }

  .pricing-table-th {
    padding: 0.75rem 0.75rem;
    font-size: 0.65rem;
  }

  .pricing-table-cell {
    padding: 0.75rem 0.75rem;
    font-size: 0.75rem;
  }

  .pricing-info-title {
    font-size: 1rem;
  }

  .pricing-trial-price {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }
}
