:root {
  --primary: #2d5fde; /* GoTo blue */
  --secondary: #ff6d00; /* Zoho orange */
  --dark: #1d1d1f;
  --light: #f5f5f7;
  --gray: #86868b;
  --darkgray: #2c2c2c;
  --white: #ffffff;
  --whats: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 40px;
  width: auto;
}

.logo span {
  color: var(--primary);
}

.cta-button {
  background-color: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.cta-button:hover {
  background-color: #1a4ab9;
  transform: translateY(-2px);
}
.cta-button-whats {
  background-color: var(--whats);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.cta-button-whats:hover {
  background-color: #29a758;
  transform: translateY(-2px);
}
/* Popup WhatsApp */
.whatsapp-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  pointer-events: none;
}

.whatsapp-popup {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  max-height: 90vh;
  overflow-y: auto;
  pointer-events: auto;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
}

.popup-step {
  display: none;
}

.popup-step.active {
  display: block;
}

.popup-step h3 {
  color: #2a4365;
  margin-bottom: 20px;
  text-align: center;
}

.popup-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

/* Animações */
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 600px) {
  .whatsapp-popup {
    width: 90%;
    padding: 20px 15px;
  }

  .popup-buttons {
    flex-direction: column;
  }

  .popup-buttons button {
    width: 100%;
  }
}
/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 20px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-image {
  max-width: 800px;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Benefits Section */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--light);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: var(--darkgray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon img {
  width: 30px;
  height: 30px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--gray);
}

/* Integration Section */
.integration {
  background-color: var(--light);
  border-radius: 16px;
  padding: 60px;
  margin: 40px 0;
}

.integration-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.integration-text {
  flex: 1;
}

.integration-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.integration-text p {
  color: var(--gray);
  margin-bottom: 30px;
}

.integration-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.integration-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* How It Works */
.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  background-color: var(--primary);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 10px;
}

.step-content p {
  color: var(--gray);
}

/* Estilos para a nova seção de planos */
.plan-description {
  color: var(--gray);
  margin: 15px 0 25px;
  font-size: 16px;
}

.included-features {
  margin-top: 25px;
}

.included-features h4 {
  margin-bottom: 15px;
  font-weight: 450;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: var(--gray);
}

.check-icon {
  color: #2ecc71; /* Verde */
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Ajuste para os cards */
.pricing-card {
  text-align: left;
  position: relative;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* Pricing */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  border-radius: 16px;
  padding: 40px 30px;
  background-color: var(--light);
  text-align: center;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.price {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}

.price span {
  font-size: 16px;
  font-weight: normal;
  color: var(--gray);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--gray);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #1a4ab9);
  color: white;
  padding: 80px 0;
  text-align: center;
  border-radius: 16px;
  margin: 80px 0;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.cta-button.secondary {
  background-color: white;
  color: var(--primary);
  margin-left: 15px;
}

.cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  padding: 60px 0 30px;
  background-color: var(--light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--gray);
}

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: shake 5s infinite;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* Animação de tremor */
@keyframes shake {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  2% {
    transform: translateY(-5px) rotate(-5deg);
  }
  4% {
    transform: translateY(5px) rotate(5deg);
  }
  6% {
    transform: translateY(-5px) rotate(-5deg);
  }
  8% {
    transform: translateY(5px) rotate(5deg);
  }
  10% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Estilos melhorados para o WhatsApp */
.whatsapp-link {
  position: relative;
  display: block;
}

.pulse-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  border: 2px solid #25d366;
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

/* Efeito de notificação */
@keyframes notification {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  animation: notification 1s infinite alternate;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .integration-content {
    flex-direction: column;
    gap: 30px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}
/* PÁGINA CONTACTO */
/* ===== ESTILOS DO FORMULÁRIO - ALINHADO COM A LP ===== */
.form-hero {
  background: linear-gradient(135deg, var(--primary), #1a4ab9);
  color: var(--white);
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.form-hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.form-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.form-container {
  max-width: 800px;
  margin: -80px auto 100px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  padding: 60px;
  position: relative;
  z-index: 10;
}

/* Barra de progresso */
.form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
  padding: 0 2rem;
}

.form-progress:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50px;
  right: 50px;
  height: 4px;
  background: var(--light);
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.75rem;
  border: 3px solid var(--white);
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: var(--primary);
  color: var(--white);
}

.step-label {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
  transition: all 0.3s ease;
}

.progress-step.active .step-label {
  color: var(--primary);
  font-weight: 600;
}

/* Estilos dos passos do formulário */
.form-step {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Campos do formulário */
.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light);
  color: var(--dark);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 95, 222, 0.15);
  outline: none;
  background: var(--white);
}

/* Grupos de opções */
.form-radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.form-radio {
  position: absolute;
  opacity: 0;
}

.form-radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--light);
  text-align: center;
}

.form-radio:checked + .form-radio-label {
  border-color: var(--primary);
  background: rgba(45, 95, 222, 0.05);
  box-shadow: 0 5px 15px rgba(45, 95, 222, 0.1);
}

.form-radio-label i {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

/* Chips selecionáveis */
.form-chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.form-chip {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--light);
  border-radius: 50px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-right: 8px;
  margin-bottom: 8px;
}

.form-chip:hover {
  background: #e0e0e0;
}

.form-chip.selected {
  background: var(--primary);
  color: var(--white);
  font-weight: 500;
}

/* Rodapé do formulário */
.form-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Preview da integração */
.zoho-integration-preview {
  background: var(--light);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.zoho-logo {
  width: 80px;
  height: auto;
  opacity: 0.9;
}

.zoho-integration-preview h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.zoho-integration-preview p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 768px) {
  .form-hero {
    padding: 80px 0 100px;
  }

  .form-container {
    padding: 2rem;
    margin: -60px auto 3rem;
  }

  .form-progress {
    padding: 0;
  }

  .form-progress:before {
    left: 30px;
    right: 30px;
  }

  .form-radio-group {
    grid-template-columns: 1fr;
  }

  .zoho-integration-preview {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .form-progress:before {
    display: none;
  }

  .progress-step {
    flex: 1;
  }

  .step-label {
    font-size: 0.75rem;
  }
}
/* Página Obrigado / Thakyou Page */
/* Loader */
.form-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #4caf50, #2a4365);
  animation: loader 2s linear infinite;
  z-index: 1000;
}

@keyframes loader {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

/* Mensagem de Obrigado */
.thank-you-message {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh; /* Aumentei para dar mais espaço */
  text-align: center;
  padding: 20px;
}

.thank-you-box {
  background: white;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  width: 60px;
  height: 60px;
  fill: #4caf50;
  margin-bottom: 20px;
}

.thank-you-box h2 {
  color: #2a4365;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.thank-you-text {
  color: #4a5568;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.thank-you-phone {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2a4365;
  margin-bottom: 25px;
}

.thank-you-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsivo */
@media (max-width: 600px) {
  .thank-you-box {
    padding: 30px 20px;
  }

  .thank-you-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .thank-you-buttons a {
    width: 100%;
  }
}
