*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #4fbeec;
    --blue-dark: #2a9acc;
    --bg: #fbfbfb;
    --text: #112233;
    --white: #fafafa;
    --yellow: #ffd93d;
    --orange: #ff7f50;
    --pink: #ff6b9d;
    --green: #6bcb77;
    --purple: #9b5de5;
    --r: 1.8rem;
}

html { scroll-behavior: smooth; }

body {
    font-family: "Nunito", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(241, 241, 241, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 5%;
    border-bottom: 2px solid var(--blue);
}

.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo img { height: 48px; }
.nav-logo span { font-family: "Baloo 2", cursive; font-size: 1.2rem; font-weight: 800; color: var(--blue); }

.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 700; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue); }

.nav-cta {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: "Baloo 2", cursive;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
}
.nav-cta:hover { background: var(--blue-dark); transform: scale(1.02); }

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    padding: 7rem 5% 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f7fd 0%, #f1f1f1 60%, #fdf3ff 100%);
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.45;
    animation: floatBob linear infinite;
    pointer-events: none;
}

@keyframes floatBob {
    0%   { transform: translateY(0) rotate(0deg); }
    25%  { transform: translateY(-22px) rotate(5deg); }
    50%  { transform: translateY(-10px) rotate(-4deg); }
    75%  { transform: translateY(-28px) rotate(3deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.s1 { width: 130px; height: 130px; background: var(--yellow); top: 8%;  left: 3%;  animation-duration: 7s;   border-radius: 40% 60% 55% 45%/55% 45% 65% 35%; }
.s2 { width: 90px;  height: 90px;  background: var(--pink);   top: 15%; right: 8%; animation-duration: 5.5s; animation-delay: -2s; border-radius: 60% 40% 35% 65%/45% 55% 70% 30%; }
.s3 { width: 70px;  height: 70px;  background: var(--green);  top: 55%; left: 1%;  animation-duration: 9s;   animation-delay: -4s; }
.s4 { width: 110px; height: 110px; background: var(--blue);   top: 70%; right: 3%; animation-duration: 6s;   animation-delay: -1s;  border-radius: 50% 50% 30% 70%/60% 40% 60% 40%; }
.s5 { width: 55px;  height: 55px;  background: var(--purple); top: 35%; left: 42%; animation-duration: 8s;   animation-delay: -3s; }
.s6 { width: 80px;  height: 80px;  background: var(--orange); top: 80%; left: 30%; animation-duration: 7.5s; animation-delay: -5s;  border-radius: 40% 60% 60% 40%; }
.s7 { width: 40px;  height: 40px;  background: var(--blue);   top: 10%; left: 50%; animation-duration: 6.5s; animation-delay: -1.5s; }
.s8 { width: 60px;  height: 60px;  background: var(--yellow); top: 90%; right: 25%; animation-duration: 10s; animation-delay: -6s;  border-radius: 65% 35% 50% 50%; }

.hero-text { position: relative; z-index: 2; }

.hero-text h1 {
    font-family: "Baloo 2", cursive;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1.2rem;
}
.hero-text h1 span { color: var(--blue); }

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334455;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
    background: var(--blue);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: none;
    font-family: "Baloo 2", cursive;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(79, 190, 236, 0.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(79, 190, 236, 0.45); }
.btn-primary::after { content: "→"; margin-left: 8px; }

.btn-secondary {
    background: transparent;
    color: var(--blue);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: 2.5px solid var(--blue);
    font-family: "Baloo 2", cursive;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-secondary:hover { background: var(--blue); color: white; transform: translateY(-2px); }

.hero-img-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 190, 236, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50%       { transform: scale(1.08); opacity: 1; }
}

.hero-img-wrap img {
    width: 500px;
    max-width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(79, 190, 236, 0.3));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

/* ===== STATS STRIP ===== */
.stats-strip {
    background: var(--blue);
    padding: 1.8rem 5%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-num {
    font-family: "Baloo 2", cursive;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label { color: rgba(255,255,255,0.88); font-size: 0.95rem; font-weight: 600; }

/* ===== SECTION BASE ===== */
section { padding: 5rem 5%; }

.section-tag {
    display: inline-block;
    background: rgba(79, 190, 236, 0.15);
    color: var(--blue);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: "Baloo 2", cursive;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}
.section-title span { color: var(--blue); }

.section-sub { font-size: 1.05rem; color: #445566; line-height: 1.65; max-width: 600px; }

/* ===== SOBRE ===== */
#sobre {
    background: var(--bg);
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.sobre-top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.sobre-visual { position: relative; }

.sobre-card-bg {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(79, 190, 236, 0.18);
}

.sobre-card-bg img { width: 100%; height: 380px; object-fit: cover; display: block; border-radius: 30px; }

.sobre-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    border: 2.5px solid rgba(79, 190, 236, 0.3);
    pointer-events: none;
}

.sobre-visual::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--yellow);
    opacity: 0.18;
    border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
    top: -30px;
    left: -30px;
    z-index: 0;
}

.sobre-card-bg { position: relative; z-index: 1; }
.sobre-text { position: relative; z-index: 1; }

.sobre-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; width: 100%; }

.missao-item {
    background: white;
    border-radius: 22px;
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.missao-item:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.missao-item:nth-child(1):hover { border-color: rgba(79,190,236,0.25); }
.missao-item:nth-child(2):hover { border-color: rgba(255,107,157,0.25); }
.missao-item:nth-child(3):hover { border-color: rgba(107,203,119,0.25); }

.missao-item h4 { font-family: "Baloo 2", cursive; font-size: 1.05rem; font-weight: 800; color: var(--blue); }
.missao-item:nth-child(2) h4 { color: var(--pink); }
.missao-item:nth-child(3) h4 { color: #4caf50; }
.missao-item p { font-size: 0.9rem; line-height: 1.55; color: #556677; }

/* ===== SERVIÇOS ===== */
#servicos { background: var(--bg); }

.servicos-header { text-align: center; margin-bottom: 3rem; }

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.8rem 3rem 1.8rem;
    border: 2px solid;
    position: relative;
    cursor: default;
    transition: all 0.3s ease;
}

.service-card:nth-child(1) { border-color: var(--blue); }
.service-card:nth-child(2) { border-color: var(--pink); }
.service-card:nth-child(3) { border-color: var(--green); }
.service-card:nth-child(4) { border-color: var(--yellow); }

/* lift + colour-matched shadow per card */
.service-card:nth-child(1):hover   { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(79,  190, 236, 0.1); }
.service-card:nth-child(2):hover   { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(255, 107, 157, 0.1); }
.service-card:nth-child(3):hover   { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(107, 203, 119, 0.1); }
.service-card:nth-child(4):hover   { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(255, 217, 61,  0.1); }

.service-card h3 { font-family: "Baloo 2", cursive; font-size: 1.25rem; font-weight: 800; margin-bottom: 0.6rem; }
.service-card:nth-child(1) h3 { color: var(--blue); }
.service-card:nth-child(2) h3 { color: var(--pink); }
.service-card:nth-child(3) h3 { color: #4caf50; }
.service-card:nth-child(4) h3 { color: #d4a000; }

.service-card p { font-size: 0.92rem; color: #556677; line-height: 1.6; }

.service-icon {
    width: 25%;
    height: 30%;
    border-radius: 15px;
    box-shadow: inset #ffffff80 0px 1px 2px;
    border: solid 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.service-card:nth-child(1) .service-icon { background-color: var(--blue);   border-color: var(--blue); }
.service-card:nth-child(2) .service-icon { background-color: var(--pink);   border-color: var(--pink); }
.service-card:nth-child(3) .service-icon { background-color: var(--green);  border-color: var(--green); }
.service-card:nth-child(4) .service-icon { background-color: var(--yellow); border-color: var(--yellow); }

.service-icon svg { width: 40px; height: 40px; color: var(--white); }

/* ===== ESPECIALIDADES ===== */
#especialidades { background: var(--bg); overflow: hidden; }

.esp-header { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }

.esp-img-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(79, 190, 236, 0.2);
}

.esp-img-wrap img { width: 100%; height: 320px; object-fit: cover; display: block; border-radius: 28px; }

.esp-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, rgba(79,190,236,0.1) 0%, rgba(155,93,229,0.1) 100%);
    border: 2.5px dashed rgba(79,190,236,0.4);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    gap: 0.6rem;
    text-align: center;
}

.esp-placeholder img { width: 100%; height: 19.7rem; }

.esp-img-badge {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    background: linear-gradient(135deg, #4fbeec, #9b5de5);
    border-radius: 18px;
    padding: 0.8rem 1.4rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(79, 190, 236, 0.4);
}

.esp-img-badge .badge-num { font-family: "Baloo 2", cursive; font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.esp-img-badge .badge-label { font-size: 0.8rem; font-weight: 700; opacity: 0.92; }

.esp-slider-wrap {
    margin-bottom: 1rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.esp-slider { width: 100%; overflow: hidden; }

.esp-track {
    display: flex;
    gap: 0.7rem;
    width: max-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.track-right { animation: scrollRight 28s linear infinite; }
.track-left  { animation: scrollLeft  28s linear infinite; }

@keyframes scrollRight { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes scrollLeft  { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.esp-slider-wrap:hover .esp-track { animation-play-state: paused; }

.esp-tag {
    background: rgba(79, 190, 236, 0.12);
    color: var(--text);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    border: 1.5px solid rgba(79, 190, 236, 0.3);
    transition: all 0.2s;
    cursor: default;
    white-space: nowrap;
    flex-shrink: 0;
}
.esp-tag:hover { background: var(--blue); color: white; transform: scale(1.05); }

/* ===== PLANO / INVESTIMENTO ===== */
#plano { background: var(--bg); position: relative; overflow: hidden; }

.plano-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatBob linear infinite;
    opacity: 0.12;
}

.ps1 { width: 220px; height: 220px; background: var(--blue);   top: 30px;   left: -60px;  animation-duration: 9s;  border-radius: 60% 40% 55% 45%/50% 60% 40% 50%; }
.ps2 { width: 160px; height: 160px; background: var(--purple); top: 20%;    right: -40px; animation-duration: 7s;  animation-delay: -3s; border-radius: 40% 60% 60% 40%; }
.ps3 { width: 120px; height: 120px; background: var(--yellow); bottom: 15%; left: 5%;     animation-duration: 11s; animation-delay: -5s; }
.ps4 { width: 80px;  height: 80px;  background: var(--pink);   bottom: 30%; right: 8%;    animation-duration: 6s;  animation-delay: -2s; border-radius: 65% 35% 50% 50%; }
.ps5 { width: 60px;  height: 60px;  background: var(--green);  top: 50%;    left: 35%;    animation-duration: 8s;  animation-delay: -4s; }

.plano-center { text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }

.plano-card {
    max-width: 820px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 2;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(79, 190, 236, 0.22), 0 8px 24px rgba(0,0,0,0.08);
    border: 1.5px solid rgba(79, 190, 236, 0.25);
}

.plano-card-inner { display: grid; grid-template-columns: 1fr 1.2fr; min-height: 420px; }

.plano-glow-panel {
    background: linear-gradient(145deg, #4fbeec 0%, #2a9acc 50%, #9b5de5 100%);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.plano-glow-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    pointer-events: none;
}

.plano-badge {
    background: rgba(255,255,255,0.22);
    border: 1.5px solid rgba(255,255,255,0.45);
    color: white;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.plano-glow-panel h3 { font-family: "Baloo 2", cursive; font-size: 1.6rem; font-weight: 800; color: white; line-height: 1.2; }

.plano-price-big { display: flex; align-items: flex-start; gap: 0.2rem; color: white; line-height: 1; }
.price-currency { font-family: "Baloo 2", cursive; font-size: 1.4rem; font-weight: 800; margin-top: 0.5rem; }
.price-value    { font-family: "Baloo 2", cursive; font-size: 4.5rem; font-weight: 800; line-height: 1; }
.price-cents    { font-family: "Baloo 2", cursive; font-size: 1.1rem; font-weight: 700; margin-top: 0.5rem; opacity: 0.9; }
.price-cents small { font-size: 0.85rem; display: block; opacity: 0.8; }

.plano-sub-text { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 600; }

.plano-cta {
    background: white;
    color: var(--blue-dark);
    border: none;
    padding: 0.85rem 1.8rem;
    font-family: "Baloo 2", cursive;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    margin-top: 0.5rem;
}
.plano-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

.plano-features-panel {
    background: white;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
}

.plano-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px dashed #eef1f4;
    font-size: 0.93rem;
    font-weight: 600;
    color: #334455;
}
.plano-item:last-child { border-bottom: none; }

.plano-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; position: relative; z-index: 2; }

.pfeat {
    background: white;
    border-radius: 18px;
    padding: 1.4rem;
    text-align: center;
    border: 2px solid rgba(79, 190, 236, 0.15);
    transition: transform 0.2s;
}
.pfeat:hover { transform: translateY(-4px); }
.pfeat h4 { font-family: "Baloo 2", cursive; font-size: 1rem; color: var(--blue); font-weight: 800; }
.pfeat p { font-size: 0.82rem; color: #667788; margin-top: 0.3rem; }

/* ===== FOOTER / CONTATO ===== */
footer#contato {
    background: linear-gradient(135deg, #0d7ab5 0%, #4fbeec 45%, #7c3aed 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 5rem 5% 3rem;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatBob linear infinite;
}

.fs1 { width: 300px; height: 300px; background: rgba(255,255,255,0.06); top: -80px;  left: -80px;  animation-duration: 12s; border-radius: 60% 40% 55% 45%/50% 60% 40% 50%; }
.fs2 { width: 200px; height: 200px; background: rgba(255,255,255,0.05); top: 10%;    right: -60px; animation-duration: 8s;  animation-delay: -3s; }
.fs3 { width: 150px; height: 150px; background: rgba(155,93,229,0.25);  bottom: 20%; left: 5%;     animation-duration: 10s; animation-delay: -5s; border-radius: 40% 60% 60% 40%; }
.fs4 { width: 100px; height: 100px; background: rgba(255,255,255,0.07); bottom: 5%;  right: 12%;   animation-duration: 7s;  animation-delay: -2s; }
.fs5 { width: 70px;  height: 70px;  background: rgba(255,215,61,0.2);   top: 60%;    left: 40%;    animation-duration: 9s;  animation-delay: -4s; }
.fs6 { width: 50px;  height: 50px;  background: rgba(255,107,157,0.2);  top: 30%;    right: 30%;   animation-duration: 6s;  animation-delay: -1s; }

.footer-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3rem; }

.footer-cta-area { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.footer-tag { background: rgba(255,255,255,0.2); color: white; border: 1px solid rgba(255,255,255,0.35); }

footer#contato h2 { font-family: "Baloo 2", cursive; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 0.5rem; }
footer#contato h2 em { font-style: italic; opacity: 0.95; }
footer#contato p { font-size: 1.05rem; opacity: 0.88; max-width: 500px; line-height: 1.6; }

.contact-cards { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; width: 100%; }

.contact-card {
    background: rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 1.4rem 1.8rem;
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,0.3);
    text-align: center;
    min-width: 175px;
    transition: transform 0.2s, background 0.2s;
}
.contact-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.2); }
.contact-card h4 { font-family: "Baloo 2", cursive; font-weight: 800; font-size: 1rem; margin-bottom: 0.3rem; }
.contact-card a { color: rgba(255,255,255,0.88); font-size: 0.88rem; text-decoration: none; display: block; }
.contact-card a:hover { text-decoration: underline; color: white; }

.btn-white {
    background: white;
    color: var(--blue-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-family: "Baloo 2", cursive;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    display: inline-block;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(0,0,0,0.22); }

.footer-logo-area img { width: 150px; height: auto; }

.footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.2); border-radius: 1px; }

.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.footer-logo { height: 44px; border-radius: 10px; margin-bottom: 0.4rem; }
.footer-copy { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.footer-love { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
    #hero                  { grid-template-columns: 1fr; text-align: center; }
    #hero .hero-btns       { justify-content: center; }
    #sobre                 { grid-template-columns: 1fr; }
    .sobre-top             { grid-template-columns: 1fr; }
    .sobre-cards           { grid-template-columns: 1fr; }
    .esp-header            { grid-template-columns: 1fr; }
    .plano-card-inner      { grid-template-columns: 1fr; }
    .plano-glow-panel      { align-items: center; text-align: center; }
    .plano-features        { grid-template-columns: 1fr 1fr; }
    .nav-links             { display: none; }
}

@media (max-width: 540px) {
    .plano-features { grid-template-columns: 1fr; }
    .stats-strip    { gap: 1.5rem; }
}