/* =========================
   CSS RESET & BASE STYLES
=========================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: linear-gradient(160deg, #092415 0%, #125D2B 70%, #14518B 100%);
  color: #F2F6F3;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2678C0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #50db87;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
}
section, main, footer, header, nav, aside, article {
  box-sizing: border-box;
}
/* =========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #F2F6F3;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
small {
  font-size: 0.85rem;
  opacity: 0.85;
}
p {
  font-size: 1rem;
  margin: 0 0 12px 0;
}

strong {
  color: #50db87;
  font-weight: 700;
}

/* =========================
   LAYOUT: CONTAINERS
=========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 20px;
  background: #F2F6F3;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(25,90,135,0.09);
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #125D2B;
  transition: box-shadow 0.2s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px 2px rgba(38,120,192,0.14), 0 0 0 4px #14518B10;
  transform: translateY(-3px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: rgba(21,43,59,0.25);
  border-radius: 14px;
  padding: 26px 20px 18px 20px;
  min-width: 220px;
  box-shadow: 0 2px 20px 0 rgba(18,93,43,0.09);
  border:1.5px solid #125D2B22;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, border-color 0.2s;
}
.feature-item:hover{
  box-shadow:0 6px 32px 0 rgba(38,120,192,0.13);
  border-color: #50db87;
}
.feature-item img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px #50db87);
}

/****************************
 HERO / CTA / SPECIAL SECTIONS
*****************************/
.hero, .hero-contact {
  padding: 58px 0 44px 0;
  background: linear-gradient(180deg, #14518B 0%, #125D2B 100%);
  color: #F2F6F3;
  display: flex;
  align-items: center;
  min-height: 320px;
  position: relative;
  z-index: 1;
}
.hero .content-wrapper, .hero-contact .content-wrapper {
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.hero h1, .hero-contact h1 {
  font-size: 2.8rem;
  background: linear-gradient(92deg,#50db87 5%, #2678C0 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  filter: drop-shadow(0 2px 12px #50db8733);
}
.hero h2, .hero-contact h2 {
  color: #F2F6F3;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/*************
 BUTTONS
*************/
.cta, a.cta, button.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2678C0;
  color: #fff !important;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.10rem;
  padding: 14px 32px;
  border: none;
  border-radius: 64px;
  box-shadow: 0 0 12px 2px #2678C050;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
  margin-top: 18px;
  text-shadow: 0 0 10px #14518B90;
}
.cta:hover, .cta:focus {
  background: #125D2B;
  color: #fff;
  box-shadow: 0 0 20px 3px #2678C044, 0 0 0 3px #14518B33;
  transform: translateY(-2px) scale(1.03);
}
button, input[type="submit"] {
  font-family: inherit;
  font-size: inherit;
}

/*************
 TABLES
*************/
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
  background: #1a2939;
  color: #F2F6F3;
  font-size: 1rem;
  box-shadow: 0 4px 24px 0 rgba(18,93,43,.05);
  margin-top: 7px;
}
thead {
  background: #125D2B;
}
th, td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid #2678C055;
}
th {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #50db87;
  font-weight: 800;
  font-size: 1.02rem;
}
tr:last-child td {
  border-bottom: none;
}

/*************
 NAVIGATION
*************/
header {
  position: relative;
  z-index: 120;
  background: #092415ee;
  box-shadow: 0 4px 18px 0 #125D2B0c;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 24px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  background: none;
  border-radius: 10px;
  color: #F2F6F3;
  padding: 7px 15px;
  font-weight: 500;
  font-size: 1.01rem;
  transition: color 0.2s, background 0.17s, box-shadow 0.19s;
  position: relative;
  z-index: 2;
}
header nav a.cta {
  background: linear-gradient(90deg,#2678C0 70%, #50db87 110%);
  color: #fff !important;
  box-shadow: 0 0 8px 2px #50db8744;
  font-weight: 700;
}
header nav a:hover,
header nav a:focus {
  background: #125D2B99;
  color: #50db87;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #125D2B;
  color: #50db87;
}
header img {
  height: 46px;
  width: auto;
  transition: filter 0.2s;
}
header img:hover, header img:focus {
  filter: brightness(1.10) drop-shadow(0 0 10px #50db8780);
}

/***********
  MOBILE MENU
*************/
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #2678C0;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  z-index: 1021;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #125D2B55;
  color: #50db87;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 90vw;
  max-width: 325px;
  background: #111C23ee;
  box-shadow: -2px 0 28px 2px #125D2B55;
  z-index: 1007;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.68,-0.04,.46,1.28);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #50db87;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 16px 18px;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #2678C0;
  background: #14518B33;
  border-radius: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 32px 40px 28px 28px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  border-radius: 8px;
  padding: 11px 7px;
  font-weight: 500;
  font-size: 1.14rem;
  text-align: left;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2678C099;
  color: #50db87;
}
@media (min-width: 1020px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 1019px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
}

/*************
 FOOTER
*************/
footer {
  background: #0a1c23;
  color: #F2F6F3;
  padding: 36px 0 28px 0;
  border-top: 2px solid #2678C055;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
}
.footer-branding img {
  width: 40px;
  margin-bottom: 4px;
}
.footer-branding span {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #50db87;
}
.footer-branding small {
  opacity: 0.74;
  color: #F2F6F3;
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-links a {
  color: #2678C0;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  transition: color 0.17s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #50db87;
}
.footer-contact span,
.footer-contact a {
  color: #F2F6F3;
  opacity: 0.95;
  font-size: 0.98rem;
  vertical-align: middle;
}
.footer-contact img {
  width: 18px; height: 18px;
  display: inline-block;
  margin-right: 8px;
  filter: brightness(1.3) drop-shadow(0 0 8px #50db8715);
}

/*************
 SECTION LAYOUTS
*************/
.features {
  background: #0f242e;
  border-radius: 32px;
  margin-bottom: 48px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.features h2 {
  color: #50db87;
  margin-bottom: 8px;
}
.services-overview ul,
.faq-highlight ul,
.privacy-policy ul,
.gdpr ul,
.cookies-policy ul,
.about ul {
  padding-left: 24px;
  margin-bottom: 14px;
  color: #F2F6F3;
  font-size: 1.04rem;
}
.services-overview li,
.faq-highlight li,
.privacy-policy li,
.gdpr li,
.cookies-policy li,
.about li {
  margin-bottom: 8px;
}

/************
 SERVICE CARDS
*************/
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.service-card {
  background: #162d3d;
  color: #F2F6F3;
  border-radius: 12px;
  padding: 22px 18px 14px 18px;
  min-width: 210px;
  max-width: 360px;
  flex: 1 1 220px;
  box-shadow: 0 2px 12px 0 #125D2B12;
  margin-bottom: 20px;
  border-left: 4px solid #2678C0;
  position: relative;
  transition: box-shadow 0.26s, border-color 0.17s, transform 0.15s;
}
.service-card:hover {
  box-shadow: 0 8px 40px 5px #2678C022;
  border-left-color: #50db87;
  transform: translateY(-2px) scale(1.02);
}
.service-card h2 {
  color: #50db87;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

/************
 CTA PRINCIPAL, FAQ, OTHERS
*************/
.cta-principal,
.cta {
  background: linear-gradient(85deg,#14518B 35%, #125D2B 100%);
  color: #F2F6F3;
  border-radius: 24px;
  padding: 32px 12px 38px 12px;
  text-align: center;
  margin: 46px 0 28px 0;
  box-shadow: 0 2px 16px 2px #125D2B0a;
  position: relative;
}
.cta-principal p, .cta p {
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.faq, .faq-highlight {
  background: #162d3db3;
  padding: 30px 16px 34px 16px;
  border-radius: 18px;
  margin-bottom: 42px;
}
.faq h1, .faq-highlight h2 {
  color: #50db87;
}
.faq dt {
  margin-top: 18px;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #2678C0;
  font-size: 1.06rem;
}
.faq dd {
  margin-left: 0;
  margin-bottom: 9px;
  color: #F2F6F3;
  font-size: 1.03rem;
}

/**************
 PRICING TABLE WRAPPER
**************/
.pricing-table {
  background: #162d3db5;
  border-radius: 20px;
  margin-bottom: 36px;
  box-shadow: 0 2px 18px #2678C011;
  padding: 25px 0;
}
.pricing-table h2 {
  color: #50db87;
  margin: 0 0 15px 0;
}

/************
 ABOUT, THANK YOU, TERMS, PRIVACY
**************/
.about, .thank-you, .terms-of-use, .privacy-policy, .gdpr, .cookies-policy {
  background: #162d3da6;
  border-radius: 18px;
  margin-bottom: 40px;
  box-shadow: 0 1px 8px #125D2B10;
}
.about h1, .thank-you h1 {
  background: linear-gradient(87deg,#2678C0 5%, #50db87 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/************
 OL/STEP LIST - COMO FUNCIONA
*************/
.steps ol {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 10px;
  margin-bottom: 18px;
  padding-left: 0;
}
.steps li {
  background: #F2F6F3;
  color: #0f242e;
  border-radius: 12px;
  box-shadow: 0 1px 8px #2678C018;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.08rem;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.steps li img {
  width: 34px; height: 34px;
  margin-right: 6px;
  filter: drop-shadow(0 0 8px #2678C099);
}

/******************
 COOKIES BANNER
*******************/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 11003;
  background: #162d3de6;
  color: #F2F6F3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 16px 26px 16px;
  box-shadow: 0 -12px 34px #14518B15;
  gap: 22px;
  font-size: 1.01rem;
  transition: transform 0.34s ease;
}
.cookie-consent-banner.hidden {
  transform: translateY(100%);
}
.cookie-consent-banner.show {
  transform: translateY(0);
}
.cookie-consent-banner .banner-content {
  max-width: 700px;
  flex: 1 1 auto;
}
.cookie-consent-banner-buttons {
  display: flex;
  gap: 18px;
}
.cookie-consent-banner button, .cookie-consent-banner .cta {
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.16s;
  margin-left: 0;
}
.cookie-consent-banner .accept {
  background: #125D2B;
  color: #fff;
  box-shadow: 0 0 10px #50db872a;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #2678C0;
  color: #fff;
}
.cookie-consent-banner .reject {
  background: #F2F6F3;
  color: #2678C0;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: #50db87;
  color: #125D2B;
}
.cookie-consent-banner .settings {
  background: none;
  color: #50db87;
  border: 1.2px solid #50db87;
  box-shadow: none;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: #50db87;
  color: #125D2B;
}

/******** COOKIE PREFERENCES MODAL ********/
.cookie-settings-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,22,18,0.71);
  z-index: 11010;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s ease;
}
.cookie-settings-modal.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-settings-content {
  background: #0f242e;
  color: #fff;
  border-radius: 22px;
  padding: 38px 28px 26px 28px;
  min-width: 310px;
  max-width: 370px;
  box-shadow: 0 2px 40px #125D2B22;
  position: relative;
}
.cookie-settings-title {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.34rem;
  color: #50db87;
  margin-bottom: 12px;
  font-weight: 700;
}
.cookie-settings-close {
  position: absolute;
  top: 18px;
  right: 23px;
  font-size: 1.59rem;
  color: #50db87;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1.03rem;
  color: #F2F6F3;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-category input[type="checkbox"] {
  accent-color: #2678C0;
  width: 22px; height: 22px;
}

/*******************
 MEDIA QUERIES
*******************/
@media (max-width: 880px) {
  .content-wrapper {
    gap: 12px;
  }
  .container {
    padding-left: 12px; padding-right: 12px;
  }
  .feature-grid, .service-cards {
    gap: 14px;
  }
  .feature-item, .service-card {
    min-width: 160px;
  }
  footer .content-wrapper {
    gap: 13px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .hero, .hero-contact {
    min-height: 220px;
    padding: 38px 0 28px 0;
  }
  .hero h1, .hero-contact h1 {
    font-size: 2rem;
  }
  .features .feature-grid,
  .service-cards,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 7px;
  }
  .feature-item, .service-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .faq, .faq-highlight, .pricing-table, .about, .thank-you, .terms-of-use, .privacy-policy, .gdpr, .cookies-policy {
    margin-bottom: 22px;
    padding: 14px 6px;
  }
  .footer-branding img {
    width: 34px;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .feature-item, .service-card {
    padding: 11px 7px 9px 12px;
    font-size: 0.97rem;
  }
  .testimonial-card {
    padding: 13px 6px;
  }
  .cookie-settings-content {
    padding: 14px 4px 14px 8px;
    min-width: 0; max-width: 98vw;
  }
}

/*********************
  ACCESSIBLE STYLES
*********************/
:focus-visible {
  outline: 2.5px solid #50db87;
  outline-offset: 2px;
}

/*********************
    VISUAL EFFECTS
*********************/
.card, .feature-item, .service-card, .testimonial-card {
  transition: box-shadow 0.21s, border-color 0.13s, transform 0.13s;
}
.cta, button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.13s, box-shadow 0.15s;
}

/*****************
  OVERRIDES/SPECIFIC
******************/
.hero-contact {
  background: linear-gradient(160deg,#2678C0 0,#125D2B 100%);
  color: #fff;
}

.card {
  background: #162d3d;
  border-radius: 12px;
  box-shadow: 0 2px 10px #125D2B15;
  padding: 20px 14px;
  color: #F2F6F3;
}

/******************
  GENERAL SPACING
*******************/
main {
  padding-bottom: 32px;
  min-height: 54vh;
}
h1, h2, h3, h4, h5, h6, p, ul, ol { margin-top: 0; }
section { margin-top: 0; }

/********************
  Z-INDEX LAYERING
*********************/
.mobile-menu, .cookie-consent-banner, .cookie-settings-modal {
  z-index: 11000;
}

/*********************
  PREVENT OVERLAPPING
*********************/
.card, .feature-item, .service-card, .testimonial-card {
  margin-bottom: 20px;
}
.content-grid, .feature-grid, .service-cards, .card-container {
  gap: 24px;
}

/**************************
  HIGHLIGHT TEXT/NEON EFFECT
***************************/
.hero h1, .thank-you h1, .about h1 {
  text-shadow: 0 0 12px #2678C0CC, 0 1px 0 #125D2B88;
}

/*************
  END OF CSS
*************/
