/* Prolupando Style Reset & Base ------------------------------------ */
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: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #0D3055;
  background: linear-gradient(135deg, #F5F6FA 0%, #e5eef7 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2396A6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #0D3055;
}
strong {
  font-weight: bold;
}

/* Typography ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #0D3055;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.18;
}
h1 {font-size: 2.5rem; margin-bottom: 20px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.33rem; margin-bottom: 12px;}
h4 {font-size: 1.1rem;}
p, ul, ol, li {font-size: 1rem; margin-bottom: 12px; color: #27394D;}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(13,48,85,0.06);
}

@media (max-width: 1024px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 36px;
  }
  h1 {font-size: 2.1rem;}
  h2 {font-size: 1.48rem;}
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 22px;
    padding: 24px 6px;
  }
  h1 {font-size: 1.45rem;}
  h2 {font-size: 1.1rem;}
}

/* Container & Content ----------------------------------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

/* Header & Nav -------------------------------------------------- */
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 8px 30px;
  background: linear-gradient(90deg, #F5F6FA 60%, #e5eef7 100%);
  box-shadow: 0 2px 8px rgba(13,48,85,0.07);
  position: sticky;
  top: 0; left: 0;
  z-index: 100;
}
header img[alt="Prolupando"] {
  height: 44px;
  margin-right: 26px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 4px;
  color: #0D3055;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #2396A6;
  color: #fff;
}
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg,#2396A6 20%,#0D3055 100%);
  border-radius: 40px;
  padding: 12px 32px;
  box-shadow: 0 4px 18px rgba(13,48,85,0.13);
  border: none;
  margin-left: 22px;
  transition: background 0.23s, transform 0.12s;
  letter-spacing: 0.035em;
  cursor: pointer;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg,#0D3055 20%, #2396A6 100%);
  transform: translateY(-2px) scale(1.035);
  color: #fff;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #2396A6;
  cursor: pointer;
  display: none;
  padding: 5px 16px;
  margin-left: 18px;
  transition: color 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:focus {
  outline: none;
  color: #0D3055;
}

/* Responsive Header -------------------------------------------- */
@media (max-width: 1024px) {
  header nav {
    gap: 13px;
  }
  header {
    padding: 8px 10px;
  }
  .cta-primary {
    padding: 9px 16px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Styles ----------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(13, 48, 85, .97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.76, 0.12, 0.44, 1);
  opacity: 0.995;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #fff;
  align-self: flex-end;
  margin: 24px 28px 10px 0;
  cursor: pointer;
  z-index: 210;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 44px 0 32px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  font-weight: 600;
  background: none;
  padding: 12px 0 10px 0;
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #2396A6;
  background: #f5f6fa18;
}

@media (max-width: 400px) {
  .mobile-nav {padding: 18px 10px 0 14px;}
  .mobile-menu-close {margin-right: 12px;}
}

/*---------------------------------------------------------------*/
/* Footer Styles ----------------------------------------------- */
.footer-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 44px 14px 28px 14px;
  background: linear-gradient(90deg,#e5eef7 60%, #F5F6FA 100%);
  align-items: flex-start;
  border-radius: 20px 20px 0 0;
  justify-content: space-between;
}
.footer-container img {
  height: 60px;
}
.footer-container nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.footer-container nav a {
  color: #0D3055;
  opacity: 0.8;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.17s, opacity 0.17s;
}
.footer-container nav a:hover {
  color: #2396A6;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 12px;
  color: #27394D;
  font-size: 0.97rem;
}
.footer-contact img {
  display: inline;
  width: 18px;
  margin-right: 4px;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .footer-container {gap: 16px;}
}
@media (max-width: 768px) {
  .footer-container {flex-direction: column; align-items: flex-start; gap: 20px; padding: 26px 5px 28px 5px;}
  .footer-contact {font-size: 0.9rem;}
  .footer-container img {height: 41px;}
}

/* Home Page Features Section & Cards ------------------------------ */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 16px;
}
.features-grid > div {
  flex: 1 1 220px;
  max-width: 250px;
  background: #f5fafd;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(13,48,85,0.06);
  padding: 22px 19px 18px 19px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transition: box-shadow 0.19s, transform 0.17s;
  margin-bottom: 20px;
}
.features-grid > div:hover {
  box-shadow: 0 8px 32px rgba(35, 150, 166, 0.16);
  transform: translateY(-4px) scale(1.035);
}
.features-grid img {
  width: 46px;
  margin-bottom: 6px;
}

/* Service Cards --- used for What We Offer, About, Tools, etc */
.service-list,
.values-list,
.tools-list,
.calendar-list,
.team-grid,
.benefits-list,
.resource-grid,
.faq-list,
.startup-list,
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 0 0;
  justify-content: flex-start;
}
.service-list > div, .values-list > div, .tools-list > div, .calendar-list > div, .team-grid > .team-member, .benefits-list > div, .resource-grid > div, .faq-list > div, .startup-list > .startup-card, .blog-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(13,48,85,0.05);
  padding: 24px 18px 18px 18px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .19s;
}
.service-list > div:hover, .values-list > div:hover, .tools-list > div:hover, .resource-grid > div:hover, .blog-grid > div:hover, .startup-list > .startup-card:hover {
  box-shadow: 0 8px 32px rgba(35, 150, 166, 0.14);
  transform: translateY(-3px) scale(1.02);
}
.values-list img, .tools-list img, .benefits-list img, .team-member img {
  width: 38px; margin-bottom: 7px;
}
.team-member {
  text-align: center;
  align-items: center;
}
.category-tags, .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
  margin-top: 6px;
}
.category-tags span, .tags span,
.event-categories span,
.filter-tags span {
  font-size: 0.88rem;
  display: inline-block;
  background: #e0f2f6;
  color: #0D3055;
  border-radius: 7px;
  padding: 3px 12px;
  font-weight: 600;
  margin-bottom: 2px;
}
.event-categories, .filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 8px 0;
}
.event-categories span,
.filter-tags span {
  cursor: pointer;
  background: #2396A6;
  color: #fff;
  opacity: .73;
  transition: background .15s, opacity .15s;
}
.event-categories span:hover, .filter-tags span:hover {
  background: #0D3055;
  opacity: 1;
}

.startup-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.startup-card {
  padding: 24px 20px 16px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(13,48,85,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 315px;
  transition: box-shadow .19s, transform .19s;
}

.startup-card:hover {
  box-shadow: 0 8px 28px rgba(35, 150, 166, 0.13);
  transform: translateY(-3px) scale(1.02);
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding: 16px 0 0 0;
  align-items: center;
  justify-content: flex-start;
}
.client-logos img {
  height: 34px;
  opacity: 0.72;
  transition: opacity 0.15s;
}
.client-logos img:hover {opacity: 1;}

/* Card & Testimonial Patterns (MANDATORY) --------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(13,48,85,0.05);
}
.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;
}
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f3f6fa;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(13,48,85,0.08);
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  border: 1px solid #dbeaf0;
  color: #1A354A;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #1A354A;
  font-style: italic;
  margin-bottom: 9px;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.99rem;
  color: #0D3055;
  margin-top: 3px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Contact/Social Links & Input Groups ------------------------- */
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  background: #f6fafd;
  border-radius: 14px;
  box-shadow: 0 2px 13px rgba(13, 48, 85, 0.05);
  padding: 23px 19px 18px 19px;
  margin-bottom: 14px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}
.social-links a img {
  width: 26px; opacity: 0.63; transition: opacity .18s;}
.social-links a:hover img {opacity:1;}

/* Lists ------------------------------------------------------ */
ul, ol {padding-left: 23px;}
li {margin-bottom: 7px;}

/* Newsletter sign up & search bar ---------------------------- */
.newsletter-signup, .search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.newsletter-signup input,
.search-bar input[type="search"] {
  border: 1px solid #cbeaf1;
  background: #f6fafd;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 1rem;
  outline: none;
  min-width: 170px;
  transition: border 0.17s, box-shadow 0.16s;
}
.newsletter-signup input:focus,
.search-bar input:focus {
  border-color: #2396A6;
  box-shadow: 0 1px 7px rgba(35,150,166,0.17);
}
.newsletter-signup button,
.search-bar button {
  background: linear-gradient(90deg,#2396A6 40%,#0D3055 100%);
  color: #fff;
  border-radius: 50px;
  border: none;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, transform .14s;
}
.newsletter-signup button:hover, .search-bar button:hover {
  background: linear-gradient(90deg,#0D3055 40%,#2396A6 100%);
  transform: translateY(-2px) scale(1.02);
}
.search-bar button img {
  width: 23px;
  height: 23px;
}

/* Responsive Flex Patterns ------------------------------------ */
@media (max-width: 1024px) {
  .features-grid, .service-list, .values-list, .tools-list, .calendar-list, .team-grid, .benefits-list, .resource-grid, .faq-list, .startup-list, .blog-grid {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .features-grid, .service-list,.values-list, .tools-list, .calendar-list,
  .team-grid, .benefits-list, .resource-grid, .faq-list, .startup-list, .blog-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-block {flex-direction: column; gap: 19px;}
}
@media (max-width: 768px) {
  .features-grid, .service-list, .values-list, .tools-list, .calendar-list, .team-grid, .benefits-list, .resource-grid, .faq-list, .startup-list, .blog-grid {
    gap: 13px;
  }
  .contact-block {padding: 14px 6px;}
  .testimonials-slider {gap: 13px;}
  .content-wrapper {gap: 9px;}
  .client-logos {gap: 13px;}
  .text-image-section {flex-direction: column; gap: 22px;}
}

/* Misc Patterns & Banners  ------------------------------------ */
.text-section {padding: 6px 0;}
.text-section h3 {margin-bottom: 8px;}

/* Cookie Consent Banner ---------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0D3055;
  color: #fff;
  box-shadow: 0 -3px 24px rgba(13,48,85,0.13);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 18px 16px 18px 16px;
  font-size: 1rem;
  z-index: 2500;
  animation: bannerIn 0.6s cubic-bezier(.82,0,.32,1) both;
}
@keyframes bannerIn {
  from {transform: translateY(120%); opacity: 0.6;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-btn {
  background: #2396A6;
  color: #fff;
  border-radius: 34px;
  border: none;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 7px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s;
  margin-bottom: 3px;
}
.cookie-banner .cookie-btn.accept {
  background: #2396A6;
}
.cookie-banner .cookie-btn.reject {
  background: #E36767;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #2396A6;
  border: 2px solid #2396A6;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #0D3055;
  color: #fff;
  transform: translateY(-2px) scale(1.11);
}

/* Cookie Modal ----------------------------------------------- */
.cookie-modal-bg {
  display: none;
  position: fixed;
  z-index: 2600;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(13,48,85,0.58);
  justify-content: center;
  align-items: center;
  animation: modalIn 0.28s cubic-bezier(.79,.02,.63,1) both;
}
.cookie-modal-bg.active {
  display: flex;
}
@keyframes modalIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  padding: 38px 34px 26px 34px;
  border-radius: 18px;
  box-shadow: 0 12px 42px rgba(23,63,110,0.12);
  color: #0D3055;
  min-width: 290px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalSlideIn 0.32s cubic-bezier(.92,-0.12,.3,1.09) both;
}
@keyframes modalSlideIn {
  from {transform: translateY(70px) scale(0.92); opacity: 0.7;}
  to {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal h2 {font-size: 1.28rem; margin-bottom: 10px;}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #0D3055;
  margin-right: 8px;
  font-weight: 600;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #2396A6;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}
.cookie-modal .cookie-btn {
  margin-top: 18px;
  background: #2396A6;
  color: #fff;
  border-radius: 30px;
  border: none;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, transform 0.11s;
}
.cookie-modal .cookie-btn:hover {
  background: #0D3055;
  color: #fff;
  transform: translateY(-1px) scale(1.07);
}

@media (max-width: 500px) {
  .cookie-modal {padding: 18px 6px 12px 8px;}
}

/* Utility: Hide/Show ----------------------------------------- */
.hide {display: none !important;}
.show {display: block !important;}

/* Accessibility Focus Ring ------------------------------------ */
a:focus, button:focus, input:focus {
  outline: 2px solid #2396A6;
  outline-offset: 2px;
}

/* Shadows & Transitions for Modernity ------------------------- */
.card, .service-list > div, .values-list > div, .tools-list > div, .calendar-list > div, .resource-grid > div, .team-grid > .team-member, .faq-list > div, .startup-list > .startup-card, .blog-grid > div, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.15s;
  box-shadow: 0 2px 14px rgba(13,48,85,0.04);
}
.card:hover, .service-list > div:hover, .values-list > div:hover, .tools-list > div:hover, .resource-grid > div:hover, .blog-grid > div:hover, .startup-list > .startup-card:hover {
  box-shadow: 0 7px 30px rgba(35,150,166,0.08);
  transform: translateY(-2px) scale(1.015);
}

/* Gradient Modern Section Backgrounds ------------------------- */
.section:nth-child(even) {
  background: linear-gradient(110deg, #e8f7fa 45%, #f5f6fa 100%);
}

/* Responsive: Typography & Spacing simplification ------------- */
@media (max-width: 420px) {
  h1, h2, h3 {font-size: 1rem;}
  .content-wrapper, .container {padding: 0 2px;}
}

/* End -------------------------------------------------------- */