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

  :root {
    --navy: #1a2e6c;
    --navy-dark: #0f1e4a;
    --red: #e02020;
    --red-light: #f03030;
    --blue-mid: #1565c0;
    --white: #ffffff;
    --gray-bg: #f7f8fc;
    --gray-light: #f0f2f7;
    --gray-text: #555e7a;
    --gray-sub: #8491b0;
    --border: #e0e4ef;
    --green-wa: #25d366;
    --shadow-sm: 0 2px 12px rgba(26,46,108,0.08);
    --shadow-md: 0 6px 28px rgba(26,46,108,0.13);
    --shadow-lg: 0 16px 56px rgba(26,46,108,0.16);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Nunito', sans-serif; color: var(--navy); background: var(--white); overflow-x: hidden; }

  /* ── NAVBAR ── */
  header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--white);
    border-bottom: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  nav {
    max-width: 1200px; margin: auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 68px;
  }
  .logo-area { display: flex; align-items: center; gap: 12px; }
  .logo-img {
    margin-top: 20px;
    width: 80px; 
    height: 80px; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800; 
    font-size: 18px; 
    flex-shrink: 0;
    border: 3px solid var(--border);
  }
  .logo-img img{
    width: 100%;
    border-radius: 50%;
  }
  .logo-text h1 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 800; color: var(--navy); line-height: 1.2; }
  .logo-text span { font-size: 11px; color: var(--gray-sub); font-weight: 600; }

  .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
  .nav-links li { position: relative; }
  .nav-links a {
    padding: 8px 14px; font-weight: 700; font-size: 14px;
    color: var(--navy); text-decoration: none; border-radius: 8px;
    transition: color var(--transition), background var(--transition);
    display: flex; align-items: center; gap: 5px;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--red); }
  .nav-links a.active { position: relative; }
  .nav-links a.active::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 28px; height: 2.5px; background: var(--red); border-radius: 2px;
  }
  .nav-links .dropdown { position: relative; }
  .nav-links .dropdown-menu {
    position: absolute; top: 35px; left: 0;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
    min-width: 180px; padding: 6px; display: none; z-index: 200;
  }
  .nav-links .dropdown:hover .dropdown-menu { display: block; }
  .nav-links .dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; font-size: 13.5px; font-weight: 700;
    border-radius: 6px; color: var(--navy);
  }
  .nav-links .dropdown-menu a:hover { background: var(--gray-light); color: var(--red); }
  .nav-links .dropdown-menu .icon-circle {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--gray-light); display: flex; align-items: center;
    justify-content: center; font-size: 14px; flex-shrink: 0;
  }
  .nav-cta {
    background: var(--red); color: var(--white) !important;
    padding: 10px 18px !important; border-radius: 50px !important;
    font-weight: 800 !important; font-size: 13.5px !important;
    box-shadow: 0 4px 14px rgba(224,32,32,0.3);
    transition: background var(--transition), box-shadow var(--transition) !important;
    display: flex; align-items: center; gap: 7px;
    margin-left: 24px;
  }
  .nav-cta:hover { background: var(--red-light) !important; box-shadow: 0 6px 20px rgba(224,32,32,0.4) !important; color: var(--white) !important; }
  .nav-cta::after { display: none !important; }

  /* chevron */
  .chevron { font-size: 10px; transition: transform var(--transition); }
  .dropdown:hover .chevron { transform: rotate(180deg); }

  /* ── HERO ── */
  .hero {
    background: var(--white);
    padding: 64px 24px 56px;
    max-width: 1200px; margin: auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  }
  .hero-text h2 {
    font-family: 'Poppins', sans-serif; font-size: clamp(32px, 4vw, 52px);
    font-weight: 900; line-height: 1.12; color: var(--navy);
    margin-bottom: 18px;
  }
  .hero-text h2 span { color: var(--red); }
  .hero-text p {
    font-size: 16px; color: var(--gray-text); line-height: 1.7;
    max-width: 400px; margin-bottom: 32px;
  }
  .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--navy); color: var(--white);
    padding: 13px 26px; border-radius: 50px; font-weight: 800; font-size: 15px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 16px rgba(26,46,108,0.25); transition: all var(--transition);
  }
  .btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,46,108,0.3); }
  .btn-wa {
    background: var(--green-wa); color: var(--white);
    padding: 13px 22px; border-radius: 50px; font-weight: 800; font-size: 15px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25); border: 2px solid var(--green-wa);
    transition: all var(--transition);
  }
  .btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

  .hero-images { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 10px; }
  .hero-img-main {
    grid-column: 1 / 2; grid-row: 1 / 3; border-radius: 20px; overflow: hidden;
    background: linear-gradient(135deg, #e8f0fe, #c5d8f7); height: 340px;
    box-shadow: var(--shadow-md); position: relative;
  }
  .hero-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-img-sm {
    border-radius: 14px; overflow: hidden; height: 162px;
    background: linear-gradient(135deg, #e3eaf8, #c5d4f5);
    box-shadow: var(--shadow-sm); position: relative;
  }
  .hero-img-sm img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-img-sm:nth-child(2) { background: linear-gradient(135deg, #dce8f8, #b8ceef); }

  /* decorative dots */
  .hero-deco { position: absolute; width: 18px; height: 18px; border-radius: 50%; }
  .deco-red { background: var(--red); top: -8px; right: -8px; }
  .deco-blue { background: var(--navy); bottom: -8px; left: -8px; }

  /* floating star */
  .star { display: inline-block; color: var(--red); font-size: 18px; margin-right: 4px; }

  /* ── SECTION LABEL ── */
  .section-label {
    text-align: center; font-size: 11.5px; font-weight: 800;
    letter-spacing: 2.5px; color: var(--red); text-transform: uppercase;
    margin-bottom: 10px;
  }
  .section-title {
    text-align: center; font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 3vw, 34px); font-weight: 800;
    color: var(--navy); margin-bottom: 16px; line-height: 1.25;
  }
  .wave-deco {
    text-align: center; margin-bottom: 48px;
    font-size: 26px; letter-spacing: -2px; color: var(--red); opacity: 0.55;
  }

  /* ── ABOUT ── */
  .about-section {
    max-width: 1200px; margin: 40px auto; padding: 0 24px;
  }
  .about-card {
    background: var(--gray-bg); border-radius: 20px;
    display: grid; grid-template-columns: 220px 1fr 220px; gap: 36px;
    align-items: center; padding: 36px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
  }
  .about-img {
    border-radius: 16px; overflow: hidden; height: 200px;
    background: linear-gradient(135deg, #dde8f8, #bdd0f0);
  }
  .about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-middle .section-label { text-align: left; }
  .about-middle h3 {
    font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800;
    color: var(--navy); margin-bottom: 14px; line-height: 1.3;
  }
  .about-middle p { font-size: 14px; color: var(--gray-text); line-height: 1.75; }
  .about-pillars { display: flex; flex-direction: column; gap: 16px; }
  .pillar {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; font-weight: 700; color: var(--navy);
  }
  .pillar-icon {
    width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; background: var(--white); border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
  }

  /* ── DIFERENCIAIS ── */
  .diferenciais-section {
    background: var(--white); padding: 72px 24px;
  }
  .diferenciais-grid {
    max-width: 1200px; margin: auto;
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
    text-align: center;
  }
  .diferencial-card { padding: 20px 12px; }
  .diferencial-icon {
    width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 14px;
    background: var(--gray-light); display: flex; align-items: center;
    justify-content: center; font-size: 26px;
    transition: transform var(--transition);
  }
  .diferencial-card:hover .diferencial-icon { transform: scale(1.1); }
  .diferencial-card h4 {
    font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 800;
    color: var(--navy); margin-bottom: 8px;
  }
  .diferencial-card p { font-size: 12.5px; color: var(--gray-text); line-height: 1.6; }

  /* ── ENSINO CARDS ── */
  .ensino-section { padding: 72px 24px; background: var(--gray-bg); }
  .ensino-grid {
    max-width: 1200px; margin: auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  }
  .ensino-card {
    border-radius: 18px; overflow: hidden; display: flex;
    align-items: stretch; background: var(--white); box-shadow: var(--shadow-sm);
    border: 1px solid var(--border); transition: box-shadow var(--transition), transform var(--transition);
  }
  .ensino-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .ensino-card .card-img {
    width: 180px; flex-shrink: 0;
    background: linear-gradient(135deg, #d6e4f8, #b8ccf0);
  }
  .ensino-card .card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ensino-card .card-body { padding: 28px 24px; }
  .ensino-card h3 {
    font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 800;
    color: var(--navy); margin-bottom: 10px;
  }
  .ensino-card p { font-size: 13.5px; color: var(--gray-text); line-height: 1.7; margin-bottom: 16px; }
  .saiba-mais {
    font-weight: 800; font-size: 14px; color: var(--blue-mid);
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    transition: gap var(--transition);
  }
  .saiba-mais:hover { gap: 10px; }

  /* Reversed: text left, image right */
  .ensino-card.reverse { flex-direction: row-reverse; }
  .ensino-card.reverse .card-img { border-radius: 0; }

  /* ── GALLERY ── */
  .gallery-section { padding: 72px 24px; background: var(--white); }
  .gallery-track {
    max-width: 1200px; margin: auto;
    display: flex; gap: 12px; overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 8px;
  }
  .gallery-track::-webkit-scrollbar { display: none; }
  .gallery-item {
    flex-shrink: 0; width: 300px; height: 150px; border-radius: 12px;
    overflow: hidden; background: linear-gradient(135deg, #dce8f8, #b8ccef);
    box-shadow: var(--shadow-sm); cursor: pointer; transition: transform var(--transition);
  }
  .gallery-item:hover { transform: scale(1.03); }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .gallery-controls { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
  .gallery-btn {
    width: 36px; height: 36px; border-radius: 50%; background: var(--navy);
    color: var(--white); border: none; cursor: pointer; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
  }
  .gallery-btn:hover { background: var(--blue-mid); }
  .btn-gallery-more {
    display: block; margin: 28px auto 0;
    background: var(--navy); color: var(--white);
    padding: 12px 28px; border-radius: 50px; font-weight: 800;
    font-size: 15px; text-decoration: none; text-align: center;
    max-width: 200px; transition: all var(--transition);
    display: flex; align-items: center; gap: 8px; width: fit-content;
  }
  .btn-gallery-more:hover { background: var(--blue-mid); transform: translateY(-2px); }

  /* ── ONDE ESTAMOS ── */
  .location-section { padding: 72px 24px; background: var(--gray-bg); }
  .location-inner {
    max-width: 1200px; margin: auto;
    display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 36px; align-items: start;
  }
  .loc-info h3 {
    font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 800;
    color: var(--navy); margin-bottom: 16px;
  }
  .loc-row {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px;
  }
  .loc-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--navy); color: var(--white);
    display: flex; align-items: center; justify-content: center; font-size: 15px;
    flex-shrink: 0;
  }
  .loc-row p { font-size: 14px; color: var(--gray-text); line-height: 1.55; font-weight: 600; }
  .loc-row p strong { color: var(--navy); }

  .map-placeholder {
    border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md);
    background: #e8eef8; height: 200px; position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
  }
  .map-placeholder .map-label {
    font-family: 'Poppins', sans-serif; font-weight: 800;
    font-size: 18px; color: var(--navy); letter-spacing: 1px; margin-top: 8px;
  }
  .map-pin { font-size: 42px; }

  .contact-side h3 {
    font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 800;
    color: var(--navy); margin-bottom: 18px;
  }
  .contact-side p { font-size: 14px; color: var(--gray-text); margin-bottom: 20px; line-height: 1.6; }
  .btn-wa-lg, .btn-calendar {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 13px 20px; border-radius: 10px; font-weight: 800; font-size: 14.5px;
    text-decoration: none; margin-bottom: 12px; transition: all var(--transition);
  }
  .btn-wa-lg { background: var(--green-wa); color: var(--white); }
  .btn-wa-lg:hover { background: #1ebe5d; }
  .btn-calendar { background: var(--white); color: var(--navy); border: 2px solid var(--navy); }
  .btn-calendar:hover { background: var(--navy); color: var(--white); }

  /* ── FOOTER ── */
  footer {
    background: var(--navy-dark); color: var(--white);
    padding: 56px 24px 24px;
  }
  .footer-top {
    max-width: 1200px; margin: auto;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 28px;
  }
  .footer-brand .logo-area { margin-bottom: 14px; }
  .footer-brand .logo-img { background: rgba(255,255,255,0.12); }
  .footer-brand .logo-text h1 { color: var(--white); }
  .footer-brand .logo-text span { color: rgba(255,255,255,0.55); }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 18px; }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: var(--white);
    display: flex; align-items: center; justify-content: center; font-size: 15px;
    text-decoration: none; transition: background var(--transition);
  }
  .footer-social a:hover { background: var(--red); }

  .footer-col h4 {
    font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 800;
    color: var(--white); margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none;
    font-weight: 600; transition: color var(--transition);
  }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px;
    font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 600;
  }
  .footer-contact-item .fc-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }

  .footer-bottom {
    max-width: 1200px; margin: auto;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12.5px; color: rgba(255,255,255,0.4);
  }
  .footer-bottom span { color: var(--red); }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; }
    .hero-images { display: none; }
    .about-card { grid-template-columns: 1fr; }
    .diferenciais-grid { grid-template-columns: repeat(3,1fr); }
    .ensino-grid { grid-template-columns: 1fr; }
    .location-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    nav .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .diferenciais-grid { grid-template-columns: repeat(2,1fr); }
    .footer-top { grid-template-columns: 1fr; }
  }

  /* ── MISC UTILS ── */
  section + section { border-top: 1px solid var(--border); }
  .container { max-width: 1200px; margin: auto; padding: 0 24px; }

  /* Scroll animation */
  .fade-up {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2.5px;
    background: var(--navy); border-radius: 2px; transition: all var(--transition);
  }
  @media (max-width: 960px) { .hamburger { display: flex; } }

  /* Mobile Nav */
  .mobile-nav {
    height: 100%;
    display: none; flex-direction: column; gap: 4px;
    background: var(--white); padding: 16px 24px;
    border-top: 1px solid var(--border);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    padding: 10px 0; font-weight: 700; font-size: 15px;
    color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--border);
  }
  .mobile-nav a:last-child { border-bottom: none; }

  /* Color accent on icons */
  .ic-blue { color: var(--blue-mid); }
  .ic-red { color: var(--red); }
  .ic-green { color: #27ae60; }
  .ic-orange { color: #e67e22; }
  .ic-purple { color: #8e44ad; }
