/* ============================================================
   CSS RESET & BASE STYLES
============================================================ */
html { box-sizing: border-box; font-size: 16px; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  background: #F9F7ED;
  color: #234F33;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a {
  color: #E37827;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #B65D1B; }
ul, ol { padding-left: 26px; margin-bottom: 1.2em; }
li {
  margin-bottom: 0.4em; line-height: 1.6;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #1A3A24;
  margin-bottom: 16px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.2rem; }
h4, h5, h6 { font-size: 1rem; }
p, blockquote { margin-bottom: 18px; line-height: 1.7; }
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 10px 0;
  color: #234F33;
}
strong { font-weight: 700; color: #E37827; }

input, button, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  outline: none;
}

/* Accessible font scaling on mobile */
@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 1rem; }
}

/* ============================================================
   BRAND COLORS & VARIABLES
============================================================ */
:root {
  --brand-primary: #234F33;
  --brand-secondary: #F9F7ED;
  --brand-accent: #E37827;
  --brand-dark: #1A3A24;
  --brand-light: #FFFFFF;
  --brand-accent2: #B65D1B;
  --brand-fun-blue: #66B3E9;
  --brand-fun-pink: #FF8AB5;
  --brand-fun-yellow: #FFD34C;
  --brand-fun-green: #75EB7C;
}

/* ============================================================
   CONTAINER & SECTIONS
============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-light);
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(67,104,68,0.07);
}
@media (max-width: 768px) {
  .section { padding: 26px 8px; margin-bottom: 42px; border-radius: 14px; }
  .container { padding: 0 7px; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

/* ============================================================
   HEADER & NAVIGATION (DESKTOP)
============================================================ */
header {
  width: 100%;
  background: var(--brand-secondary);
  box-shadow: 0 2px 10px rgba(35, 79, 51, 0.07);
  position: sticky;
  top: 0; left: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 11px; padding-bottom: 11px;
}
.logo img { height: 46px; width: auto; display: block; }
@media (max-width: 420px) {
  .logo img { height: 36px; }
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-left: 18px;
  margin-right: 24px;
}
.main-nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 13px;
  transition: background .2s, color .16s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--brand-accent);
  color: #F9F7ED;
}

.btn-primary {
  padding: 13px 26px;
  border-radius: 24px;
  background: linear-gradient(90deg, var(--brand-accent2) 0%, var(--brand-accent) 100%);
  color: var(--brand-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 3px 18px 0 rgba(177, 110, 27, 0.13);
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.15s, transform 0.1s;
  margin-left: 9px;
  margin-top: 0;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(90deg, var(--brand-accent) 60%, var(--brand-accent2) 100%);
  transform: translateY(-2px) scale(1.045) rotate(-1deg);
}
.btn-link {
  color: var(--brand-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.17s;
}
.btn-link:hover,
.btn-link:focus {
  color: var(--brand-primary);
}

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: #fff;
  font-size: 2.2rem;
  border: none;
  padding: 7px 16px 8px 16px;
  border-radius: 14px;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.20s, color 0.15s, transform 0.17s;
  z-index: 110;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--brand-accent2);
  color: #fff;
}
@media (max-width: 950px) {
  .main-nav, .btn-primary { display: none !important; }
  .mobile-menu-toggle { display: block; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 999;
  transition: transform 0.35s cubic-bezier(0.71,0.01,0.33,1.06);
  transform: translateX(-100vw);
  box-shadow: 4px 0 20px 2px rgba(230, 120, 39, 0.11);
  padding: 0 0 0 0;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  background: var(--brand-accent2);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 7px 13px;
  margin: 16px 0 0 20px;
  align-self: flex-start;
  transition: background 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { background: var(--brand-accent); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 33px;
  margin-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  color: var(--brand-primary);
  font-weight: 700;
  padding: 14px 4px;
  border-radius: 8px;
  transition: background 0.19s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-fun-yellow);
  color: var(--brand-dark);
}

@media (min-width: 951px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  background: var(--brand-fun-blue);
  background-image: none;
  border-radius: 0 0 44px 44px;
  padding-top: 48px;
  padding-bottom: 54px;
  min-height: 340px;
  box-shadow: 0 4px 28px 0 rgba(102,179,233,.13);
  position: relative;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .hero-section { border-radius: 0 0 22px 22px; padding: 30px 0 38px 0; min-height: 200px; }
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
}
.hero-section h1 {
  font-size: 2.1rem;
  color: var(--brand-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex; align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  filter: drop-shadow(1px 1px 0 #F9F7ED);
  text-shadow: 0 1px 0 #F9F7ED, 0 3px 10px #eee;
}
.hero-section p {
  font-size: 1.09rem;
  color: var(--brand-dark);
  margin-bottom: 16px;
}
.hero-section .btn-primary {
  margin-top: 8px; margin-bottom: 0;
  font-size: 1.04rem;
  background: linear-gradient(90deg, var(--brand-fun-pink) 10%, var(--brand-accent) 80%);
  box-shadow: 0 5px 16px 0 rgba(255,138,181,0.12);
}
.hero-section .btn-primary:hover {
  background: linear-gradient(90deg, var(--brand-accent) 10%, var(--brand-fun-pink) 85%); filter: brightness(1.12); }

/* ============================================================
   FLEX LAYOUTS & SPACING
============================================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-light);
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(35,79,51,0.08);
  padding: 25px 22px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 280px;
  transition: transform 0.17s, box-shadow 0.19s;
}
.card:hover {
  transform: translateY(-6px) scale(1.025) rotate(0.7deg);
  box-shadow: 0 7px 30px 3px rgba(177,110,27,0.13);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 22px; }
  .content-grid { flex-direction: column; gap: 19px; }
}

/* ============================================================
   FEATURE LIST & ICONS
============================================================ */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  list-style: none;
}
.features-list li {
  display: flex;
  align-items: center;
  background: var(--brand-fun-yellow);
  color: var(--brand-dark);
  border-radius: 16px;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(255,210,76,0.13);
  padding: 17px 18px 17px 10px;
  gap: 15px;
  min-width: 210px;
  transition: box-shadow 0.18s, filter 0.15s;
}
.features-list li:hover { filter: brightness(1.11); box-shadow: 0 4px 16px 0 rgba(255,210,76,0.18); }
.features-list img {
  height: 30px; min-width: 30px; margin-right: 6px;
}

.services-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 20px;
}
.services-list li {
  display: flex; align-items: flex-start;
  background: var(--brand-fun-green);
  color: var(--brand-dark);
  border-radius: 13px;
  padding: 13px 14px;
  font-size: 1.01rem;
  margin-right: 9px;
  min-width: 200px;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(117,235,124,0.11);
  transition: filter 0.16s, box-shadow 0.15s;
}
.services-list li:hover { filter: brightness(1.08); box-shadow: 0 2px 12px 2px rgba(117,235,124,0.16); }

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  list-style: none;
  font-size: 1rem;
  color: var(--brand-primary);
  margin: 11px 0 8px 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-fun-blue);
  color: #1A3A24;
  padding: 11px 17px;
  border-radius: 12px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  min-width: 198px;
  white-space: nowrap;
}
.contact-info img {
  height: 22px;
  min-width: 22px;
}

.map-location { display: flex; align-items: center; gap: 7px; margin-top: 5px; }
.map-location img { height: 22px; }
.map-location span { color: var(--brand-primary); font-weight: 600; font-size: 1rem; }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* ============================================================
   TESTIMONIAL CARDS
============================================================ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe7;
  border-radius: 20px;
  box-shadow: 0 3px 13px 1px rgba(246, 188, 75, 0.13);
  margin-bottom: 23px;
  flex: 1 1 340px;
  position: relative;
  min-width: 260px;
  max-width: 580px;
  animation: fadeInCard 0.85s cubic-bezier(0.42,0.93,0.52,1) both;
}
@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(48px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.testimonial-card blockquote {
  color: #234F33;  /* 7:1 ratio vs bg */
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #B65D1B;
  font-weight: 600;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-left: 7px;
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 16px 12px;
    min-width: 0; max-width: 98vw;
  }
}

/* ============================================================
   POSTS GRID (BLOG)
============================================================ */
.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin: 15px 0 15px 0;
}
.posts-grid article {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(35,79,51,0.07);
  padding: 22px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.16s;
}
.posts-grid article:hover {
  box-shadow: 0 7px 19px 2px rgba(102,179,233,0.17);
  transform: translateY(-3px) scale(1.03);
}
.posts-grid h3 {
  font-size: 1.22rem; color: var(--brand-accent);
  margin-bottom: 6px;
}
.posts-grid p {
  color: var(--brand-dark);
  font-size: 1.01rem;
}
.posts-grid a {
  align-self: flex-end;
  color: var(--brand-primary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  margin-top: 3px;
  text-decoration: underline;
  transition: color 0.15s;
}
.posts-grid a:hover { color: var(--brand-fun-blue); }

/* ============================================================
   TEAM GRID (EQUIPE)
============================================================ */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 15px;
  justify-content: flex-start;
}
.team-grid > div {
  background: var(--brand-fun-pink);
  border-radius: 15px;
  padding: 18px 19px;
  box-shadow: 0 2px 13px 0 rgba(255,138,181,0.13);
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--brand-dark);
  font-weight: 500;
  min-width: 210px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.17s, filter 0.18s;
}
.team-grid > div:hover { filter: brightness(1.06); box-shadow: 0 9px 28px 2px rgba(255,138,181,0.19); }
.team-grid strong { font-size: 1.07rem; color: var(--brand-primary); }
.team-grid span { font-size: 0.98rem; color: var(--brand-accent2); margin-top: 3px; }

@media (max-width: 900px) {
  .team-grid, .posts-grid { flex-direction: column; gap: 17px; }
  .team-grid > div, .posts-grid article { min-width: 0; width: 100%; }
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  width: 100%;
  background: var(--brand-primary);
  color: var(--brand-light);
  border-radius: 44px 44px 0 0;
  box-shadow: 0 -2px 18px 0 rgba(35,79,51,0.09);
  padding-top: 34px;
  padding-bottom: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.03rem;
  margin-top: 49px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 7px;
  margin-bottom: 7px;
  justify-content: center;
}
.footer-nav a {
  color: var(--brand-fun-yellow);
  font-weight: 600;
  text-shadow: 0 2px 10px #1A3A24;
  font-size: 1rem;
  transition: color 0.15s, text-decoration 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--brand-fun-pink);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 0.97rem;
  color: var(--brand-fun-yellow);
  justify-content: center;
}
footer img { height: 30px; margin-bottom: 4px; margin-top: -9px; }
footer small { margin-top: 5px; color: var(--brand-fun-green); opacity: 0.86; }
@media (max-width: 600px) {
  footer { border-radius: 14px 14px 0 0; padding-top: 19px; font-size: 0.93rem; }
}

/* ============================================================
   FORM STYLES (BLOG SEARCH)
============================================================ */
form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 9px;
}
input[type="search"] {
  padding: 11px 14px;
  border-radius: 11px;
  border: 2px solid var(--brand-fun-blue);
  font-size: 1.05rem;
  min-width: 170px;
  outline: none;
  background: #fff;
  color: var(--brand-dark);
  transition: border 0.17s, box-shadow 0.17s;
}
input[type="search"]:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 2px var(--brand-fun-blue);
}
button[type="submit"] {
  background: var(--brand-accent);
  color: #fff;
  border: none;
  padding: 0 15px;
  border-radius: 11px;
  font-size: 1.15rem;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.16s, transform 0.16s;
}
button[type="submit"]:hover,
button[type="submit"]:focus { background: var(--brand-accent2); transform: scale(1.11) rotate(-6deg); }

/* ============================================================
   COOKIE CONSENT BANNER & MODAL
============================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffce5;
  color: #234F33;
  border-top: 3px solid var(--brand-accent);
  box-shadow: 0 -4px 22px 0 rgba(177,110,27,0.07);
  padding: 22px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  z-index: 9001;
  animation: cookieSlideIn 0.5s cubic-bezier(.23,1.07,.56,.96) both;
}
@keyframes cookieSlideIn {
  from { transform: translateY(150px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 2px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 18px;
  padding: 9px 22px;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  cursor: pointer;
  background: var(--brand-fun-yellow);
  color: #234F33;
  transition: background 0.17s, color 0.12s, transform 0.12s;
  box-shadow: 0 1px 3px rgba(255,210,76,0.15);
}
.cookie-banner button.accept {
  background: var(--brand-accent);
  color: #fff;
}
.cookie-banner button.accept:hover { background: var(--brand-accent2); color: #fff; }
.cookie-banner button.reject {
  background: var(--brand-fun-pink);
  color: var(--brand-dark);
}
.cookie-banner button.reject:hover { background: var(--brand-accent2); color: #fff; }
.cookie-banner button.settings {
  background: var(--brand-fun-blue);
  color: var(--brand-dark);
}
.cookie-banner button.settings:hover { background: var(--brand-fun-yellow); color: var(--brand-dark); }

.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(27,38,29,0.28);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBackdrop 0.49s;
}
@keyframes fadeInBackdrop { from { opacity:0 } to { opacity:1 } }

.cookie-modal {
  background: #fffbe7;
  border-radius: 28px;
  box-shadow: 0 6px 32px 7px rgba(230, 120, 39, 0.15);
  max-width: 420px;
  width: 94vw;
  padding: 33px 28px 25px 28px;
  color: #234F33;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: modalPopIn 0.44s;
}
@keyframes modalPopIn {
  from { transform: scale(0.86) translateY(120px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 800;
  color: var(--brand-accent);
  margin-bottom: 8px;
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] { width: 19px; height: 19px; }
/* Essential always enabled visually */
.cookie-category.essential label:after {
  content: ' (sempre ativo)';
  font-size: .98em;
  color: #234F33;
  font-weight: 500;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 13px;
}
.cookie-modal button {
  padding: 9px 18px;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  cursor: pointer;
  background: var(--brand-accent);
  color: #fff;
  border: none;
  transition: background 0.15s;
}
.cookie-modal button.cancel {
  background: var(--brand-fun-pink);
  color: var(--brand-dark);
}
.cookie-modal button.cancel:hover {
  background: var(--brand-fun-blue); color: var(--brand-dark); }

/* ============================================================
   ANIMATIONS/MICRO-INTERACTIONS
============================================================ */
.btn-primary,
.btn-link,
.card,
.testimonial-card,
.footer-nav a,
.main-nav a,
button,
.mobile-menu, .cookie-banner, .cookie-modal {
  transition: all 0.18s cubic-bezier(.23,1.07,.56,.96);
}
@media (hover:hover) {
  .btn-primary:hover, .card:hover, .team-grid > div:hover, .posts-grid article:hover {
    box-shadow: 0 7px 18px 3px rgba(35,79,51,0.12), 0 7px 19px 4px rgba(230, 120, 39, 0.11);
    filter: brightness(1.05) saturate(1.07);
  }
}

/* Bouncy scale for fun! */
.btn-primary:active, .cookie-banner button:active, .main-nav a:active, .mobile-nav a:active {
  transform: scale(0.965) rotate(-0.5deg);
}

/* ============================================================
   PLAYFUL & DYNAMIC TYPOGRAPHY
============================================================ */
h1, h2, h3, .main-nav a, .btn-primary, .btn-link, .footer-nav a, .mobile-nav a {
  font-family: 'Montserrat', 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  /* Fun fallback for even more playfulness */
}

.section, .card, .card-container, .testimonial-card, .posts-grid article, .team-grid > div, .features-list li, .services-list li, .contact-info li {
  border-radius: 18px;
}

/* Spacing Consistency */
.section:not(:last-child), .card:not(:last-child), .testimonial-card:not(:last-child),
.posts-grid article:not(:last-child), .team-grid > div:not(:last-child) {
  margin-bottom: 24px;
}

/* ============================================================
   MEDIA QUERIES (RESPONSIVE)
============================================================ */
@media (max-width: 1200px) {
  .container { max-width: 95vw; }
  .main-nav { gap: 15px; margin-right: 7px; }
}
@media (max-width: 950px) {
  .container { max-width: 98vw; }
}
@media (max-width: 600px) {
  .hero-section { padding-top: 18px; padding-bottom: 13px; border-radius: 0 0 11px 11px; }
  .footer-contact { flex-direction: column; gap: 8px; font-size: 0.93rem; }
  .footer-nav { flex-direction: column; gap: 7px; }
}
@media (max-width: 430px) {
  .cookie-banner { padding: 16px 7px 14px 7px; }
  .cookie-modal { padding: 16px 7px 13px 7px; max-width: 99vw; border-radius: 11px; }
}

/* ============================================================
   UTILITIES: COLORFUL BUBBLES (DECORATIVE ANIMATION)
============================================================ */
.bubble-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
/* For SVG decorations only, not content. Insert as needed via absolute positioned spans in HTML, handled via JavaScript or server. */

/*
=================================================================
End of style.css
All style rules use only flexbox for layout – no grid or column styles present.
All containers use gap and margin for spacing, and only flexbox for alignment.
No content card or text is absolutely positioned, only decorative dom may be.
Awesome "playful_dynamic" fun, modern, energetic vibe for PartisPatas!
=================================================================
*/
