

 :root {
  --primary: #2E4A5A;        
  --primary-light: #3F6174;
  --primary-dark: #1F3440; 
  --accent: #ff6b00;       
  --text: #333333;
  --text-light: #666666;
  --background: #ffffff;    
  --background-alt: #f5f9ff;
  --border: #dde5f0;         
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
}
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--background);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  header {
    background-color: var(--background);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0px;
    z-index: 100;
    padding: 0px 0;
  }
  
  .header-container {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%;
  padding: 0; 
  height: 90px;
}
  
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  height: 70px; 
  width: auto;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.logo-subtext {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-left: 10px;
  font-weight: normal;
}


@media (max-width: 768px) {
  .logo-image {
    height: 40px;
    margin-bottom: 3px;
    margin-top: 5px;
    margin-left: 5px;
  }
  
  .logo-subtext {
    font-size: 0.8rem;
    margin-left: 5px;
  }
}

  nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-right: 40px;
  }
  
  nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }
  
  nav a:hover {
    color: var(--primary);
  }
  
  nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
  }
  
  nav a:hover::after {
    width: 100%;
  }
  
  .hero-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
  }
  
  .hero-content {
    flex: 1;
    min-width: 300px;
  }
  
  .hero-form {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .form-button {
    width: 100%;
    padding: 15px 30px;
    background-color: white;
    color: var(--primary);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
  }
  
  .form-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background-color: white;
    color: var(--primary);
  }
  
  .form-title {
    color: white;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.4rem;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .form-input:focus {
    outline: 2px solid var(--accent);
  }
  
  .form-button {
    width: 100%;
    padding: 12px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .form-button:hover {
    background-color: #e55f00;
  }
   #formMessage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #4CAF50;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  
  #formMessage.show {
    opacity: 1;
    visibility: visible;
  }
  
  #formMessage p:first-child {
    color: #2c5aa0;
    margin: 0;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  #formMessage p:last-child {
    color: #666;
    margin: 0;
    font-size: 1rem;
  }
  
 @media (max-width: 768px) {
  .hero-form {
    width: 100%; 
    margin-left: 0; 
  }
}

    .hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
    
    .hero-form {
  flex: 0 0 350px; 
  margin-left: auto; 
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
  .hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 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;
  }
  
  .hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  flex: 2; 
}
  
  .hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .hero-button {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow);
  }
  
  .hero-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }
  
  .operadoras {
    padding: 60px 0;
    background-color: var(--background);
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 15px;
  }
  
  .section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .operadoras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .operadora-item {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .operadora-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
  }

  .operadora-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    opacity: 1;
    transition: all 0.3s ease;
  }
  
  .planos {
    padding: 80px 0;
    background-color: var(--background-alt);
  }
  
  .planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .plano-card {
    background-color: var(--background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
  }
  
  .plano-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
  }
  
  .plano-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .plano-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  
  .plano-body {
    padding: 25px;
  }
  
  .plano-body p {
    margin-bottom: 20px;
    color: var(--text-light);
  }
  
  .plano-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
  }
  
  .plano-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
  }
  
  .plano-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
 

  .vantagens {
    padding: 80px 0;
    background-color: var(--background);
  }
  
  .vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  
  .vantagem-item {
    background-color: var(--background-alt);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid var(--border);
  }
  
  .vantagem-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
  }
  
  .vantagem-item p {
    font-weight: 500;
    margin-top: 15px;
  }

  .hidden {
  display: none !important;
}
  
  .cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
  }
  
  .cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow);
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }
  
  footer {
    background-color: var(--background);
    color: var(--text);
    padding: 20px 0 20px;
    text-align: center;
    border-top: 1px solid var(--border);
  }
  
  .footer-content {
    margin-bottom: 20px;
  }
  
  .footer-disclaimer {
    padding-top: 0px;
    font-size: 0.9rem;
    color: var(--text-light);
  }

  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      gap: 15px;
    }
    
    nav ul {
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .hero p {
      font-size: 1.1rem;
    }
    
    .planos-grid,
    .vantagens-grid {
      grid-template-columns: 1fr;
    }
  }

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;  
    align-items: flex-start;  
    gap: 20px;
  }

  .hero-form {
    width: 100%;
    max-width: 400px;         
    margin-left: 0;           
    margin-top: 20px;
  }
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-link i {
    font-size: 32px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-link i {
        font-size: 28px;
    }
}
html {
  scroll-behavior: smooth;
}
.menu-toggle {
  display: none; 
  cursor: pointer;
  color: var(--primary);
  font-size: 1.8rem;
  padding: 5px;
  transition: all 0.3s ease;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 30px;
  order: -1; 
  margin-right: 15px;
}

@media (max-width: 768px) {
.menu-toggle {
  display: none;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.8rem;
  padding: 5px;
  margin-left: auto; 
  transition: all 0.3s ease;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 30px;
}

.menu-toggle:hover {
  background-color: rgba(0, 85, 164, 0.1);
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  nav {
    display: flex;
    width: 100%;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  nav.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: -1;
  }
  
  .logo {
    flex: 1;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  .logo-image {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
  
  .logo-subtext {
    font-size: 0.8rem;
    margin-left: 5px;
  }
}
}

/* Estilos para a página de agradecimento */
.pagina-obrigado {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.pagina-obrigado main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thank-you-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 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;
}

.thank-you-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

.thank-you-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.next-steps {
    margin: 30px 0;
    text-align: left;
    background: rgba(var(--primary-rgb), 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.next-steps h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
    color: var(--primary-dark);
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #444;
    line-height: 1.5;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 30px 20px;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-content p {
        font-size: 1.1rem;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .next-steps {
        padding: 20px;
    }
    
    .next-steps li {
        padding-left: 25px;
    }
}

/* Estilos para o footer na página de agradecimento */
.pagina-obrigado footer {
    color: #555;
    padding: 20px 0;
    text-align: center;
}

.pagina-obrigado .footer-content p {
    margin: 0;color: #555;
}

.pagina-obrigado .footer-disclaimer {
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.8;
}
footer {
    padding: 30px 20px; 
    font-size: 0.8rem;  
    line-height: 1.6;   
}

.footer-content {
    margin-bottom: 15px;
}

.footer-content a {
    color: var(--text-light); 
    text-decoration: none;    
    font-weight: 500;
    transition: color 0.3s ease, border-bottom-color 0.3s ease; 
}

.footer-content a:hover {
    color: var(--primary); 
    border-bottom-color: var(--primary); 
}

@media (max-width: 768px) {
  .hero-container {
    display: flex;
    flex-direction: column;
  }
  
  .hero-form {
    order: 1;
  }
  
  .hero-content {
    order: 2;
    margin-top: 30px; 
  }
  
}
@keyframes single-slow-blink-animation {
  0%, 30%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  15% {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
}

.hero-button, .cta-button, .form-button {
  animation: single-slow-blink-animation 7s infinite;
  
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}

.hero-button:hover, .cta-button:hover, .form-button:hover {
  animation: none;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}