@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #4A4A4A;
  background-color: #FAFAF8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: #2D3436;
  line-height: 1.3;
}

a {
  color: #3BA89A;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #2E9485;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2D3436;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: #7F8C8D;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary {
  background-color: #3BA89A;
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: #2E9485;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.btn-secondary:active {
  transform: translateY(0);
}
.btn-secondary {
  background-color: transparent;
  color: #3BA89A;
  border: 2px solid #3BA89A;
}
.btn-secondary:hover {
  background-color: #3BA89A;
  color: #FFFFFF;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.btn-accent:active {
  transform: translateY(0);
}
.btn-accent {
  background-color: #E8B86D;
  color: #FFFFFF;
}
.btn-accent:hover {
  background-color: rgb(225.0591715976, 162.573964497, 64.9408284024);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay.active {
  display: flex;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  z-index: 100;
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.header__logo .logo-icon {
  width: 40px;
  height: 40px;
  background: #3BA89A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.header__logo .logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D3436;
}
.header__logo .logo-text span {
  color: #3BA89A;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: right 0.3s ease;
    z-index: 200;
  }
  .header__nav.active {
    right: 0;
  }
}

.header__nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A4A4A;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3BA89A;
  transition: width 0.3s ease;
}
.header__nav-link:hover, .header__nav-link.active {
  color: #3BA89A;
}
.header__nav-link:hover::after, .header__nav-link.active::after {
  width: 100%;
}
@media (max-width: 767px) {
  .header__nav-link {
    font-size: 1.25rem;
  }
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}
.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.header__cta:active {
  transform: translateY(0);
}
.header__cta {
  background-color: #3BA89A;
  color: #FFFFFF;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}
.header__cta:hover {
  background-color: #2E9485;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 300;
}
@media (max-width: 767px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  width: 24px;
  height: 2px;
  background: #2D3436;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav-overlay {
  display: none;
}
@media (max-width: 767px) {
  .header__nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 150;
    display: none;
  }
  .header__nav-overlay.active {
    display: block;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #FAFAF8 0%, #EDE6D6 50%, #F5F1EB 100%);
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 168, 154, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
}

.hero__text .hero__badge {
  display: inline-block;
  background: rgba(59, 168, 154, 0.1);
  color: #3BA89A;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: "Poppins", sans-serif;
}
.hero__text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #2D3436;
}
.hero__text h1 span {
  color: #3BA89A;
}
@media (max-width: 767px) {
  .hero__text h1 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero__text h1 {
    font-size: 2.5rem;
  }
}
.hero__text p {
  font-size: 1.125rem;
  color: #7F8C8D;
  margin-bottom: 3rem;
  max-width: 500px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .hero__text p {
    margin: 0 auto 3rem;
  }
}

.hero__buttons {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .hero__buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(45deg, #7DCFBF, #3BA89A, #2E9485);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 168, 154, 0.4);
}

.hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero__image {
    order: -1;
  }
}

.hero__image-wrapper {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .hero__image-wrapper {
    width: 250px;
    height: 250px;
  }
}
.hero__image-wrapper .hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 80%);
}
.hero__image-wrapper .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.hero__image-wrapper .placeholder-img .placeholder-icon {
  font-size: 4rem;
  opacity: 0.9;
}
.hero__image-wrapper .placeholder-img .placeholder-text {
  font-size: 0.875rem;
  opacity: 0.8;
  font-weight: 400;
}

.hero__float-element {
  position: absolute;
  background: #FFFFFF;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}
.hero__float-element .float-icon {
  font-size: 1.5rem;
}
.hero__float-element--top {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}
@media (max-width: 767px) {
  .hero__float-element--top {
    top: -5%;
    right: 5%;
  }
}
.hero__float-element--bottom {
  bottom: 10%;
  left: -10%;
  animation-delay: 1.5s;
}
@media (max-width: 767px) {
  .hero__float-element--bottom {
    bottom: -5%;
    left: 5%;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.about {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .about {
    padding: 4rem 0;
  }
}
.about {
  background: #FFFFFF;
}

.about__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about__with-photo {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 6rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about__with-photo {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about__perfil {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .about__perfil {
    order: -1;
    border-radius: 0.75rem;
    max-height: 380px;
    object-position: top;
  }
}

.about__single {
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about__single {
    margin: 0;
  }
}
.about__single h3 {
  font-size: 1.5rem;
  color: #3BA89A;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.about__single h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.about__single p {
  color: #7F8C8D;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about__photo {
  position: relative;
}
.about__photo .photo-wrapper {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #EDE6D6, #7DCFBF);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .about__photo .photo-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }
}
.about__photo .photo-wrapper .about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__photo .photo-wrapper .placeholder-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #2E9485;
}
.about__photo .photo-wrapper .placeholder-photo .photo-icon {
  font-size: 4rem;
  opacity: 0.6;
}
.about__photo .photo-wrapper .placeholder-photo .photo-text {
  font-size: 0.875rem;
  opacity: 0.6;
  font-family: "Poppins", sans-serif;
}
.about__photo .photo-decoration {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  border: 3px solid #7DCFBF;
  border-radius: 1rem;
  z-index: -1;
}
@media (max-width: 767px) {
  .about__photo .photo-decoration {
    display: none;
  }
}

.about__info h3 {
  font-size: 1.5rem;
  color: #3BA89A;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.about__info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.about__info p {
  color: #7F8C8D;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.specialty-tag {
  background: rgba(59, 168, 154, 0.1);
  color: #2E9485;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.about__timeline-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #7DCFBF, #3BA89A, #7DCFBF);
}
@media (max-width: 767px) {
  .timeline::before {
    left: 20px;
  }
}

.timeline__item {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  padding-right: 3rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline__item::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 1rem;
  width: 16px;
  height: 16px;
  background: #3BA89A;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.timeline__item:nth-child(even) {
  justify-content: flex-start;
  margin-left: 50%;
  padding-left: 3rem;
  padding-right: 0;
}
.timeline__item:nth-child(even)::after {
  left: -8px;
  right: auto;
}
@media (max-width: 767px) {
  .timeline__item {
    width: 100%;
    margin-left: 0 !important;
    padding-left: 50px !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }
  .timeline__item::after {
    left: 13px !important;
    right: auto !important;
  }
}

.timeline__card {
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  transition: all 0.3s ease;
}
.timeline__card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.timeline__card {
  max-width: 350px;
}
.timeline__card .timeline__year {
  display: inline-block;
  background: #3BA89A;
  color: #FFFFFF;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
}
.timeline__card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.timeline__card .timeline__institution {
  color: #3BA89A;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.timeline__card p {
  color: #7F8C8D;
  font-size: 0.875rem;
  line-height: 1.6;
}

.trajectory {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .trajectory {
    padding: 4rem 0;
  }
}
.trajectory {
  background: #FFFFFF;
}

.trajectory__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.trajectory__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 767px) {
  .trajectory__layout {
    grid-template-columns: 1fr;
  }
}

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

.trajectory__description {
  position: sticky;
  top: 100px;
}
.trajectory__description p {
  font-size: 1.125rem;
  color: #7F8C8D;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.trajectory__description p:last-child {
  margin-bottom: 0;
}

.trajectory__item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #FAFAF8;
  border-radius: 0.75rem;
  border-left: 4px solid #3BA89A;
  transition: all 0.3s ease;
  align-items: center;
}
.trajectory__item:last-child:nth-child(odd) {
  grid-column: 1/-1;
  max-width: 600px;
  justify-self: center;
  width: 100%;
}
@media (max-width: 767px) {
  .trajectory__item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
    justify-self: auto;
  }
}

.trajectory__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(59, 168, 154, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trajectory__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.trajectory__text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #2D3436;
}
.trajectory__text p {
  display: none;
}

.trajectory__item:last-child:nth-child(odd) {
  grid-column: auto;
  max-width: 100%;
  justify-self: auto;
}

.trajectory-modal {
  position: fixed;
  inset: 0;
  background: rgba(45, 52, 54, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.trajectory-modal.active {
  opacity: 1;
  pointer-events: all;
}
.trajectory-modal.active .trajectory-modal__box {
  transform: scale(1);
}
.trajectory-modal__box {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 4rem;
  max-width: 620px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.25s ease;
  max-height: 80vh;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .trajectory-modal__box {
    padding: 2rem;
  }
}
.trajectory-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #7F8C8D;
  line-height: 1;
  transition: color 0.2s ease;
}
.trajectory-modal__close:hover {
  color: #2D3436;
}
.trajectory-modal__icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: rgba(59, 168, 154, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.trajectory-modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D3436;
  margin-bottom: 1.5rem;
  border-left: 4px solid #3BA89A;
  padding-left: 1rem;
}
.trajectory-modal__body p {
  font-size: 0.875rem;
  color: #7F8C8D;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.trajectory-modal__body p:last-child {
  margin-bottom: 0;
}

.certificates {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .certificates {
    padding: 4rem 0;
  }
}
.certificates {
  background: #F5F1EB;
}

.certificates__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.certificates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .certificates__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .certificates__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.certificate-card {
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  transition: all 0.3s ease;
}
.certificate-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.certificate-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.certificate-card:hover .certificate-card__image img,
.certificate-card:hover .certificate-placeholder {
  transform: scale(1.05);
}
.certificate-card:hover .certificate-card__expand {
  opacity: 1;
}

.certificate-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #EDE6D6, rgb(162.2471910112, 220.7528089888, 209.3370786517));
}
.certificate-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.certificate-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}
.certificate-placeholder .cert-icon {
  font-size: 3rem;
  opacity: 0.4;
}
.certificate-placeholder .cert-text {
  font-size: 0.875rem;
  color: #7F8C8D;
  opacity: 0.6;
  font-family: "Poppins", sans-serif;
}
.certificate-placeholder--large {
  min-height: 400px;
  background: linear-gradient(135deg, #EDE6D6, rgb(162.2471910112, 220.7528089888, 209.3370786517));
  border-radius: 0.75rem;
}
.certificate-placeholder--large .cert-icon {
  font-size: 5rem;
}
.certificate-placeholder--large .cert-text {
  font-size: 1rem;
}

.certificate-card__info {
  padding: 1.5rem;
  flex: 1;
}
.certificate-card__info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.certificate-card__issuer {
  font-size: 0.875rem;
  color: #3BA89A;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.certificate-card__year {
  display: inline-block;
  background: rgba(59, 168, 154, 0.1);
  color: #2E9485;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.certificate-card__expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}
.certificate-card__expand:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.certificate-card__expand:active {
  transform: translateY(0);
}
.certificate-card__expand {
  width: 100%;
  padding: 1rem;
  background: #FAFAF8;
  color: #3BA89A;
  border-radius: 0;
  font-size: 0.875rem;
  opacity: 0.7;
  border-top: 1px solid rgb(239.375, 239.375, 233.125);
}
.certificate-card__expand:hover {
  background: #3BA89A;
  color: #FFFFFF;
  opacity: 1;
  transform: none;
  box-shadow: none;
}

.certificate-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  padding: 2rem;
}
.certificate-modal.active {
  display: flex;
}

.certificate-modal__content {
  background: #FFFFFF;
  border-radius: 1rem;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.certificate-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: #7F8C8D;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.certificate-modal__close:hover {
  background: #FFFFFF;
  color: #2D3436;
  transform: scale(1.1);
}

.certificate-modal__image {
  width: 100%;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}
.certificate-modal__image img {
  width: 100%;
  height: auto;
  display: block;
}

.certificate-modal__info {
  padding: 2rem;
  text-align: center;
}
.certificate-modal__info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.certificate-modal__info p {
  color: #3BA89A;
  font-weight: 500;
}

.plans {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .plans {
    padding: 4rem 0;
  }
}
.plans {
  background: #F5F1EB;
}

.plans__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.plans__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto 4rem;
}
@media (max-width: 767px) {
  .plans__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.plans__description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.plans__description p {
  color: #4A4A4A;
  line-height: 1.8;
  font-size: 1rem;
}

.plans__note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(59, 168, 154, 0.08);
  border-left: 4px solid #3BA89A;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1.5rem;
  margin-top: 0.5rem;
}
.plans__note .plans__note-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.plans__note p {
  color: #4A4A4A;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.carousel__track-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
}

.carousel__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel__track .price-card {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel__btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #3BA89A;
  color: #3BA89A;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel__btn:hover {
  background: #3BA89A;
  color: #FFFFFF;
}
.carousel__btn--prev {
  left: -20px;
}
.carousel__btn--next {
  right: -20px;
}
@media (max-width: 767px) {
  .carousel__btn--prev {
    left: -12px;
  }
  .carousel__btn--next {
    right: -12px;
  }
}

.carousel__dots {
  display: flex;
  gap: 0.5rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(59, 168, 154, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel__dot--active {
  background: #3BA89A;
  transform: scale(1.3);
}

.price-card {
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  transition: all 0.3s ease;
}
.price-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.price-card {
  text-align: center;
  border: 2px solid #3BA89A;
  position: relative;
  overflow: hidden;
}
.price-card__badge {
  background: #3BA89A;
  color: #FFFFFF;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: -2rem -2rem 2rem;
  display: block;
}
.price-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.price-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.price-card__desc {
  font-size: 0.875rem;
  color: #7F8C8D;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.price-card__amount {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2D3436;
  margin-bottom: 1.5rem;
}
.price-card__amount .currency {
  font-size: 1.25rem;
  vertical-align: super;
}
.price-card__period {
  display: block;
  color: #7F8C8D;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.25rem;
}
.price-card__features {
  text-align: left;
  margin-bottom: 2rem;
}
.price-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #4A4A4A;
  border-bottom: 1px solid rgb(241.5, 241.5, 236.1);
}
.price-card__features li:last-child {
  border-bottom: none;
}
.price-card__features li span {
  color: #27AE60;
  font-weight: 700;
  flex-shrink: 0;
}
.price-card__btn {
  width: 100%;
}

.plans__agenda {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 4rem;
  border-top: 1px solid rgb(237.25, 237.25, 230.15);
  align-items: start;
}
@media (max-width: 767px) {
  .plans__agenda {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.plans__agenda-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.plans__agenda-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2D3436;
}
.plans__agenda-text p {
  color: #7F8C8D;
  line-height: 1.8;
  font-size: 1rem;
}

.plans__agenda-contact {
  background: #FFFFFF;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.plans__agenda-contact h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D3436;
  padding-bottom: 1rem;
  border-bottom: 2px solid #3BA89A;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7F8C8D;
  font-family: "Poppins", sans-serif;
}
.contact-item a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #3BA89A;
  word-break: break-all;
}
.contact-item a:hover {
  color: #2E9485;
  text-decoration: underline;
}

.plans__agenda-reply {
  font-size: 0.875rem;
  color: #7F8C8D;
  font-style: italic;
  margin: 0;
}

.session-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.session-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border: 2px solid #F5F1EB;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  gap: 1rem;
}
.session-option input[type=radio] {
  display: none;
}
.session-option:hover {
  border-color: #7DCFBF;
}
.session-option--selected {
  border-color: #3BA89A;
  background: rgba(59, 168, 154, 0.06);
}
.session-option__name {
  font-weight: 600;
  font-size: 1.125rem;
  color: #2D3436;
  flex: 1;
}
.session-option__price {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2E9485;
  white-space: nowrap;
}
.session-option__price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: #7F8C8D;
}

.booking {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .booking {
    padding: 4rem 0;
  }
}
.booking {
  background: #FFFFFF;
}

.booking__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .booking__grid {
    grid-template-columns: 1fr;
  }
}

.calendar {
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  transition: all 0.3s ease;
}
.calendar:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.calendar__header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.calendar__nav-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(59, 168, 154, 0.1);
  color: #3BA89A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.125rem;
}
.calendar__nav-btn:hover {
  background: #3BA89A;
  color: #FFFFFF;
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.5rem;
}
.calendar__weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7F8C8D;
  padding: 0.5rem 0;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

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

.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A4A4A;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.calendar__day:hover:not(.calendar__day--disabled):not(.calendar__day--empty) {
  background: rgba(59, 168, 154, 0.1);
  color: #3BA89A;
}
.calendar__day--today {
  background: rgba(59, 168, 154, 0.1);
  color: #3BA89A;
  font-weight: 700;
}
.calendar__day--selected {
  background: #3BA89A !important;
  color: #FFFFFF !important;
  font-weight: 700;
}
.calendar__day--disabled {
  color: rgb(218.125, 218.125, 203.375);
  cursor: not-allowed;
}
.calendar__day--empty {
  cursor: default;
}

.timeslots {
  margin-top: 1.5rem;
  display: none;
}
.timeslots.active {
  display: block;
}
.timeslots h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #2D3436;
}

.timeslots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .timeslots__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.timeslot {
  padding: 0.5rem 1rem;
  border: 2px solid rgb(233, 233, 224.2);
  border-radius: 0.5rem;
  background: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A4A4A;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.timeslot:hover {
  border-color: #3BA89A;
  color: #3BA89A;
}
.timeslot--selected {
  background: #3BA89A;
  border-color: #3BA89A;
  color: #FFFFFF;
}
.timeslot--selected:hover {
  background: #2E9485;
  color: #FFFFFF;
}
.timeslot--unavailable {
  color: rgb(207.5, 207.5, 188.5);
  border-color: rgb(239.375, 239.375, 233.125);
  cursor: not-allowed;
  text-decoration: line-through;
}
.timeslot--unavailable:hover {
  border-color: rgb(239.375, 239.375, 233.125);
  color: rgb(207.5, 207.5, 188.5);
}

.booking__form {
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  transition: all 0.3s ease;
}
.booking__form:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.booking__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.booking__form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D3436;
  font-family: "Poppins", sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid rgb(233, 233, 224.2);
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #4A4A4A;
  background: #FAFAF8;
  transition: border-color 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3BA89A;
  background: #FFFFFF;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgb(167.4628099174, 176.3533057851, 177.0371900826);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237F8C8D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.booking__summary {
  background: #F5F1EB;
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: none;
}
.booking__summary.active {
  display: block;
}
.booking__summary h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.booking__summary .summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
  font-size: 0.875rem;
}
.booking__summary .summary-item .summary-label {
  color: #7F8C8D;
}
.booking__summary .summary-item .summary-value {
  font-weight: 600;
  color: #2D3436;
}

.booking__required-note {
  font-size: 0.75rem;
  color: #e74c3c;
  margin-bottom: 0.5rem;
}

.booking__submit {
  width: 100%;
  margin-top: 1rem;
}

.payment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  padding: 1.5rem;
}
.payment-modal.active {
  display: flex;
}

.payment {
  background: #FFFFFF;
  border-radius: 1rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  position: relative;
}

.payment__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border: none;
  background: #FAFAF8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  color: #7F8C8D;
  transition: all 0.2s ease;
}
.payment__close:hover {
  background: rgb(239.375, 239.375, 233.125);
  color: #2D3436;
}

.payment__header {
  padding: 3rem 3rem 1.5rem;
  border-bottom: 1px solid rgb(239.375, 239.375, 233.125);
}
.payment__header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.payment__header p {
  color: #7F8C8D;
  font-size: 0.875rem;
}

.payment__summary {
  padding: 1.5rem 3rem;
  background: #FAFAF8;
}
.payment__summary .payment-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}
.payment__summary .payment-summary-row .label {
  color: #7F8C8D;
}
.payment__summary .payment-summary-row .value {
  font-weight: 600;
  color: #2D3436;
}
.payment__summary .payment-summary-row.total {
  border-top: 2px solid rgb(233, 233, 224.2);
  margin-top: 0.5rem;
  padding-top: 1rem;
}
.payment__summary .payment-summary-row.total .label,
.payment__summary .payment-summary-row.total .value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D3436;
}

.payment__form {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment__card-visual {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2D3436 0%, rgb(79.7727272727, 92.1818181818, 95.7272727273) 100%);
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.payment__card-visual .card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #E8B86D, rgb(221.5887573964, 151.8609467456, 42.9112426036));
  border-radius: 0.375rem;
}
.payment__card-visual .card-number {
  font-family: monospace;
  font-size: 1.25rem;
  letter-spacing: 3px;
}
@media (max-width: 767px) {
  .payment__card-visual .card-number {
    font-size: 1rem;
  }
}
.payment__card-visual .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}
.payment__card-visual .card-bottom .card-name {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment__card-inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.payment__card-inputs .card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.payment__btn {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.125rem;
}
.payment__btn .btn-lock {
  font-size: 1rem;
}

.payment__success {
  padding: 4rem 3rem;
  text-align: center;
  display: none;
}
.payment__success.active {
  display: block;
}
.payment__success .success-icon {
  width: 80px;
  height: 80px;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: #27AE60;
}
.payment__success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.payment__success p {
  color: #7F8C8D;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.comments {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .comments {
    padding: 4rem 0;
  }
}
.comments {
  background: #F5F1EB;
}

.comments__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.comments__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
  min-height: 60px;
}

.comments__loading {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #7F8C8D;
  padding: 3rem;
}

.comments__spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid rgba(59, 168, 154, 0.2);
  border-top-color: #3BA89A;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.comments__empty {
  grid-column: 1/-1;
  text-align: center;
  color: #7F8C8D;
  font-style: italic;
  padding: 3rem;
}

.comment-card {
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  transition: all 0.3s ease;
}
.comment-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.comment-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.comment-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3BA89A, #2E9485);
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comment-card__name {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #2D3436;
  font-size: 1.125rem;
}
.comment-card__date {
  font-size: 0.875rem;
  color: #7F8C8D;
  margin-top: 2px;
}
.comment-card__text {
  color: #4A4A4A;
  line-height: 1.7;
  font-size: 1.125rem;
}

.comments__form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 0.75rem;
  padding: 4rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.comments__form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.comments__form-wrapper > p {
  color: #7F8C8D;
  font-size: 0.875rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .comments__form-wrapper {
    padding: 2rem;
  }
}

.comments__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .comments__form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #2D3436;
}
.form-group input,
.form-group textarea {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(45, 52, 54, 0.12);
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-family: "Inter", sans-serif;
  color: #4A4A4A;
  background: #FAFAF8;
  transition: border-color 0.2s ease;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3BA89A;
  background: #FFFFFF;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7F8C8D;
  opacity: 0.6;
}

.required {
  color: #3BA89A;
}

.form-error {
  font-size: 0.75rem;
  color: #e74c3c;
  min-height: 16px;
}

.comments__submit {
  width: 100%;
  margin-top: 0.5rem;
}
.comments__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.comments__success {
  text-align: center;
  color: #2E9485;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 1.125rem;
}

.hidden {
  display: none !important;
}

.footer {
  background: #2D3436;
  color: rgba(255, 255, 255, 0.8);
  padding: 6rem 0 2rem;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer__brand .footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .footer__brand .footer__logo {
    justify-content: center;
  }
}
.footer__brand .footer__logo .logo-icon {
  width: 40px;
  height: 40px;
  background: #3BA89A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.footer__brand .footer__logo .logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
}
@media (max-width: 767px) {
  .footer__brand p {
    max-width: 100%;
  }
}

.footer__section h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.footer__section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .footer__section ul {
    align-items: center;
  }
}
.footer__section li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .footer__section li {
    justify-content: center;
  }
}
.footer__section a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer__section a:hover {
  color: #7DCFBF;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .footer__social {
    justify-content: center;
  }
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  transition: all 0.2s ease;
  text-decoration: none;
}
.social-link:hover {
  background: #3BA89A;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.footer__bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__bottom .footer__dev-link {
  color: #7DCFBF;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__bottom .footer__dev-link:hover {
  color: #FFFFFF;
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.4);
}
.footer__bottom a:hover {
  color: #7DCFBF;
}
