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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.logo i {
    color: #ec4899;
    margin-right: 10px;
    font-size: 32px;
}

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

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ec4899;
}

.btn-login {
    background: #ec4899;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #db2777;
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    color: #ec4899;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(255, 0, 166, 0.615), rgba(223, 43, 124, 0.1)),
    url('./fotoPC.png') center/cover no-repeat,
    url('./fundo.png') center/cover no-repeat;
  z-index: -2;
}

/* Mobile - Centraliza APENAS a foto.jpg */
@media (max-width: 767px) {
  .hero-bg {
    background: 
      linear-gradient(135deg, rgba(255, 0, 166, 0.615), rgba(223, 43, 124, 0.1)),
      url('./foto2MOB.png') center 15% no-repeat,
      url('./fundo.png') center/cover no-repeat;
    
    background-size: 
      auto,    /* Gradiente */
      100% auto, /* Largura da foto + altura automática */
      cover    /* Fundo */ !important;
    
    background-position: 
      10 0,     /* Gradiente fixo */
      center,   /* foto.jpg perfeitamente centralizada */
      center;   /* fundo.png centralizado */
  }
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(219, 39, 119, 0.15));
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.highlight {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
}

.hero-text p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 800;
    font-family: Tahoma, Arial, sans-serif;
}
.hero-text .form-note  { 
 font-size: 1.25rem;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 800;
    font-family: Tahoma, Arial, sans-serif;
}
.hero-text .form-note1  { 
 font-size: 0.6rem;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.2;
    font-weight: 400;
    font-family: Tahoma, Arial, sans-serif;
}

.cpf-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.cpf-form h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: lab(16.27% 0.03 -10.41);
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.form-group input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ec4899;
    border-radius: 12px;
    font-size: 1.0rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #db2777;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.btn-consultar {
    background: #ec4899;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-consultar:hover:not(:disabled) {
    background: #db2777;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

.btn-consultar:disabled {
    background: #d1d5db;
    cursor: not-allowed;
}

.form-note {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
}

.feature-icon.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.feature-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Statistics Section */

.statistics {
    padding: 100px 0;
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
}
.feature-link {
  display: inline-block;
  margin-top: 15px;
  color: #ec4899;
  font-weight: 600;
  text-decoration: none;
}

.feature-link:hover {
  text-decoration: underline;
}

.partners-section {
  background: #f9fafb;
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  margin-top: 100px;
}

.partners-section h3 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #1f2937;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
  margin-bottom: 60px;
}

.partners-logos img {
  max-height: 70px;
  object-fit: contain;
}

.btn-partners {
  display: inline-block;
  background: #ec4899;
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-partners:hover {
  background: #db2777;
  transform: translateY(-2px);
}

.statistics .section-header h2,
.statistics .section-header p {
    color: white;
}

.statistics .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #ec4899;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #1f2937;
}

.stars {
    color: #ec4899;
}

.testimonial-card p {
    color: #6b7280;
    line-height: 1.6;
    font-style: italic;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 50px;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-form .form-group {
    flex-direction: column;
    gap: 20px;
}

.cta-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1.1rem;
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.btn-consultar-cta {
    background: white;
    color: #ec4899;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-consultar-cta:hover:not(:disabled) {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-consultar-cta:disabled {
    background: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 80px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #ec4899;
    margin-right: 10px;
    font-size: 28px;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h4 {
    color: #ec4899;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ec4899;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ec4899;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
}

.contact-item i {
    color: #ec4899;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .cpf-form {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}