 /* Reset básico pra tirar as margens padrão do navegador */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
     background-color: #f4f4f5;
     /* Fundo cinza bem clarinho */
     color: #333;
     line-height: 1.6;
 }

 /* Topo da página */
 header {
     background: #ffffff;
     padding: 10px 5%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 header h1 {
     color: #2563eb;
     /* Azul base */
     font-size: 1.5rem;
 }

 .header-buttons {
     display: flex;
     gap: 15px;
     align-items: center;
 }

 .btn-outline {
     padding: 8px 16px;
     border: 2px solid #2563eb;
     color: #2563eb;
     text-decoration: none;
     border-radius: 6px;
     font-weight: bold;
     transition: 0.3s;
 }

 .btn-outline:hover {
     background: #2563eb;
     color: #ffffff;
 }

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

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

 .hero {
     position: relative;
     text-align: center;
     padding: 100px 5%;
     color: #ffffff;
     background-color: #1f2937;
     overflow: hidden;
     z-index: 1;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -15px;
     left: -15px;
     right: -15px;
     bottom: -15px;

     background-image:
         linear-gradient(135deg, rgba(0, 69, 180, 0.6) 0%, rgba(216, 0, 182, 0.6) 100%),
         url('../images/banner.jpg');

     background-size: cover;
     background-position: center;

     /* Tirei um pouco do brightness(0.5) para brightness(0.8) porque a cor por cima já escurece a foto */
     filter: blur(8px) brightness(0.);

     z-index: -1;
 }

 .hero h2 {
     font-size: 2.5rem;
     margin-bottom: 15px;
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
     opacity: 0.9;
 }

 /* Configuração para alinhar o ícone e o texto do botão do Zap */
 .btn-whats {
     display: flex;
     align-items: center;
     gap: 8px;
     /* Dá aquele espacinho maroto entre a imagem e o texto */
 }

 /* Tamanho do ícone do WhatsApp */
 .icone-whats {
     width: 22px;
     /* Tamanho ideal pra ficar proporcional ao texto */
     height: auto;
 }

 .btn-outline {
     padding: 8px 16px;
     border: 2px solid #d800b6;
     /* Magenta */
     color: #d800b6;
     /* Magenta */
     text-decoration: none;
     border-radius: 6px;
     font-weight: bold;
     transition: 0.3s;
 }

 .btn-outline:hover {
     background: #d800b6;
     color: #ffffff;
 }

 .btn-primary {
     background: #22c55e;
     /* Verde estilo WhatsApp */
     color: #ffffff;
     padding: 15px 35px;
     text-decoration: none;
     font-size: 1.1rem;
     border-radius: 8px;
     font-weight: bold;
     display: inline-block;
     transition: background 0.3s;
 }

 .btn-primary:hover {
     background: #16a34a;
 }

 /* Caixinhas de Benefícios */
 .features {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
     padding: 60px 5%;
     max-width: 1200px;
     margin: 0 auto;
 }

 .card {
     background: #ffffff;
     padding: 30px;
     border-radius: 10px;
     text-align: center;
     width: 100%;
     max-width: 300px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
 }

 .card h3 {
     color: #1e40af;
     margin-bottom: 10px;
 }

 @keyframes pulse-highlight {
     0% {
         transform: scale(1.08);
         box-shadow: 0 10px 25px rgba(216, 0, 182, 0.15);
     }

     50% {
         transform: scale(1.11);
         box-shadow: 0 15px 35px rgba(216, 0, 182, 0.3);
     }

     100% {
         transform: scale(1.08);
         box-shadow: 0 10px 25px rgba(216, 0, 182, 0.15);
     }
 }

 .card-highlight {
     border: 2px solid #d800b6;
     animation: pulse-highlight 3s infinite ease-in-out;
     position: relative;
     z-index: 2;
 }

 .card-highlight::before {
     content: 'Melhor Escolha';
     position: absolute;
     top: -14px;
     left: 50%;
     transform: translateX(-50%);
     background: #d800b6;
     color: #ffffff;
     font-size: 0.8rem;
     font-weight: bold;
     padding: 4px 16px;
     border-radius: 20px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     white-space: nowrap;
 }

 .card-highlight h3 {
     color: #d800b6;
 }

 /* Benefícios Extras (30GB e Redes Sociais) */
 .extra-benefits {
     padding: 20px 5% 60px;
     background-color: #f4f4f5;
     /* mesmo fundo principal */
 }

 .benefits-container {
     max-width: 1000px;
     margin: 0 auto;
     background: #ffffff;
     border: 2px solid rgba(216, 0, 182, 0.2);
     border-radius: 12px;
     padding: 30px;
     display: flex;
     align-items: center;
     justify-content: space-around;
     flex-wrap: wrap;
     gap: 30px;
     text-align: center;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
 }

 .plan-data {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .data-amount {
     font-size: 3.5rem;
     font-weight: 900;
     color: #d800b6;
     line-height: 1;
 }

 .data-label {
     font-size: 1.1rem;
     font-weight: bold;
     color: #2563eb;
     text-transform: uppercase;
 }

 .benefits-divider {
     width: 2px;
     height: 80px;
     background-color: rgba(37, 99, 235, 0.2);
 }

 .unlimited-apps {
     max-width: 450px;
 }

 .unlimited-apps h4 {
     color: #1e40af;
     font-size: 1.3rem;
     margin-bottom: 5px;
 }

 .unlimited-apps p {
     font-size: 0.95rem;
     color: #4b5563;
     margin-bottom: 15px;
 }

 .app-icons {
     display: flex;
     justify-content: center;
     gap: 15px;
 }

 .app-icon {
     width: 40px;
     height: 40px;
     transition: transform 0.3s;
 }

 .app-icon:hover {
     transform: scale(1.15);
 }

 @media (max-width: 768px) {
     header {
         flex-direction: column;
         gap: 12px;
         padding: 15px 5%;
         box-shadow: 0 1px 3px rgba(0,0,0,0.02);
     }

     .logo {
         max-height: 45px;
     }

     .header-buttons {
         width: 100%;
         flex-direction: row;
         justify-content: center;
         gap: 8px;
     }

     .header-buttons .btn-outline {
         flex: 1;
         justify-content: center;
         padding: 8px 5px;
         font-size: 0.85rem;
         border: 1px solid transparent;
         background-color: rgba(216, 0, 182, 0.05);
         border-radius: 8px;
     }

     .header-buttons .icone-whats {
         width: 18px;
     }

     .benefits-divider {
         width: 80%;
         height: 2px;
         margin: 10px 0;
     }

     footer {
         padding: 40px 5% 20px;
     }

     .footer-content {
         flex-direction: column;
         align-items: center;
         text-align: center;
         gap: 30px;
         margin-bottom: 20px;
     }

     .footer-brand {
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .footer-logo {
         max-height: 50px;
     }

     .footer-whatsapps {
         align-items: center;
     }

     .footer-link {
         width: 100%;
         justify-content: center;
         background: rgba(255, 255, 255, 0.03);
         padding: 12px;
         border-radius: 8px;
         font-size: 1rem;
         border: 1px solid rgba(255, 255, 255, 0.05);
     }
 }

 /* Rodapé */
 footer {
     background: #111827;
     color: #d1d5db;
     padding: 60px 5% 20px;
     margin-top: 40px;
     border-top: 4px solid #d800b6;
 }

 .footer-content {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto 40px;
 }

 .footer-brand {
     max-width: 350px;
 }

 .footer-logo {
     max-height: 60px;
     border-radius: 8px;
     margin-bottom: 15px;
 }

 .footer-contact h4, .footer-social h4 {
     color: #ffffff;
     font-size: 1.2rem;
     margin-bottom: 20px;
 }

 .footer-whatsapps {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .footer-link {
     display: flex;
     align-items: center;
     gap: 10px;
     color: #d1d5db;
     text-decoration: none;
     transition: color 0.3s;
     font-size: 1.1rem;
 }

 .footer-link img {
     width: 24px;
     height: auto;
 }

 .footer-link:hover {
     color: #d800b6;
 }

 .footer-bottom {
     text-align: center;
     border-top: 1px solid #374151;
     padding-top: 20px;
     font-size: 0.9rem;
     color: #9ca3af;
 }