/* ------------------------------------------
   SABER CONECTA PROFESSIONAL CORPORATE CSS
   Brand palette: #134074, #F2F6FC, #F59140
   Font: Montserrat (display), Roboto (body)
   ------------------------------------------ */

/* CSS RESET / NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  min-height: 100%;
  background: #F2F6FC;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #22324A;
  font-size: 1rem;
  background: #F2F6FC;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #134074;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #F59140;
}

ul,ol {
  padding-left: 1.5em;
}

strong {
  font-weight: 700;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #134074;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 14px;
}

blockquote {
  background: #eaf1fa;
  border-left: 4px solid #134074;
  color: #22324A;
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 1.1rem;
  font-style: italic;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(34,50,74,0.07);
  position: relative;
}

/* GENERAL FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(34,50,74,0.07);
  padding: 28px 22px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(19,64,116,0.11);
  transform: translateY(-4px);
}

.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: 20px;
  padding: 20px;
  background: #F2F6FC;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(34,50,74,0.06);
  margin-bottom: 20px;
  max-width: 380px;
  color: #22324A;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #eaf1fa 70%, #fff 100%);
  border-bottom: 1px solid #dde6f1;
  padding: 56px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.5rem;
  color: #134074;
  margin-bottom: 12px;
}
.hero p {
  color: #22324A;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

/* NAVIGATION HEADER */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(34,50,74,0.06);
  position: sticky;
  top: 0;
  z-index: 995;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.brand-logo img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #22324A;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #134074;
  color: #fff;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  background: #F59140;
  color: #fff;
  padding: 11px 28px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(245,145,64,0.07);
  margin-left: 8px;
  outline: none;
  border: none;
  transition: background 0.18s, box-shadow 0.2s, transform 0.2s;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.cta-btn:hover {
  background: #134074;
  color: #fff;
  box-shadow: 0 6px 24px rgba(19,64,116,0.10);
  transform: translateY(-2px) scale(1.03);
}

/* -------------------
   MOBILE NAVIGATION
   -------------------*/
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.1rem;
  color: #134074;
  border: none;
  cursor: pointer;
  margin-left: 18px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #134074;
  z-index: 1002;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 28px 28px;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.87,.21,.28,.98);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  cursor: pointer;
  padding: 12px;
  margin-bottom: 34px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 13px 0;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F59140;
  color: #134074;
}

@media (max-width: 1100px) {
  .container, .container.nav-bar {
    max-width: 1000px;
  }
}
@media (max-width: 900px) {
  .container, .container.nav-bar {
    max-width: 770px;
  }
  .main-nav a { font-size: 0.97rem; }
  .cta-btn { font-size: 1rem; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .nav-bar {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .brand-logo img { height: 38px; }
}

/* HERO MOBILE */
@media (max-width: 640px) {
  .hero .content-wrapper {
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}

/* GENERAL RESPONSIVE FLEX LAYOUTS */
@media (max-width: 900px) {
  .content-grid, .card-container, .feature-grid, .courses-grid, .values-list, .team-grid {
    flex-direction: column !important;
    gap: 20px;
  }
  .trust-signals {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container, .feature-grid, .courses-grid, .testimonial-cards, .values-list, .team-grid {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 36px;
  }
  .footer-wrap {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    text-align: left !important;
  }
}

/* ---------------
   FEATURE GRIDS
   ---------------*/
.feature-grid, .courses-grid, .team-grid, .values-list, .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 8px;
}
.feature-grid > div, .courses-grid > div, .team-grid > div, .values-list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34,50,74,0.06);
  padding: 22px 18px 18px 18px;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 340px;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover,
.courses-grid > div:hover,
.team-grid > div:hover,
.values-list > div:hover {
  box-shadow: 0 8px 28px rgba(19,64,116,0.07);
  transform: translateY(-3px) scale(1.02);
}
.feature-grid img, .values-list img {
  height: 36px;
  width: 36px;
  margin-bottom: 8px;
}

/* SERVICE/VALUES LISTS */
.service-list, .motivational-tips, .tips-list, .languages-offered, .user-reviews {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: disc;
  color: #22324A;
  font-size: 1.07rem;
}
.service-list li, .motivational-tips li, .tips-list li, .languages-offered li {
  margin-bottom: 11px;
}

.values-list {
  gap: 20px;
}
.values-list > div {
  min-height: 180px;
}

/* TRUST SIGNALS */
.trust-signals {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #134074;
  font-size: 1.05rem;
}
.trust-signals img {
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.quick-links {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.quick-links a {
  background: #F2F6FC;
  padding: 8px 16px;
  border-radius: 6px;
  color: #134074;
  font-family: 'Montserrat', Arial;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.quick-links a:hover {
  background: #F59140;
  color: #fff;
}

.benefits-highlight {
  background: #F2F6FC;
  border-left: 4px solid #134074;
  padding: 19px 22px;
  border-radius: 8px;
  margin-top: 18px;
  font-size: 1.08rem;
}

/*********** CTA SECTIONS ***********/
.cta-section {
  background: #134074;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(19,64,116,.10);
  margin-bottom: 60px;
  padding: 44px 22px;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 8px;
}
.cta-section p {
  color: #eaf1fa;
}
.cta-section .cta-btn {
  margin-top: 10px;
  background: #F59140;
  color: #fff;
}
.cta-section .cta-btn:hover {
  background: #fff;
  color: #134074;
}

/*********** TESTIMONIALS ***********/
.testimonials {
  background: #fff;
  padding: 40px 0;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 12px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F2F6FC;
  border-left: 4px solid #134074;
  border-radius: 10px;
  padding: 24px 26px;
  box-shadow: 0 2px 10px rgba(34,50,74,0.08);
  min-height: 140px;
  color: #22324A;
  font-size: 1.03rem;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .21s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(19,64,116,0.13);
  transform: translateY(-2px) scale(1.03);
}
.testimonial-card strong {
  color: #134074;
}

@media (max-width: 600px) {
  .testimonial-cards {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    padding: 16px 12px;
    font-size: 1rem;
  }
}

/*********** FOOTER ************/
footer {
  background: #134074;
  color: #fff;
  padding: 36px 0 18px 0;
}
.footer-wrap {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 46px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #F2F6FC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 2px 4px;
  border-radius: 3px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F59140;
  background: rgba(255,255,255,0.07);
}
.footer-contact {
  font-size: 0.97rem;
  color: #eaf1fa;
  margin-top: 6px;
}
.footer-contact a {
  color: #F59140;
  text-decoration: underline;
  font-weight: 500;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 8px;
}
.footer-social a img {
  height: 28px;
  transition: filter 0.18s;
  filter: grayscale(15%);
}
.footer-social a:hover img {
  filter: brightness(108%) drop-shadow(0 3px 9px #F59140CC);
}
@media (max-width: 900px) {
  .footer-wrap {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-logo img {
    height: 34px;
  }
}

/******** CONTACT & MAP *********/
.contact-details {
  background: #fff;
  padding: 18px 16px;
  border-radius: 8px;
  border-left: 4px solid #134074;
  box-shadow: 0 2px 8px rgba(34,50,74,0.04);
  margin-bottom: 18px;
  font-size: 1.04rem;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.map-embed img {
  height: 42px;
}
@media (max-width: 600px) {
  .contact-details {
    padding: 10px 6px;
    font-size: 0.98rem;
  }
  .map-embed img {
    height: 30px;
  }
}

/******* STEP GUIDES ****/
.step-guide {
  margin-bottom: 24px;
  font-size: 1.09rem;
  color: #22324A;
}
.step-guide li {
  margin-bottom: 8px;
}

/****** FAQ Section *****/
.faq-section {
  background: #F2F6FC;
  border-radius: 7px;
  padding: 17px 20px 14px 20px;
  margin-top: 14px;
  color: #22324A;
  font-size: 1.04rem;
}
.faq-section h3 {
  margin-top: 0;
  margin-bottom: 9px;
  color: #134074;
  font-size: 1.13rem;
}

/****** THANK YOU PAGE *****/
.thank-you-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 32px 0 16px 0;
}
.thank-you-message img {
  height: 62px;
}

/******** ANIMATIONS ********/
.cta-btn, .main-nav a, .mobile-nav a {
  transition: background 0.19s, color 0.17s, box-shadow 0.18s, transform 0.18s;
}

/******* COOKIE CONSENT ******/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #134074;
  color: #fff;
  z-index: 1200;
  box-shadow: 0 -2px 16px rgba(19,64,116,0.10);
  padding: 18px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  animation: cookie-slide-in 0.5s cubic-bezier(.61,.32,.31,1.18);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 9px 24px;
  margin-right: 5px;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.16s, box-shadow 0.17s,
    transform 0.16s;
  background: #F59140;
  color: #fff;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #fff;
  color: #134074;
}
.cookie-btn.secondary {
  background: #F2F6FC;
  color: #22324A;
  border: 1px solid #dde6f1;
}
.cookie-btn.secondary:hover {
  background: #134074;
  color: #fff;
}
.cookie-btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-btn.ghost:hover {
  background: #F2F6FC;
  color: #134074;
}

/******* COOKIE MODAL ******/
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,50,74,0.72);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.26s;
  animation: cookie-fade-in 0.4s cubic-bezier(.26,.92,.54,1.12);
}
@keyframes cookie-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #22324A;
  border-radius: 13px;
  box-shadow: 0 12px 48px rgba(19,64,116,.23);
  padding: 36px 26px 24px 26px;
  width: 98%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h3 {
  color: #134074;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 500;
}
.cookie-modal-content input[type='checkbox'] {
  accent-color: #F59140;
  width: 18px;
  height: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 20px;
  background: none;
  border: none;
  color: #134074;
  font-size: 1.57rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  transition: background 0.19s;
}
.cookie-modal-close:hover {
  background: #F2F6FC;
}
/* cookie category styles */
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #eaf1fa;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category span {
  font-weight: 500;
  color: #22324A;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}

/************* UTILS ************/
@media (max-width: 480px) {
  .hero h1, .hero h2, h1, h2 {
    font-size: 1.15rem !important;
  }
  .section, .cta-section {
    padding: 14px 3px !important;
  }
}

.hide { display: none!important; }

::-webkit-scrollbar {
  width: 10px;
  background: #F2F6FC;
}
::-webkit-scrollbar-thumb {
  background: #dde6f1;
  border-radius: 8px;
}

/************* Z-INDEX ************/
.mobile-menu { z-index: 1002; }
.mobile-menu-toggle { z-index: 1020; }
.cookie-banner { z-index: 1200; }
.cookie-modal { z-index: 2001; }

/********* EXTRA: TRANSITIONS ********/
input, button, select, textarea {
  transition: background 0.18s, box-shadow 0.17s;
}

/******************************************
   END SABER CONECTA CORPORATE CSS
*******************************************/
