/*=========================================
  VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
=========================================*/
:root {
    --primary: #0A4D40;
    --primary-light: #126e5c;
    --secondary: #F18F1C;
    --secondary-light: #ffb05c;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #EEEEEE;
    --dark-gray: #333333;
    --black: #111111;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --border-radius-lg: 16px;
  }
  
  /*=========================================
    RESET E ESTILOS BASE
  =========================================*/
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
  }
  
  section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
  }
  
  p {
    margin-bottom: 20px;
  }
  
  /* Botões */
.btn {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: 
    transform 0.3s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.3s cubic-bezier(0.22,1,0.36,1),
    background-color 0.3s ease; 
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0; 
  background: #f79c2f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn:hover::before {
  transform: scaleX(1);
}
  
.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(241,143,28,0.3);
  display: inline-flex;
  margin: 0;
}

.btn-primary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(241,143,28,0.4);
}

/* ripple effect */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 150%; height: 150%;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s, opacity 0.6s;
}

.btn-primary:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
  
  /*=========================================
    MENU DE NAVEGAÇÃO
  =========================================*/
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
  }
  
  .logo-img {
    height: 75px;
    margin: 8px 0;
    width: auto;
    display: block; /* Garante que a imagem é exibida corretamente */
  }
  
  .main-nav {
    display: flex;
    align-items: center;
  }
  
  .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    height: 100%;
    align-items: center;
  }
  
  .nav-list li {
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .nav-list li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav-list li a:hover {
    color: var(--secondary);
  }
  
  .nav-button {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    display: flex;          /* Adicione estas três */
    align-items: center;    /* propriedades para */
    justify-content: center; /* alinhamento perfeito */
    line-height: 1;          /* Normaliza a altura da linha */
    height: fit-content;     /* Altura adequada ao conteúdo */
  }
  
  .nav-button:hover {
    background-color: var(--primary-light);
  }
  
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
  }
  
  .mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
  }
  
  /*=========================================
    SEÇÃO PROBLEMAS & SOLUÇÕES
  =========================================*/
  .problems-solutions-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--light-gray);
  }
  
  .problems-solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f1f1f1' fill-opacity='0.7' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
  }
  
  .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 4px;
  }
  
  .split-container {
    display: flex;
    align-items: stretch;
    margin: 40px auto;
    max-width: 1100px;
    position: relative;
    z-index: 10;
  }
  
  .split-column {
    flex: 1;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    position: relative;
    transition: var(--transition);
  }
  
  .split-column-problem {
    background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
    color: var(--white);
    margin-right: 15px;
    box-shadow: var(--shadow);
    transform: translateY(0);
  }
  
  .split-column-solution {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    margin-left: 15px;
    box-shadow: var(--shadow);
    transform: translateY(0);
  }
  
  .split-column-problem:hover,
  .split-column-solution:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
  }
  
  .split-column h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
  }
  
  .split-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    border-radius: 3px;
  }
  
  .split-column-problem h3::after {
    background-color: #ff5555;
  }
  
  .split-column-solution h3::after {
    background-color: var(--secondary);
  }
  
  .problem-list,
  .solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .problem-list li,
  .solution-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .problem-list li::before,
  .solution-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .problem-list li::before {
    background-color: #ff5555;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  }
  
  .solution-list li::before {
    background-color: var(--secondary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  }
  
  .split-image {
    height: 200px;
    margin-bottom: 25px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
  }
  
  .split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .split-column:hover .split-image img {
    transform: scale(1.05);
  }
  
  .connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
  .connector svg {
    width: 30px;
    height: 30px;
    fill: var(--secondary);
  }
  
  .split-column {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .split-column.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .connector {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
  }
  
  .connector.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  
  /*=========================================
    SEÇÃO COMO FUNCIONA
  =========================================*/
  .how-it-works-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .how-it-works-section::before {
    content: '';
    position: absolute;
    right: -150px;
    top: -150px;
    width: 400px;
    height: 400px;
    background-color: rgba(241, 143, 28, 0.05);
    border-radius: 50%;
    z-index: 1;
  }
  
  .how-it-works-section::after {
    content: '';
    position: absolute;
    left: -150px;
    bottom: -150px;
    width: 400px;
    height: 400px;
    background-color: rgba(10, 77, 64, 0.05);
    border-radius: 50%;
    z-index: 1;
  }
  
  .how-it-works-container {
    position: relative;
    z-index: 5;
  }
  
  .methods-subtitle {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    color: var(--primary);
    font-weight: 700;
  }
  
  .methods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .method-column {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 5;
    border: 1px solid var(--medium-gray);
  }
  
  .method-column:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--secondary);
  }
  
  .method-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    position: relative;
  }
  
  .method-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
  }
  
  .steps-container {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .step-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .step-item:last-child {
    margin-bottom: 0;
  }
  
  .step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 15px;
    position: relative;
  }
  
  .step-content {
    flex-grow: 1;
  }
  
  .step-title {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-gray);
  }
  
  .step-description {
    color: var(--dark-gray);
    font-size: 15px;
  }
  
  .step-connector {
    position: absolute;
    top: 40px;
    left: 20px;
    width: 2px;
    height: calc(100% - 15px);
    background-color: var(--light-gray);
  }
  
  .step-item:last-child .step-connector {
    display: none;
  }
  
  .highlight-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 25px 35px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    margin: 40px auto 60px;
    max-width: 900px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }
  
  .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
  }
  
  .compatibility-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  
  .compatibility-icon {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .compatibility-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
  }
  
  .compatibility-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
  }
  
  .cta-container {
    text-align: center;
    margin-top: 40px;
  }
  
  .timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  
  .timer-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: var(--secondary);
  }
  
  .timer-text {
    font-size: 16px;
    color: var(--dark-gray);
  }
  
  .step-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .method-column {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  
  .method-column.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .highlight-box {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .highlight-box.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /*=========================================
    ANIMAÇÕES
  =========================================*/
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulsePlay {
    0% {
      box-shadow: 0 0 0 0 rgba(241, 143, 28, 0.7);
      transform: translate(-50%, -50%) scale(1);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(241, 143, 28, 0);
      transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(241, 143, 28, 0);
      transform: translate(-50%, -50%) scale(1);
    }
  }
  
  /*=========================================
    RESPONSIVIDADE
  =========================================*/
  
  @media (max-width: 1200px) {
    .container {
      max-width: 992px;
    }
    
    /* Seções padrão responsivas - 1200px */
    .section-title {
      font-size: 32px;
    }
  }
  
  @media (max-width: 992px) {
    .container {
      max-width: 768px;
    }
    
    section {
      padding: 60px 0;
    }
    
    /* Menu responsivo - 992px */
    .nav-list {
      display: none;
      height: calc(100vh - 350px);
      position: fixed;
      overflow-y: auto;
      z-index: 9999;
      background: rgba(255, 255, 255, 0.95);
    }

    /* Se o navegador entende svh, substitui */
    @supports (height:100svh) {
        .nav-list { 
            height:calc(100svh - 350px); 
        }
    }
    
    .mobile-menu-toggle {
      display: flex;
    }
    
    @keyframes float {
      0% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(0);
      }
      50% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(-15px);
      }
      100% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(0);
      }
    }
    
    /* Problemas & Soluções responsivo - 992px */
    .split-container {
      max-width: 900px;
    }
    
    .section-title {
      font-size: 30px;
    }
    
    /* Como Funciona responsivo - 992px */
    .methods-subtitle {
      font-size: 26px;
    }
    
    .highlight-box {
      font-size: 20px;
      padding: 20px 25px;
    }
  }
  
  @media (max-width: 768px) {
    .container {
      max-width: 100%;
      padding: 0 16px;
    }
    
    section {
      padding: 50px 0;
    }
    
    .btn {
      padding: 12px 24px;
      font-size: 15px;
    }
    
    /* Problemas & Soluções responsivo - 768px */
    .split-container {
      flex-direction: column;
    }
    
    .split-column-problem {
      margin-right: 0;
      margin-bottom: 60px;
    }
    
    .split-column-solution {
      margin-left: 0;
    }
    
    .connector {
      top: calc(50% - 30px);
      transform: translate(-50%, -50%) rotate(90deg);
    }
    
    .connector.visible {
      transform: translate(-50%, -50%) rotate(90deg) scale(1);
    }
    
    /* Como Funciona responsivo - 768px */
    .how-it-works-section {
      padding: 70px 0;
    }
    
    .methods-container {
      flex-direction: column;
    }
    
    .method-column {
      width: 100%;
      min-width: 100%;
    }
    
    .step-number {
      width: 35px;
      height: 35px;
      font-size: 16px;
    }
    
    .step-connector {
      left: 17.5px;
    }
  
  }
  
  @media (max-width: 576px) {
    section {
      padding: 40px 0;
    }
    
    .benefit-item {
      justify-content: flex-start;
    }
    
    .hero-subheadline {
      font-size: 15px;
    }
    
    .hero-cta-container {
      align-items: flex-start;
    }
    
    .hero-content {
      text-align: left;
    }
    
    .counter-container {
      width: 90%;
      font-size: 14px;
    }
    
    .counter-value {
      font-size: 22px;
    }
    
    .counter-icon {
      font-size: 18px;
    }
    
    /* Problemas & Soluções responsivo - 576px */
    .section-title {
      font-size: 26px;
    }
    
    .split-column {
      padding: 20px;
    }
    
    .split-column h3 {
      font-size: 22px;
    }
    
    .problem-list li,
    .solution-list li {
      font-size: 15px;
    }
    
    /* Como Funciona responsivo - 576px */
    .how-it-works-section {
      padding: 50px 0;
    }
    
    .methods-subtitle {
      font-size: 22px;
      margin-bottom: 30px;
    }
    
    .method-title {
      font-size: 20px;
    }
    
    .step-item {
      margin-bottom: 20px;
    }
    
    .step-number {
      width: 30px;
      height: 30px;
      font-size: 14px;
      margin-right: 10px;
    }
    
    .step-connector {
      left: 15px;
    }
    
    .step-title {
      font-size: 15px;
    }
    
    .step-description {
      font-size: 14px;
    }
    
    .highlight-box {
      font-size: 18px;
      padding: 15px 20px;
    }
  }
  
    /* CSS do Popup de Agendamento */
    .agendamento-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 99999 !important;
      backdrop-filter: blur(5px);
      animation: fadeIn 0.3s ease;
    }
    
    .agendamento-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      border-radius: 16px;
      width: 90%;
      max-width: 600px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      animation: slideUp 0.4s ease;
    }
    
    .agendamento-close {
      position: absolute;
      top: 15px;
      right: 20px;
      background: none;
      border: none;
      font-size: 30px;
      color: #999;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    
    .agendamento-close:hover {
      background-color: #f5f5f5;
      color: #333;
    }
    
    .agendamento-header {
      padding: 30px 30px 20px;
      text-align: center;
      border-bottom: 1px solid #eee;
    }
    
    .agendamento-header h3 {
      color: var(--primary);
      margin-bottom: 10px;
      font-size: 24px;
    }
    
    .agendamento-header p {
      color: #666;
      margin-bottom: 20px;
      font-size: 16px;
    }
    
    .progress-bar {
      width: 100%;
      height: 4px;
      background-color: #eee;
      border-radius: 2px;
      overflow: hidden;
    }
    
    .progress-fill {
      height: 100%;
      background-color: var(--secondary);
      transition: width 0.4s ease;
      border-radius: 2px;
    }
    
    .agendamento-content {
      padding: 30px;
    }
    
    .pergunta-grupo {
      margin-bottom: 25px;
    }
    
    .pergunta-grupo label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--primary);
      font-size: 15px;
    }
    
    .pergunta-grupo select,
    .pergunta-grupo input {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #eee;
      border-radius: 8px;
      font-size: 16px;
      transition: border-color 0.3s ease;
      background-color: white;
    }
    
    .pergunta-grupo select:focus,
    .pergunta-grupo input:focus {
      outline: none;
      border-color: var(--secondary);
      box-shadow: 0 0 0 3px rgba(241, 143, 28, 0.1);
    }
    
    .agendamento-footer {
      padding: 20px 30px 30px;
      display: flex;
      gap: 15px;
      justify-content: center;
    }
    
    .agendamento-footer .btn {
      flex: 1;
      max-width: 200px;
      margin: 0;
      padding: 12px 5px 12px 5px;
    }
    
    .btn-secondary {
      background-color: #f5f5f5;
      color: var(--primary);
      border: 2px solid #eee;
    }
    
    .btn-secondary:hover {
      background-color: #e0e0e0;
      border-color: #ccc;
    }
    
    .calendario-container {
      min-height: 200px;
      position: relative;
    }
    
    .calendario-loading {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 200px;
      color: #666;
    }
    
    .spinner {
      width: 40px;
      height: 40px;
      border: 3px solid #f3f3f3;
      border-top: 3px solid var(--secondary);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-bottom: 15px;
    }
    
    .calendario-horarios {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 10px;
    }
    
    .horario-slot {
      padding: 12px 8px;
      text-align: center;
      border: 2px solid #eee;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      background-color: white;
      font-size: 14px;
    }
    
    .horario-slot:hover {
      border-color: var(--secondary);
      background-color: rgba(241, 143, 28, 0.05);
    }
    
    .horario-slot.selected {
      background-color: var(--secondary);
      border-color: var(--secondary);
      color: white;
    }
    
    .horario-slot.unavailable {
      background-color: #f5f5f5;
      color: #999;
      cursor: not-allowed;
      opacity: 0.6;
    }
    
    .horario-data {
      font-weight: 600;
      margin-bottom: 5px;
      font-size: 12px;
    }
    
    .horario-hora {
      font-size: 14px;
    }

    .horario-hora {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .horario-fuso {
      font-size: 11px;
      color: #888;
      margin-top: 2px;
      font-style: italic;
    }
    
    .confirmacao-content {
      text-align: center;
    }
    
    .confirmacao-icon {
      font-size: 60px;
      margin-bottom: 20px;
    }
    
    .confirmacao-detalhes h4 {
      color: var(--primary);
      margin-bottom: 20px;
      font-size: 20px;
    }
    
    .detalhes-reuniao {
      background-color: #f8f9fa;
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    
    .detalhes-reuniao p {
      margin-bottom: 8px;
      font-size: 15px;
    }
    
    .confirmacao-avisos {
      font-size: 14px;
      color: #666;
    }
    
    .confirmacao-avisos p {
      margin-bottom: 5px;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translate(-50%, -40%);
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%);
      }
    }
    
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    /* Responsivo */
    @media (max-width: 576px) {
      .agendamento-container {
        width: 95%;
        max-height: 95vh;
      }
      
      .agendamento-header,
      .agendamento-content {
        padding: 20px;
      }
      
      .agendamento-footer {
        padding: 15px 20px 20px;
        /* flex-direction: column; */
      }
      
      .agendamento-footer .btn {
        max-width: none;
        margin: 0 auto;
      }
      
      /* Só 100% quando há múltiplos botões */
      .agendamento-footer .btn + .btn {
        width: 100%;
        max-width: none;
        min-width: auto;
      }
      
      .calendario-horarios {
        grid-template-columns: repeat(2, 1fr);
      }
    }