 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --primary-color: #1a1a1a;
    --secondary-color: #333333;
    --accent-color: #007bff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-light: #e9ecef;
    --shadow: rgba(0, 0, 0, 0.1);
  }

  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
    background-color: #0056b3;
    border-radius: 10px;
  }

  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .logo {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
  }

  .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
  }

  .nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: var(--primary-color);
  }

  .nav-cta {
    background: var(--accent-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .nav-cta:hover {
    background: #0056b3;
  }

  /* Mobile Menu */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
  }

  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
  }

  /* Hero Section - Melhor Responsividade */
  .hero {
    padding: 100px 0 60px;
    background: var(--bg-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    margin-bottom: clamp(20px, 4vw, 30px);
  }

  .hero h1 {
    font-size: clamp(28px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: clamp(15px, 3vw, 20px);
  }

  .hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--text-light);
    margin-bottom: clamp(30px, 5vw, 40px);
    line-height: 1.6;
  }

  .hero-buttons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    margin-bottom: clamp(40px, 6vw, 50px);
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--accent-color);
    color: white;
    padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 30px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 16px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    white-space: nowrap;
  }

  .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  }

  .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--border-light);
    padding: clamp(10px, 2vw, 13px) clamp(18px, 4vw, 28px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 16px);
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 4vw, 30px);
  }

  .stat-item {
    text-align: left;
  }

  .stat-number {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.3;
  }

  /* Hero Image - Melhor Responsividade */
  .hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }

  .hero-image img {
    width: 100%;
    height: clamp(300px, 40vw, 400px);
    object-fit: cover;
    display: block;
  }

  .hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 86, 179, 0.2) 100%);
  }

  .hero-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: clamp(15px, 3vw, 20px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: clamp(150px, 25vw, 180px);
  }

  .floating-card-icon {
    width: clamp(35px, 6vw, 40px);
    height: clamp(35px, 6vw, 40px);
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 10px;
    font-size: clamp(16px, 3vw, 18px);
  }

  .floating-card-text {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
  }

  .floating-card-subtext {
    font-size: clamp(10px, 2vw, 12px);
    color: var(--text-light);
    line-height: 1.3;
  }

  /* About Section */
  .about-section {
    padding: clamp(60px, 10vw, 80px) 0;
    background: var(--bg-light);
  }

  .section-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 60px);
  }

  .section-title {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: clamp(15px, 3vw, 20px);
  }

  .section-subtitle {
    font-size: clamp(16px, 3vw, 18px);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 60px);
    align-items: center;
  }

  .about-text h3 {
    font-size: clamp(24px, 4vw, 28px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: clamp(15px, 3vw, 20px);
  }

  .about-text p {
    color: var(--text-light);
    margin-bottom: clamp(15px, 3vw, 20px);
    line-height: 1.6;
    font-size: clamp(14px, 2vw, 16px);
  }

  .about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(15px, 3vw, 20px);
    margin-top: clamp(20px, 4vw, 30px);
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: clamp(12px, 2vw, 15px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .feature-icon {
    width: clamp(35px, 6vw, 40px);
    height: clamp(35px, 6vw, 40px);
    background: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: clamp(14px, 2vw, 16px);
  }

  .feature-text {
    font-size: clamp(13px, 2vw, 14px);
    font-weight: 500;
    color: var(--text-dark);
  }

  .about-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
  }

  /* Services Section */
  .services-section {
    padding: clamp(60px, 10vw, 80px) 0;
    background: var(--bg-white);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin-top: clamp(40px, 8vw, 60px);
  }

  .service-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
  }

  .service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
  }

  .service-content {
    padding: clamp(20px, 4vw, 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
  }

  .service-icon {
    width: clamp(45px, 8vw, 50px);
    height: clamp(45px, 8vw, 50px);
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(18px, 3vw, 20px);
    margin-bottom: clamp(15px, 3vw, 20px);
  }

  .service-card h3 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: clamp(12px, 2vw, 15px);
    line-height: 1.3;
  }

  .service-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: clamp(15px, 3vw, 20px);
    font-size: clamp(13px, 2vw, 14px);
    flex: 1;
  }

  .service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(13px, 2vw, 14px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
  }

  .service-link:hover {
    gap: 10px;
  }

  .service-image {
    height: clamp(200px, 30vw, 300px);
    width: 100%;
    object-fit: cover;
  }

  /* Specialist Section */
  .specialist-section {
    padding: clamp(60px, 10vw, 80px) 0;
    background: var(--bg-white);
  }

  .specialist-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(40px, 8vw, 60px);
    align-items: center;
  }

  .specialist-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }

  .specialist-info h3 {
    font-size: clamp(28px, 5vw, 32px);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
  }

  .specialist-title {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: clamp(15px, 3vw, 20px);
  }

  .specialist-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: clamp(20px, 4vw, 30px);
    font-size: clamp(14px, 2vw, 16px);
  }

  .specialist-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(12px, 2vw, 15px);
  }

  .highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: clamp(10px, 2vw, 12px);
    background: var(--bg-light);
    border-radius: 5px;
  }

  .highlight-item i {
    color: var(--accent-color);
    font-size: clamp(14px, 2vw, 16px);
  }

  .highlight-item span {
    font-size: clamp(13px, 2vw, 14px);
    font-weight: 500;
    color: var(--text-dark);
  }

  /* CTA Section */
  .cta-section {
    padding: clamp(15px, 3vw, 20px) 0;
    background: var(--bg-light);
    color: white;
    text-align: center;
  }

  .cta-section h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: clamp(15px, 3vw, 20px);
  }

  .cta-section p {
    font-size: clamp(16px, 3vw, 18px);
    margin-bottom: clamp(30px, 5vw, 40px);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  .cta-buttons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-cta-primary {
    background: var(--accent-color);
    color: white;
    padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 30px);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 16px);
    white-space: nowrap;
  }

  .btn-cta-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 30px);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 16px);
    white-space: nowrap;
  }

  .btn-cta-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
  }

  /* Contact Section */
  .contact-section {
    padding: clamp(60px, 10vw, 80px) 0;
    background: var(--bg-light);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(30px, 6vw, 60px);
    margin-top: clamp(40px, 8vw, 60px);
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 25px);
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: clamp(15px, 3vw, 20px);
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .contact-icon {
    width: clamp(40px, 7vw, 45px);
    height: clamp(40px, 7vw, 45px);
    background: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: clamp(16px, 3vw, 18px);
  }

  .contact-details h4 {
    font-size: clamp(15px, 2vw, 16px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
  }

  .contact-details a,
  .contact-details p {
    color: var(--text-light);
    text-decoration: none;
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1.4;
  }

  .contact-details a:hover {
    color: var(--accent-color);
  }

  /* Footer */
  .footer {
    background: var(--primary-color);
    color: white;
    padding: clamp(40px, 8vw, 60px) 0 clamp(20px, 4vw, 30px);
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(30px, 6vw, 40px);
    margin-bottom: clamp(30px, 6vw, 40px);
  }

  .footer-brand h3 {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 700;
    margin-bottom: clamp(12px, 2vw, 15px);
  }

  .footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: clamp(20px, 4vw, 25px);
    font-size: clamp(14px, 2vw, 15px);
  }

  .social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .social-links a {
    width: clamp(35px, 6vw, 40px);
    height: clamp(35px, 6vw, 40px);
    background: var(--accent-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: clamp(14px, 2vw, 16px);
  }

  .footer-section h4 {
    font-size: clamp(15px, 2vw, 16px);
    font-weight: 600;
    margin-bottom: clamp(15px, 3vw, 20px);
  }

  .footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-size: clamp(13px, 2vw, 14px);
  }

  .footer-section a:hover {
    color: white;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(15px, 3vw, 20px);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(12px, 2vw, 14px);
  }

  /* Responsive Breakpoints */
  @media (max-width: 1024px) {
    .hero-container {
      gap: 40px;
    }
    
    .container2 {
      margin: 0 20px;
    }
  }

  @media (max-width: 768px) {
    .nav-menu {
      display: none;
    }

    .mobile-menu-toggle {
      display: flex;
    }

    .hero {
      padding: 80px 0 60px;
      min-height: auto;
    }

    .hero-container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
      padding: 0 15px;
    }

    .hero-content {
      text-align: center;
      order: 2;
    }

    .hero-image {
      order: 1;
      margin: 0 -15px; /* Expande para fora do container */
    }

    .hero-image-container {
      max-width: none;
      border-radius: 0;
      box-shadow: none;
    }

    .hero-image img {
      height: clamp(250px, 50vw, 350px);
      border-radius: 0;
    }

    .hero-image-overlay {
      background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 86, 179, 0.3) 100%);
    }

    .hero-stats {
        /* grid-template-columns: 1fr; */
        gap: 20px;
        max-width: 300px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        flex-direction: row;
        text-align: center;
    }

    .stat-item{
      text-align: center;
    }

    .contact-info{
      display: flex;
        gap: clamp(20px, 4vw, 25px);
     
        flex-direction: column;
        align-content: flex-start;
        justify-content: center;
    }

    .hero-floating-card {
      
      margin: 20px auto 0;
      max-width: 250px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      left: 130px;
    }

    .about-content,
    .specialist-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .about-features {
      grid-template-columns: 1fr;
    }

    .specialist-highlights {
      grid-template-columns: 1fr;
    }

    .services-grid {
      grid-template-columns: 1fr;
    }

    .service-card {
      flex-direction: column;
    }

    .contact-grid {
      grid-template-columns: 1fr;
    }

    .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: start;
    }

    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }

    .btn-primary,
    .btn-secondary,
    .btn-cta-primary,
    .btn-cta-secondary {
      width: 100%;
      max-width: 280px;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .container,
    .nav-container {
      padding: 0 15px;
    }

    .hero-container {
      padding: 0 15px;
    }

    .hero-image {
      margin: 0 -15px; /* Mantém a imagem full-width */
    }

    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .hero-stats {
      gap: 15px;
    }

    .hero-floating-card {
      margin: 15px auto 0;
      max-width: 220px;
    }

    .services-grid {
      gap: 20px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      padding: clamp(15px, 3vw, 20px);
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .contact-icon {
      align-self: center;
    }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #333333;
  --accent-color: #007bff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-light: #e9ecef;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

.container,
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-menu li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

.nav-cta {
  background: var(--accent-color);
  color: white !important;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background: #0056b3;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
}

/* === MOBILE MENU ACTIVE === */
.nav-menu.active {
  display: flex;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  background: white;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.nav-menu.active li {
  width: 100%;
  margin: 10px 0;
}

.nav-menu.active a {
  width: 100%;
}

/* === HERO SECTION (EXEMPLO) === */
.hero {
  padding: 120px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* === MEDIA QUERIES === */
@media (max-width: 1024px) {
  .container,
  .nav-container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
  }

  .modal-area {
    background: #fff;
    width: 70%;
    max-height: 80%;
    overflow-y: auto;
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: slideIn 0.4s ease;
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
  }

  .modal-header h2 {
    margin: 0;
    font-size: 1.6rem;
    color: #005bb5;
  }

  .close-modal {
    cursor: pointer;
    font-size: 1.6rem;
    border: none;
    background: none;
    color: #555;
    transition: 0.2s;
  }
  .close-modal:hover {
    color: #000;
    transform: scale(1.2);
  }

  .modal-area h3 {
    margin-top: 20px;
    color: #005bb5;
  }

  .modal-area p {
    line-height: 1.6;
    margin-bottom: 12px;
  }

  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  @keyframes slideIn {
    from {transform: translateY(30px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
  }
  

.btn-termos{
  background-color: transparent;
  color: white;
  border: none;
  display: flex;
  font-size: 15px;
  padding-top: 10px;
}