    /* Reset e Estilos Gerais */
    * {
      margin: 0;
      padding: 0;

    }

    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      background-color: #ffffff;
 
    }

    /* Header Styles */
    header {
      background-color:white;
      position: fixed;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
      padding:0px 5%;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .header.scrolled {
      background-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      height: 70px;
    }
    .logo{
      width: 80px;
    }
    .header-content {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: space-between;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      background-color: white;
      border-radius: 50%;
      padding: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .social-icons a:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .social-icons img {
      width: 24px;
      height: 24px;
    }

    /* Hamburger Menu - Fixed */
    .hamburger {
      display: none;
      cursor: pointer;
      background: none;
      border: none;
      padding: 10px;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: #333;
      margin: 5px 0;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-menu {
      display: flex;
      gap: 30px;
    }

    .nav-menu a {
      text-decoration: none;
      font-weight: 600;
      color: #111;
      transition: all 0.3s ease;
      position: relative;
      padding: 5px 0;
    }

    .nav-menu a:first-child {
      color: #f0a920;
    }

    .nav-menu a:hover {
      color: #f0a920;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: #f0a920;
      transition: width 0.3s ease;
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .logo {
      height: 50px;
      object-fit: contain;
      transition: all 0.3s ease;
    }

   /* Enhanced Hero Section */
    .hero-section {
      min-height: 50vh;
      display: flex;
      align-items: center;
      padding: 100px 0% 120px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    }

    .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      gap: 50px;
      position: relative;
      z-index: 10;
    }

    .hero-text {
      flex: 1;
      max-width: 600px;
      z-index: 2;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      color: #f0a920;
      font-weight: 600;
      letter-spacing: 2px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .hero-title {
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 25px;
      font-weight: 700;
      color: #2c3e50;
      position: relative;
      overflow: hidden;
    }

    .hero-title span {
      display: inline-block;
      transform: translateY(100%);
      opacity: 0;
      animation: text-reveal 1s forwards;
    }

    .hero-title span:nth-child(1) { animation-delay: 0.3s; }
    .hero-title span:nth-child(2) { animation-delay: 0.6s; }

    @keyframes text-reveal {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .title-part1, .title-part2 {
      display: block;
    }

    .highlight {
      color: #f0a920;
      position: relative;
      display: inline-block;
    }

    .highlight::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 15px;
      background-color: rgba(240, 169, 32, 0.3);
      bottom: 5px;
      left: 0;
      z-index: -1;
      transform: rotate(-1deg);
    }

    .hero-description {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 35px;
      max-width: 90%;
    }

    .underline {
      text-decoration: underline;
      text-decoration-color: #f0a920;
      text-decoration-thickness: 3px;
      text-underline-offset: 5px;
      
    }

    /* Destaque Internacional */
    .international-highlight {
      display: flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, rgba(240, 169, 32, 0.1), rgba(255, 255, 255, 0.1));
      padding: 12px 20px;
      border-radius: 10px;
      margin: 25px 0;
      border-left: 4px solid #ef3340;
      backdrop-filter: blur(5px);
    }

    .international-highlight svg {
      color: #ef3340;
      flex-shrink: 0;
    }

    .international-highlight span {
      font-size: 1rem;
      color: #2c3e50;
      font-weight: 500;
    }

    .international-highlight strong {
      color: #ef3340;
      font-weight: 700;
    }

    .hero-cta {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    /* Enhanced CTA Button */
    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: white;
      padding: 18px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      width: fit-content;
      border: none;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
      z-index: 1;
      box-shadow: 0 5px 20px rgba(240, 169, 32, 0.3);
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, #f0a920, #e67e22, #f0a920);
      background-size: 200% 200%;
      z-index: -1;
      border-radius: 50px;
      animation: gradient-shift 3s ease infinite;
    }

    @keyframes gradient-shift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .cta-button:hover::before {
      animation: gradient-shift 1s ease infinite;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(240, 169, 32, 0.4);
    }

    .cta-button svg {
      transition: transform 0.3s ease;
    }

    .cta-button:hover svg {
      transform: translateX(5px);
    }

    .guarantee-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      color: #27ae60;
      font-weight: 500;
    }

    .guarantee-badge svg {
      flex-shrink: 0;
    }

    /* Spectacular Hero Image Effects */
    .hero-image {
      flex: 1;
      position: relative;
      max-width: 600px;
    }

    .image-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      transform-style: preserve-3d;
      perspective: 1000px;
      box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
    }

    .image-wrapper::before {
      content: '';
      position: absolute;
      inset: -5px;
      z-index: -1;
      background: linear-gradient(45deg, #f0a920, #e67e22, #f0a920, #e67e22);
      background-size: 300% 300%;
      border-radius: 25px;
      animation: gradient-border 8s ease infinite;
      filter: blur(5px);
    }

    @keyframes gradient-border {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .main-image {
      width: 100%;
      height: auto;
      display: block;
      position: relative;
      z-index: 2;
      border-radius: 20px;
      transition: transform 0.5s ease;
      filter: brightness(1.05) contrast(1.1);
    }

    .image-border {
      position: absolute;
      inset: -10px;
      border: 3px solid #f0a920;
      border-radius: 25px;
      z-index: 3;
      opacity: 0.7;
      transform: rotate(2deg);
      pointer-events: none;
    }

    .reflection {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 30%;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
      z-index: 3;
      pointer-events: none;
      mix-blend-mode: overlay;
      border-radius: 20px 20px 0 0;
    }

    .experience-badge {
      position: absolute;
      bottom: -25px;
      right: 30px;
      background: linear-gradient(135deg, #f0a920, #e67e22);
      color: white;
      padding: 15px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 4;
      box-shadow: 0 10px 30px rgba(240, 169, 32, 0.4);
      transform: rotate(5deg);
      animation: float 4s ease-in-out infinite;
    }

    .years {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1;
    }

    .label {
      font-size: 0.9rem;
      font-weight: 600;
      line-height: 1.2;
      text-align: center;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(5deg); }
      50% { transform: translateY(-10px) rotate(5deg); }
    }

    /* Badge de Diploma Internacional */
    .diploma-badge {
      position: absolute;
      top: -20px;
      left: -20px;
      background: white;
      padding: 15px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      gap: 15px;
      z-index: 4;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transform: rotate(-5deg);
      animation: diploma-float 6s ease-in-out infinite;
      max-width: 300px;
      border: 2px solid #f0a920;
      backdrop-filter: blur(10px);
    }

    @keyframes diploma-float {
      0%, 100% { transform: translateY(0) rotate(-5deg); }
      50% { transform: translateY(-10px) rotate(-5deg); }
    }

    /* Bandeira do Canadá */
    .flag-canada {
      width: 50px;
      height: 35px;
      position: relative;
      background: linear-gradient(to right, #ef3340 0%, #ef3340 25%, white 25%, white 75%, #ef3340 75%, #ef3340 100%);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .flag-center {
      position: absolute;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .maple-leaf {
      font-size: 16px;
      filter: drop-shadow(0 1px 1px rgba(0,0,0,0.3));
    }

    .diploma-text {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .diploma-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: #2c3e50;
      line-height: 1.2;
    }

    .diploma-university {
      font-size: 0.75rem;
      color: #666;
      font-weight: 500;
      line-height: 1.2;
    }

    /* Floating Particles Effect */
    .particles-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
    }

    .particle {
      position: absolute;
      background-color: rgba(240, 169, 32, 0.6);
      border-radius: 50%;
      animation: float-particle linear infinite;
    }

    @keyframes float-particle {
      0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
      }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
      }
    }

    /* Glowing Orb Effect */
    .glow-orb {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(240, 169, 32, 0.2) 0%, rgba(240, 169, 32, 0) 70%);
      filter: blur(30px);
      animation: orb-move 15s ease-in-out infinite alternate;
    }

    @keyframes orb-move {
      0% {
        transform: translate(-50%, -50%) scale(1);
        top: 20%;
        left: 20%;
      }
      50% {
        transform: translate(-50%, -50%) scale(1.2);
        top: 60%;
        left: 70%;
      }
      100% {
        transform: translate(-50%, -50%) scale(1);
        top: 30%;
        left: 80%;
      }
    }

    .stats-overlay {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 30px;
      background: white;
      padding: 20px 30px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      z-index: 3;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 2.2rem;
      font-weight: 700;
      color: #f0a920;
      margin-bottom: 5px;
    }

    .stat-label {
      font-size: 0.9rem;
      color: #666;
      font-weight: 500;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 10;
    }

    .mouse {
      width: 30px;
      height: 50px;
      border: 2px solid #f0a920;
      border-radius: 15px;
      display: flex;
      justify-content: center;
      padding-top: 10px;
      margin-bottom: 10px;
    }

    .wheel {
      width: 6px;
      height: 10px;
      background-color: #f0a920;
      border-radius: 3px;
      animation: scrollAnimation 2s infinite;
    }

    .arrow {
      width: 15px;
      height: 15px;
      border-right: 2px solid #f0a920;
      border-bottom: 2px solid #f0a920;
      transform: rotate(45deg);
      animation: arrowAnimation 2s infinite;
    }

    /* Animations */
    @keyframes scrollAnimation {
      0% {
        transform: translateY(0);
        opacity: 1;
      }
      50% {
        transform: translateY(10px);
        opacity: 0.5;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes arrowAnimation {
      0%, 20% {
        opacity: 0;
        transform: rotate(45deg) translateY(-10px);
      }
      60% {
        opacity: 1;
      }
      100% {
        opacity: 0;
        transform: rotate(45deg) translateY(10px);
      }
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(240, 169, 32, 0.3);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(240, 169, 32, 0.4);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(240, 169, 32, 0.3);
      }
    }

    .pulse-animation {
      animation: pulse 2s infinite;
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
      .hero-title {
        font-size: 2.8rem;
      }
      
      .hero-content {
        gap: 30px;
      }
      
      .stats-overlay {
        padding: 15px 20px;
        bottom: -20px;
      }
      
      .stat-number {
        font-size: 1.8rem;
      }
    }
    
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }
      
      .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
      }
      
      .nav-menu.active {
        right: 0;
      }
      
      .hero-content {
      flex-direction: column-reverse; /* This puts the image first */
      text-align: center;
      gap: 30px;
      }
      
      .international-highlight {
        padding: 10px 15px;
        margin: 20px 0;
      }
      
      .international-highlight span {
        font-size: 0.9rem;
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-description {
        max-width: 100%;
        padding-top: 20px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .hero-cta {
        align-items: center;
      }
      
      .hero-image {
        padding: 20px;
        position: relative; /* Adicionado para contexto de posicionamento */
      }
      
      .hero-image img{
        margin-top: 20px;
      }
      
      .highlight::after {
        height: 10px;
        bottom: 3px;
      }
      
      .logo {
        height: 140px;
      }

      .glow-orb {
        width: 200px;
        height: 200px;
      }
      
      .diploma-badge {
        /* Mantém o badge absoluto em cima da imagem */
        position: absolute;
        top: -15px; /* Ajustado para ficar melhor posicionado */
        left: 5px; /* Ajustado para ficar melhor posicionado */
        transform: rotate(-2deg) !important; /* Força o ângulo */
        max-width: 250px;
        padding: 12px;
        gap: 10px;
        z-index: 10 !important; /* Garante que fique acima da imagem */
      }
      
      .flag-canada {
        width: 40px;
        height: 28px;
      }
      
      .diploma-title {
        font-size: 0.8rem;
      }
      
      .diploma-university {
        font-size: 0.7rem;
      }
      
      .experience-badge {
        margin-bottom: 8%;
        position: absolute; /* Mantém absoluto */
        bottom: -25px;
        right: 30px;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-subtitle {
        font-size: 1rem;
      }
      
      .hero-description {
        font-size: 1rem;
      }
      
      .international-highlight {
        flex-direction: column;
        text-align: center;
        gap: 8px;
      }
      
      .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
      }
      
      .stats-overlay {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        bottom: -40px;
      }
      
      .stat-number {
        font-size: 1.5rem;
      }

      .experience-badge {
        right: 50%;
        transform: translateX(50%) rotate(5deg) !important;
        bottom: -20px;
      }
      
      .years {
        font-size: 2rem;
      }
      
      .label {
        font-size: 0.8rem;
      }
      
      /* CORREÇÃO CRÍTICA: Mantém o badge absoluto em celular */
      .diploma-badge {
        position: absolute !important; /* Força posicionamento absoluto */
        top: 5px !important; /* Posição ajustada para celular */
        left: 5px !important; /* Posição ajustada para celular */
        margin: 0 !important; /* Remove a margem que estava empurrando para baixo */
        transform: rotate(-3deg) !important; /* Mantém o ângulo */
        max-width: 220px; /* Um pouco menor para celular */
        padding: 10px;
        gap: 8px;
        z-index: 10 !important; /* Garante que fique acima de tudo */
        animation: diploma-float 6s ease-in-out infinite !important; /* Mantém animação */
      }
      
      .hero-image {
        display: block; /* Remove flex para evitar reordenamento */
        position: relative; /* Mantém contexto de posicionamento */
      }
      
      /* Ajusta a bandeira para ficar menor em celular */
      .flag-canada {
        width: 35px;
        height: 25px;
        min-width: 35px; /* Garante que não encolha demais */
      }
      
      .diploma-title {
        font-size: 0.75rem;
      }
      
      .diploma-university {
        font-size: 0.65rem;
      }
      
      .maple-leaf {
        font-size: 14px;
      }
    }

  /* Hero */
  .hero-agendamento {
    background-image: url('fotoprincipal.png');
    background-size: cover;
    background-position: center;
    min-height: 120vh;
    display: flex;
    align-items: center;
    padding-left: 8%;
    color: white;
    position: relative;
  }

  .hero-agendamento::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0); /* escurece o fundo */
    z-index: 0;
  }

  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-30px); /* Começa da esquerda */
    }
    100% {
      opacity: 1;
      transform: translateX(0); /* Vai para a posição original */
    }
  }
  .conteudo {
    position: relative;
    z-index: 1;
    max-width: 500px;
    animation: fadeInLeft 2s ease forwards; /* A animação é aplicada aqui */
    color: #4b4a4a;
  }
  
  .subtitulo {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #000;
  }
  
  .titulo {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .btn-agendar {
    background-color: #202020;
    border: none;
    color: white;
    padding: 14px 60px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.6s ease;
  }
  
  
  .btn-agendar:hover {
    transform: scale(1.05); /* Aumenta um pouco no hover */
  }
  
  .btn-agendar:active {
    transform: scale(1); /* Volta ao tamanho normal quando clicado */
  }
  
  /* Seção de serviços */
  .servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 40px;
  }
  
  @keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(50px); /* Começa abaixo da posição original */
    }
    100% {
      opacity: 1;
      transform: translateY(0); /* Vai para a posição original */
    }
  }
  

  /* Estilo Moderno com Cards */
  #metodo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: white;
  }

  .processo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .processo-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 169, 32, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .processo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(240, 169, 32, 0.15);
    border-color: rgba(240, 169, 32, 0.4);
  }

  .processo-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #f0a920;
  }

  .processo-card h2 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
  }

  .processo-card h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #f0a920;
  }

  .processo-card h3 {
    color: #f0a920;
    font-size: 1.2rem;
    margin: 15px 0 10px;
  }

  .processo-card p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .destaque {
    background-color: rgba(240, 169, 32, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #f0a920;
  }

  .cta-container {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(240, 169, 32, 0.05), white);
    border-radius: 15px;
    border: 1px dashed #f0a920;
  }

  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #000;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #f0a920;
    font-size: 1.1rem;
  }

  .whatsapp-btn:hover {
    transform: translateY(-3px);
    background-color: #f0a920;
    color: #000;
    box-shadow: 0 8px 25px rgba(240, 169, 32, 0.3);
  }

  .whatsapp-btn img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
  }

  .whatsapp-btn:hover img {
    transform: rotate(10deg);
  }

  /* Responsividade */
  @media (max-width: 768px) {
    .processo-container {
      grid-template-columns: 1fr;
    }
    
    .processo-card {
      padding: 25px;
    }
    
    .cta-container {
      padding: 30px 20px;
    }
  }

  /* Estilos Gerais */
.dupla-section {
    margin-top: 5%;
    background: linear-gradient(135deg, #f0a920 0%, #e67e22 100%);
    padding: 6rem 2rem;
    color: #000000;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Texto Box */
.texto-box {
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    flex: 1;
    min-width: 300px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.texto-box:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.texto-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #f0a920, #e67e22);
}

.texto-content h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.highlight {
    color: #f0a920;
    font-weight: 700;
}

.texto-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #f0a920, #e67e22);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.texto-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Botão CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(44, 62, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0);
    }
}

/* Estilos Gerais */
.dupla-section {
    margin-top: 5%;
    background: linear-gradient(135deg, #f0a920 0%, #e67e22 100%);
    padding: 6rem 2rem;
    color: #000000;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Texto Box */
.texto-box {
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    flex: 1;
    min-width: 300px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.texto-box:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.texto-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #f0a920, #e67e22);
}

.texto-content h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.highlight {
    color: #f0a920;
    font-weight: 700;
}

.texto-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #f0a920, #e67e22);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.texto-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Botão CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(44, 62, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0);
    }
}

/* Formulário */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    flex: 1;
    min-width: 300px;
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s ease;
}

.form-card:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: #7f8c8d;
    font-size: 1rem;
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3rem;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.input-group label {
    position: absolute;
    left: 3rem;
    top: 1.2rem;
    color: #95a5a6;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.input-group.focused label,
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: -0.6rem;
    left: 1.5rem;
    font-size: 0.8rem;
    color: #f0a920;
    background: white;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #f0a920;
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(240, 169, 32, 0.2);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.input-group.focused .input-icon,
.input-group input:focus ~ .input-icon,
.input-group textarea:focus ~ .input-icon {
    color: #f0a920;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(to right, #f0a920, #e67e22);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 169, 32, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 169, 32, 0.4);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

/* Animações */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px) perspective(1000px) rotateY(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) perspective(1000px) rotateY(-5deg);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px) perspective(1000px) rotateY(5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) perspective(1000px) rotateY(5deg);
    }
}

.texto-box, .form-card {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.texto-box.visivel-esq {
    animation: slideInLeft 1s ease forwards;
}

.form-card.visivel-dir {
    animation: slideInRight 1s ease forwards;
}

/* Responsivo */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        gap: 2rem;
    }
     .social-icons img {
      display: none;
    }
}
/* Responsivo */
@media (max-width: 800px) {
    .container {
        flex-direction: column;
        gap: 2rem;
    }
    .input-group.focused label,
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label{
      margin-top: 10px;
    }
  }



/* Responsividade Extrema */
@media (max-width: 992px) {
  .contact-container, .benefits-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .benefits-image-wrapper {
    order: 0;
  }
  
  .contact-text-group, .benefits-intro {
    text-align: left;
  }
  
  .cta-button, .footer-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-contact-section, .benefits-section, .location-section {
    padding: 3rem 1rem;
  }
  
  .footer-buttons {
    flex-direction: column;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .map-wrapper {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-title, .section-title, .footer-title {
    font-size: 1.8rem;
  }
  
  .benefit-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .img-decoration {
    display: none;
  }
  
  .footer-wave {
    height: 50px;
    top: -25px;
  }
}


      /*telas menores*/
  @media (max-width: 768px) {

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      overflow-x: hidden;
  }
  html {
    overflow-x: hidden;
  }
  
  body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
  }

  nav{
    display: none;
  }
 
  .social-icons {
    position: fixed;
    right: 2px;
    bottom: 5px;
    z-index: 99999;
    display: flex;
    flex-direction: column; /* Faz os ícones ficarem em bloco (empilhados) */
    gap: 10px;
  }
  
  .social-icons a {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 50%;
    padding: 8px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.7s ease, background-color 0.3s ease;
  }
  .logo {
    display: block;
    margin: 0 auto;         
    padding-top: 10%;     
    height: 110px;          
    object-fit: contain;
   padding-bottom: 20px;
  }
    /* Hero */
  .hero-agendamento {
      background-image: url('celular.png');
    }
    .conteudo {
      padding-top: 110%;
      position: relative;
      z-index: 1;
      max-width: 500px;
      margin: 0 auto; /* centraliza horizontalmente */
      animation: fadeInLeft 2s ease forwards;
      color: #4b4a4a;
    }
      /* Seção de serviços */
      .servicos {
        display: grid; /* aqui estava 'block', troque para grid */
        z-index: 1; /* não precisa ser alto aqui, só para empilhamento leve */
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        padding: 60px 40px;
        background: #e5e5e5;
        position: relative; /* necessário para empilhamento correto */
      }
      
      .card {
        margin-top: 0px;
        position: relative;
        z-index: 9999; 
        border-radius: 20px;
        padding: 30px;
        margin-bottom: 0px;
        text-align: center;
        transition: transform 0.3s ease;
        animation: slideUp 1s ease-out forwards;
      }
        /* imagem */
        .image-container {
          max-width: 600px; /* ou 600px, como preferir */
          margin: 0 auto;
        }
        
        .image-container img {
          width: 100%;
          max-width: 100%;
          padding-right: 0%;
          border-radius: 50%;
          opacity: 0;
          transform: translateY(-50px) scale(1);
          transition: all 0.3s ease-out;
        }
        
  .hero-psicologa {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
 
    flex-wrap: wrap;
  }
  .text-content {
    max-width: 100%;
    padding: 10%;
    color: #111;
  }
  .text-content h1 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 20px;
  }
  .text-content h2 {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin: 20px 0 10px;
    text-shadow: 1px 1px #00000020;
  }
  
  .text-content p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 40px;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 15px auto 15%;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.7s ease, background-color 0.3s ease;
    display: block; /* Adicionado para margin: auto funcionar */
    width: fit-content;
  }
  
  /* planos */
  .linha-planos2 {
    display: block;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 10px 0 30px;
    overflow-x: none;
    scroll-snap-type: none;
    scrollbar-width: none;
    scrollbar-color: #ccc transparent;
  }
  .card2 {
    display: block;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-width: 0px;
    max-width: 100%;
    background-color: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    flex-shrink: 0;
    height: 250px;
    text-align: left;
    animation: tremer 0.4s infinite ease-in-out;
  }
  .card2 {
    text-align: center;
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: center; /* centraliza itens na vertical */
    justify-content: space-between;
  }
  
  .card2 h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .card2 p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: center; /* opcional, caso queira centralizar o texto também */
  }
  
  .btn-plano2 {
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
  }

    
/* contato */
.cura-section {
  margin-top: 5%;
  background-color: white;
  padding: 2rem;
  text-align: center;
}

.cura-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: auto;
  gap: 2rem;
}

.cura-img img {
  max-width: 100%;
  max-height: 100%;
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 10px rgba(0,0,0,0.2);
  animation: slideInLeft 1s ease forwards;
}

.cura-texto {
  display: block;
  max-width: 100%;
  color: #000;
}

.cura-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cura-texto p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cura-texto strong {
  font-weight: bold;
}

.cura-texto button {
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  letter-spacing: 4px;
  font-weight: bold;
  cursor: pointer;
}

/* contato2 */
.lista-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: auto;
  gap: 2rem;;
}

.lista-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: auto;
  gap: 2rem;
}

.lista-img img {
  max-width: 100%;
  max-height: 100%;
  width: 350px;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}

.lista-texto {
  flex: 1;
  max-width: 900px;
  font-size: 1.1rem;
  color: #111;
  animation: slideInRight 1s ease forwards;
}

.lista-texto ul {
  list-style: none;
  padding: 0;
}

.lista-texto li {
  margin-top: 10%;
  display:block;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.0rem;
  line-height: 1.6;
}

.lista-texto .check {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
  /* ultimas informacoes */
  .localizacao-section05 {
    margin-left: 0%;
    background-color: white;
    padding-left: 30px;
    padding-right: 30px;
    font-family: 'Poppins', sans-serif;
  }
   
  .texto-footer06 h2 {
    font-size: 2.0rem;
    color: #e6e6e6;
    margin-bottom: 20px;
  }
  
  .texto-footer06 span {
    font-weight: bold;
    font-size: 2.0rem;
  }
  .info-footer06 p {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #f1f1f1;
  }
  .info-localizacao05 img{
    padding-left: 25%;
  }
  


}
  
  