 :root {
     --bg-dark: #0B0F14;
     --bg-section: #111827;
     --primary-accent: #10B981;
     --secondary-accent: #EAB308;
     --text-light: #F3F4F6;
     --text-muted: #9CA3AF;
     --border-color: #374151;
     --shadow-color: rgba(0, 0, 0, 0.25);
     --bg: #111827;
     --accent: #10B981;
     --text: #E5E7EB;
     --muted: #9CA3AF;
     --border: #1F2937;
     --shadow: 0 10px 30px rgba(0, 0, 0, .45);
     --radius: 16px;
 }

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

 html {
     scroll-behavior: smooth;
 }

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

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

 section {
     padding: 80px 0;
 }

 section:nth-child(even) {
     background-color: var(--bg-section);
 }

 h1,
 h2,
 h3 {
     font-weight: 900;
     line-height: 1.2;
     color: var(--text-light);
 }

 h1 {
     font-size: 48px;
     margin-bottom: 20px;
 }

 h2 {
     font-size: 36px;
     text-align: center;
     margin-bottom: 20px;
 }

 .section-subtitle {
     text-align: center;
     color: var(--text-muted);
     font-size: 18px;
     max-width: 700px;
     margin: 0 auto 60px;
 }

 p {
     color: var(--text-muted);
     margin-bottom: 15px;
 }

 a {
     color: var(--primary-accent);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 a:hover {
     color: var(--secondary-accent);
 }

 .btn {
     display: inline-block;
     background-color: var(--primary-accent);
     color: var(--bg-dark);
     font-weight: 700;
     padding: 14px 28px;
     border-radius: 12px;
     text-decoration: none;
     transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
     border: none;
     cursor: pointer;
 }

 .btn:hover {
     background-color: var(--secondary-accent);
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
     color: var(--bg-dark);
 }

 .card {
     background-color: var(--bg-dark);
     padding: 30px;
     border-radius: 16px;
     box-shadow: 0 8px 24px var(--shadow-color);
     border: 1px solid var(--border-color);
     height: 100%;
 }


 .header {
     background-color: var(--bg-section);
     padding: 20px 0;
     position: sticky;
     top: 0;
     z-index: 1000;
     border-bottom: 1px solid var(--border-color);
     box-shadow: 0 4px 12px var(--shadow-color);
 }

 .header .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .header__logo {
     font-size: 28px;
     font-weight: 900;
     color: var(--text-light);
 }

 .header__logo span {
     color: var(--primary-accent);
 }

 .header__age-badge {
     background-color: var(--secondary-accent);
     color: var(--bg-dark);
     font-weight: bold;
     padding: 5px 10px;
     border-radius: 8px;
     font-size: 14px;
     margin-left: 15px;
 }

 .nav__list {
     list-style: none;
     display: flex;
     gap: 30px;
 }

 .nav__link {
     color: var(--text-light);
     font-weight: 700;
     font-size: 16px;
     position: relative;
     padding-bottom: 5px;
 }

 .nav__link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background-color: var(--primary-accent);
     transition: width 0.3s ease;
 }

 .nav__link:hover::after {
     width: 100%;
 }

 .burger-menu {
     display: none;
     font-size: 28px;
     cursor: pointer;
     color: var(--text-light);
 }


 #inicio {
     padding-top: 100px;
 }

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

 .hero__text-content h1 {
     font-size: 48px;
 }

 .hero__subtitle {
     font-size: 18px;
     margin-bottom: 30px;
 }

 .hero__bullets {
     list-style: none;
     padding: 0;
     margin: 30px 0;
 }

 .hero__bullets li {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 15px;
     font-size: 18px;
 }

 .hero__bullets i {
     color: var(--primary-accent);
     font-size: 24px;
     width: 30px;
     text-align: center;
 }

 .hero__image-placeholder {
     width: 100%;
     aspect-ratio: 16 / 9;
     background: linear-gradient(45deg, var(--bg-section), var(--bg-dark));
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     color: var(--text-muted);
     border: 1px solid var(--border-color);
     box-shadow: 0 10px 30px var(--shadow-color);
 }

 .hero__image-placeholder img {
     width: 100%;
 }

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

 .about__text-content h3 {
     font-size: 24px;
     color: var(--primary-accent);
     margin-bottom: 15px;
 }

 .about__image-placeholder {
     width: 100%;
     aspect-ratio: 12 / 8;
     background-color: var(--bg-dark);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     color: var(--text-muted);
     border: 1px solid var(--border-color);
 }

 .about__image-placeholder img {
     width: 100%;
 }

 .services__grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

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

 .service-item i {
     font-size: 40px;
     color: var(--primary-accent);
     margin-bottom: 20px;
 }

 .service-item h3 {
     font-size: 20px;
     margin-bottom: 10px;
 }


 .how-it-works__grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
     position: relative;
 }

 .how-it-works-item h3 {
     font-size: 20px;
     margin-bottom: 15px;
     color: var(--primary-accent);
 }

 .how-it-works__flow-placeholder {
     width: 100%;
     margin-top: 60px;
     aspect-ratio: 14 / 6;
     background-color: var(--bg-section);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     color: var(--text-muted);
     border: 1px solid var(--border-color);
 }


 .comparator-block {
     background-color: var(--bg-dark);
     padding: 30px;
     border-radius: 16px;
     margin-bottom: 40px;
     border: 1px solid var(--border-color);
     box-shadow: 0 8px 24px var(--shadow-color);
 }

 .comparator__grid {
     display: grid;
     grid-template-columns: 0.5fr 1fr 1fr 0.5fr;
     gap: 30px;
     align-items: center;
 }

 .comparator__logo-placeholder {
     width: 100%;
     min-height: 80px;
     background-color: var(--bg-section);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     color: var(--text-muted);
     border: 1px dashed var(--border-color);
 }

 .comparator__logo-placeholder img {
     width: 100%;
 }

 .comparator-block h3 {
     font-size: 22px;
     margin-bottom: 10px;
 }

 .rating {
     color: var(--secondary-accent);
     font-size: 20px;
 }

 .legal-note {
     font-size: 14px;
     color: var(--text-muted);
     margin-top: 20px;
     text-align: center;
 }


 .reviews__grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
 }

 .review-card {
     border-left: 4px solid var(--primary-accent);
     padding-left: 25px;
 }

 .review-card p {
     font-style: italic;
 }

 .review-card footer {
     font-weight: bold;
     color: var(--text-light);
 }


 .contact__content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
 }

 .contact__info h3 {
     font-size: 24px;
     color: var(--primary-accent);
     margin-bottom: 20px;
 }

 .contact__address {
     margin-bottom: 20px;
 }

 .contact__address strong {
     display: block;
     color: var(--text-light);
 }

 .contact__form .form-group {
     margin-bottom: 20px;
 }

 .contact__form input,
 .contact__form textarea {
     width: 100%;
     padding: 15px;
     border-radius: 8px;
     border: 1px solid var(--border-color);
     background-color: var(--bg-dark);
     color: var(--text-light);
     font-size: 16px;
 }

 .contact__form input:focus,
 .contact__form textarea:focus {
     outline: none;
     border-color: var(--primary-accent);
     box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
 }

 .contact__form .checkbox-group {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .contact-map-placeholder {
     margin-top: 60px;
     width: 100%;
     aspect-ratio: 12 / 5;
     background-color: var(--bg-section);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     color: var(--text-muted);
     border: 1px solid var(--border-color);
 }


 .faq-item {
     border-bottom: 1px solid var(--border-color);
     padding: 20px 0;
 }

 .faq-item:last-child {
     border-bottom: none;
 }

 .faq-item h3 {
     font-size: 20px;
     margin-bottom: 10px;
 }


 .footer {
     background-color: var(--bg-section);
     padding-top: 80px;
 }

 .footer__grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 40px;
     padding-bottom: 60px;
 }

 .footer__col h3 {
     font-size: 20px;
     margin-bottom: 20px;
     color: var(--text-light);
 }

 .footer__list {
     list-style: none;
 }

 .footer__list li {
     margin-bottom: 10px;
 }

 .footer__list a {
     color: var(--text-muted);
 }

 .footer__list a:hover {
     color: var(--primary-accent);
 }

 .footer__disclaimer {
     padding: 40px 0;
     border-top: 1px solid var(--border-color);
     border-bottom: 1px solid var(--border-color);
     text-align: center;
 }

 .footer__disclaimer p {
     max-width: 900px;
     margin: 0 auto;
     font-size: 14px;
 }

 .footer__logos-placeholder {
     margin: 30px auto;
     width: 100%;
     max-width: 900px;
     height: 120px;
     background-color: var(--bg-dark);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     color: var(--text-muted);
     border: 1px solid var(--border-color);
 }

 .footer__bottom-bar {
     padding: 20px 0;
     text-align: center;
     font-size: 14px;
     color: var(--text-muted);
 }


 @media (max-width: 1024px) {

     .hero__content,
     .about__content {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .hero__text-content {
         order: 2;
     }

     .hero__image-placeholder {
         order: 1;
         margin-bottom: 40px;
     }

     .hero__bullets {
         justify-content: center;
         display: inline-flex;
         flex-wrap: wrap;
     }

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

     .how-it-works__grid {
         grid-template-columns: 1fr 1fr;
     }

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

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

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

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

 @media (max-width: 768px) {
     h1 {
         font-size: 36px;
     }

     h2 {
         font-size: 28px;
     }

     section {
         padding: 60px 0;
     }

     .nav {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background-color: var(--bg-section);
         flex-direction: column;
         padding: 20px 0;
     }

     .nav.is-open {
         display: flex;
     }

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

     .nav__link {
         padding: 15px 0;
     }

     .burger-menu {
         display: block;
     }

     .services__grid,
     .how-it-works__grid,
     .comparator__grid {
         grid-template-columns: 1fr;
     }

     .comparator-block {
         text-align: center;
     }

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

     .footer__grid {
         grid-template-columns: 1fr;
         text-align: center;
     }
 }

 .np-hidden {
     display: none !important;
 }

 .np-backdrop {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, .55);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     padding: 24px;
 }

 .np-card {
     width: min(720px, 95vw);
     background: var(--bg);
     color: var(--text);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     box-shadow: var(--shadow);
 }

 .np-card header {
     padding: 18px 20px;
     border-bottom: 1px solid var(--border);
     display: flex;
     gap: 10px;
     align-items: center
 }

 .np-card header h3 {
     margin: 0;
     font-size: 1.1rem
 }

 .np-card .np-body {
     padding: 18px 20px;
     line-height: 1.55
 }

 .np-card .np-actions {
     display: flex;
     gap: 10px;
     padding: 18px 20px;
     border-top: 1px solid var(--border);
     flex-wrap: wrap
 }

 .np-btn {
     border: 1px solid var(--border);
     background: #0f172a;
     color: var(--text);
     padding: 10px 14px;
     border-radius: 12px;
     cursor: pointer;
     transition: .2s;
 }

 .np-btn:hover {
     transform: translateY(-1px)
 }

 .np-btn-accent {
     background: var(--accent);
     color: #0b0f14;
     border-color: transparent;
     font-weight: 600
 }

 .np-btn-ghost {
     background: transparent
 }

 .np-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: #0f172a;
     border: 1px solid var(--border);
     color: var(--text);
     padding: 6px 10px;
     border-radius: 999px;
     font-size: .85rem
 }

 .np-cookiebar {
     position: fixed;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 9998;
     display: flex;
     justify-content: center;
     padding: 20px;
 }

 .np-cookiebar .np-card {
     width: min(1100px, 96vw);
     display: grid;
     grid-template-columns: 1fr auto;
     gap: 16px
 }

 .np-cookiebar .np-card .np-body {
     padding: 18px 20px
 }

 .np-cookiebar .np-actions {
     justify-content: flex-end
 }

 .np-grid {
     display: grid;
     gap: 14px
 }

 .np-settings {
     grid-template-columns: 1fr 1fr
 }

 .np-item {
     border: 1px solid var(--border);
     border-radius: 12px;
     padding: 14px
 }

 .np-item h4 {
     margin: .1rem 0 .35rem;
     font-size: 1rem
 }

 .np-item p {
     margin: 0;
     color: var(--muted);
     font-size: .95rem
 }

 .np-switch {
     display: flex;
     align-items: center;
     gap: 10px
 }

 .np-switch input {
     accent-color: var(--accent);
     width: 18px;
     height: 18px
 }

 @media (max-width: 720px) {
     .np-cookiebar .np-card {
         grid-template-columns: 1fr
     }

     .np-settings {
         grid-template-columns: 1fr
     }
 }

 .np-18 h1 {
     font-size: 1.6rem;
     margin: 0 0 .5rem
 }

 .np-18 p {
     color: var(--muted);
     margin: .25rem 0
 }




 .content-section {
     padding: 40px 0;
 }

 .last-updated {
     text-align: center;
     color: var(--text-muted);
     font-style: italic;
     margin-bottom: 40px;
 }

 .content-section h1 {
     text-align: center;
 }

 .content-section section {
     padding: 10px;
     border-radius: 5px;
 }

 .content-section ul {
     margin-left: 20px;
 }

 .help-card {
     background-color: var(--bg-section);
     border: 1px solid var(--border-color);
     border-left: 5px solid var(--danger-color);
     padding: 25px;
     border-radius: 8px;
     margin-bottom: 20px;
 }

 .content-section .help-card h3 {
     color: var(--text-light);
     margin-top: 0;
     margin-bottom: 10px;
 }

 .content-section.help-card a {
     font-size: 18px;
 }

 .content-section .icon-list li {
     list-style-type: none;
     display: flex;
     align-items: flex-start;
     gap: 15px;
 }

 .content-section .icon-list i {
     margin-top: 5px;
     color: var(--primary-accent);
     width: 20px;
     text-align: center;
 }.footer-imgs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.footer-imgs img {
  height: 43px;
  margin: 10px;
}