

html {
    scroll-behavior: smooth;
  }
  
  @font-face {
    font-family: 'Anton';
    src: url('./fonts/anton.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Roboto';
    src: url('./fonts/roboto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  h1,
  h2,
  h3 {
    font-family: "Anton", sans-serif;
  }
  
  p,
  li,
  a,
  button {
    font-family: "Roboto", serif;
  }

  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
  }

  .hero-background.active {
    opacity: 1;
  }

  /* Background images for each service */
  .hero-bg-1 {
    background-image: url('https://res.cloudinary.com/dn454izoh/image/upload/v1770658490/1_b9jpch.webp');
  }

  .hero-bg-2 {
    background-image: url('https://res.cloudinary.com/dn454izoh/image/upload/v1770397480/19_fek0lw.webp');
  }

  .hero-bg-3 {
    background-image: url('https://res.cloudinary.com/dn454izoh/image/upload/v1770397479/12_bpxzzu.webp');
  }

  .hero-bg-4 {
    background-image: url('https://res.cloudinary.com/dn454izoh/image/upload/v1770397480/16_gqzogw.webp');
  }

  .hero-bg-5 {
    background-image: url('https://res.cloudinary.com/dn454izoh/image/upload/v1770397478/3_rpreuk.webp');
  }

  .service-indicator {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }

  .service-name {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    font-family: "Roboto", serif;
    transition: color 0.3s ease;
    white-space: nowrap;
  }

  .service-indicator.active .service-name {
    color: #ffffff;
    font-weight: 600;
  }

  /* Progress Bar Container */
  .service-progress-container {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .service-indicator.active .service-progress-container {
    opacity: 1;
  }

  /* Progress Bar */
  .service-progress-bar {
    height: 100%;
    width: 0%;
    background-color: #ffffff;
    border-radius: 1px;
  }

  @keyframes progressAnimation {
    from {
      width: 0%;
    }
    to {
      width: 100%;
    }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-services-indicators {
      gap: 1rem;
      bottom: 1rem;
    }

    .service-name {
      font-size: 0.875rem;
    }
  }

  @media (max-width: 480px) {
    .hero-services-indicators {
      gap: 0.75rem;
      bottom: 0.5rem;
    }

    .service-name {
      font-size: 0.75rem;
    }
  }

  /* Services Section - Card Styles (crescem na horizontal) */
  .services-grid {
    display: grid;
    gap: 1.5rem;
    grid-auto-flow: row dense;
  }

  .service-card {
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    min-height: 400px;
    height: 500px;
  }

  /* Card da Escolinha Infantil ocupa 2 colunas em lg (cresce na horizontal) */
  @media (min-width: 1024px) {
    .service-card.service-card-featured {
      grid-column: span 2;
      /* Mesma altura dos outros cards */
      height: 500px;
    }
    
    /* Garante que os cards preenchem o espaço horizontal disponível */
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
  }

  .service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .service-card-content {
    position: relative;
    z-index: 2;
  }

  .service-category {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .service-card:hover .service-category {
    opacity: 1;
  }

  .service-title {
    font-family: "Anton", sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .service-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .service-cta {
    display: inline-flex;
    align-items: center;
  }

  /* Responsive adjustments for services */
  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }

    .service-card {
      height: 450px;
    }
    
    /* Em tablets, card featured ocupa 2 colunas (largura total) - mesma altura */
    .service-card.service-card-featured {
      grid-column: span 2;
      height: 450px;
    }

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

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

    .service-card {
      height: 400px;
    }
    
    /* Em mobile, card featured ocupa 1 coluna - mesma altura */
    .service-card.service-card-featured {
      grid-column: span 1;
      height: 400px;
    }

    .service-card-content {
      padding: 1.5rem;
    }

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

    .service-description {
      font-size: 0.9375rem;
    }
  }

  @media (max-width: 480px) {
    .service-card {
      height: 350px;
    }

    .service-card-content {
      padding: 1.25rem;
    }

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

    .service-description {
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    .service-cta {
      font-size: 0.9375rem;
    }
  }

  /* Methodology Section - Card Styles */
  .methodology-grid {
    display: grid;
    gap: 1.5rem;
  }

  .methodology-card {
    position: relative;
    display: block;
    cursor: pointer;
  }

  .methodology-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
  }

  .methodology-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .methodology-card-content {
    position: relative;
    z-index: 2;
  }

  .methodology-category {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .methodology-card:hover .methodology-category {
    opacity: 1;
  }

  .methodology-title {
    font-family: "Anton", sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .methodology-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
  }

  /* Responsive adjustments for methodology */
  @media (max-width: 1024px) {
    .methodology-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }

    .methodology-card {
      height: 400px;
    }

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

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

    .methodology-card {
      height: 380px;
    }

    .methodology-card-content {
      padding: 1.5rem;
    }

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

    .methodology-description {
      font-size: 0.9375rem;
    }
  }

  @media (max-width: 480px) {
    .methodology-card {
      height: 350px;
    }

    .methodology-card-content {
      padding: 1.25rem;
    }

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

    .methodology-description {
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }
  }

  /* Minimalist Methodology & Differentials Section */
  .minimal-differentials-grid {
    display: grid;
    gap: 3rem;
  }

  .minimal-differential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .minimal-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .minimal-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
  }

  .minimal-differential-item:hover .minimal-icon-container {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
  }

  .minimal-differential-title {
    font-family: "Anton", sans-serif;
    letter-spacing: -0.01em;
  }

  .minimal-differential-description {
    max-width: 100%;
    line-height: 1.7;
  }

  .minimal-cta-button {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
  }

  .minimal-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* Responsive adjustments for minimalist section */
  @media (max-width: 1024px) {
    .minimal-differentials-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }

    .minimal-icon-container {
      width: 70px;
      height: 70px;
    }

    .minimal-icon-container svg {
      width: 2.5rem;
      height: 2.5rem;
    }
  }

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

    .minimal-differential-item {
      max-width: 400px;
      margin: 0 auto;
    }

    .minimal-icon-container {
      width: 64px;
      height: 64px;
    }

    .minimal-icon-container svg {
      width: 2.25rem;
      height: 2.25rem;
    }

    .minimal-differential-title {
      font-size: 1.125rem;
    }

    .minimal-differential-description {
      font-size: 0.9375rem;
    }
  }

  @media (max-width: 480px) {
    .minimal-differentials-grid {
      gap: 2.5rem;
    }

    .minimal-icon-container {
      width: 56px;
      height: 56px;
    }

    .minimal-icon-container svg {
      width: 2rem;
      height: 2rem;
    }

    .minimal-differential-title {
      font-size: 1rem;
      margin-bottom: 0.75rem;
    }

    .minimal-differential-description {
      font-size: 0.875rem;
    }

    .minimal-cta-button {
      padding: 0.75rem 1.5rem;
      font-size: 0.75rem;
    }
  }

  /* Team Section - Clean Professional Cards */
  .team-grid {
    display: grid;
    gap: 2rem;
  }

  .team-card {
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: default;
  }

  .team-card-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }

  .team-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }

  /* Responsive adjustments for team section */
  @media (max-width: 1024px) {
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .team-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  @media (max-width: 480px) {
    .team-grid {
      gap: 1.5rem;
    }

    
  }

  /* Testimonials Carousel Section */
  .testimonials-carousel-wrapper {
    position: relative;
    padding: 0 3rem;
  }

  .testimonials-carousel-container {
    position: relative;
    width: 100%;
  }

  .testimonials-track {
    display: flex;
    will-change: transform;
  }

  .testimonial-card {
    width: 33.333333%;
    min-width: 33.333333%;
  }

  .testimonial-card .testimonial-card-inner,
  .testimonial-card .bg-white {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .testimonial-author {
    flex-shrink: 0;
  }

  .testimonials-dots {
    display: flex;
    align-items: center;
  }

  .testimonial-dot {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    transition: all 0.3s ease;
  }

  .testimonials-nav-btn {
    cursor: pointer;
    border: none;
    background: white;
    transition: all 0.3s ease;
  }

  .testimonials-nav-btn:disabled {
    pointer-events: none;
  }

  /* Responsive adjustments for testimonials carousel */
  @media (max-width: 1024px) {
    .testimonials-carousel-wrapper {
      padding: 0 4rem;
    }

    .testimonial-card {
      width: 50%;
      min-width: 50%;
    }
  }

  @media (max-width: 768px) {
    .testimonials-carousel-wrapper {
      padding: 0 3.5rem;
    }

    .testimonial-card {
      width: 100%;
      min-width: 100%;
    }

    .testimonials-nav-prev {
      left: -1rem;
    }

    .testimonials-nav-next {
      right: -1rem;
    }
  }

  @media (max-width: 480px) {
    .testimonials-carousel-wrapper {
      padding: 0 2.5rem;
    }

    .testimonials-nav-btn {
      width: 2.5rem;
      height: 2.5rem;
    }

    .testimonials-nav-prev {
      left: -0.5rem;
    }

    .testimonials-nav-next {
      right: -0.5rem;
    }

    .testimonial-card .testimonial-card-inner,
    .testimonial-card .bg-white {
      padding: 1.5rem;
    }
  }

  /* Structure Section - Minimalist Styles */
  .structure-gallery {
    display: grid;
    gap: 1rem;
  }

  .structure-image {
    position: relative;
    overflow: hidden;
    background-color: #f3f4f6;
  }

  .structure-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .structure-map {
    position: relative;
    background-color: #f3f4f6;
  }

  .structure-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
  }

  /* Responsive adjustments for structure section */
  @media (max-width: 768px) {
    .structure-gallery {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }

    .structure-map iframe {
      min-height: 350px;
    }
  }

  @media (max-width: 480px) {
    .structure-gallery {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
    }

    .structure-map iframe {
      min-height: 300px;
    }
  }

  /* Gallery Section - Minimalist Styles */
  .gallery-grid {
    display: grid;
    gap: 1rem;
  }

  .gallery-image {
    position: relative;
    overflow: hidden;
    background-color: #f3f4f6;
  }

  .gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Gallery Image Hidden State */
  .gallery-image-hidden {
    display: none;
    opacity: 0;
  }

  /* Responsive adjustments for gallery section */
  @media (max-width: 768px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }
  }

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

