*,
*::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;
}

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);
    padding: 0.8rem 5%;
    border-bottom: 2px solid var(--blue);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img { height: 48px; }

/* desktop: invisible in layout, its children sit directly as nav-inner flex items */
.nav-collapse { display: contents; }

.nav-links ul { 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,
.nav-links a.active { color: var(--blue); }

.nav-btn { display: flex; align-items: center; }

.nav-cta {
    background: var(--blue);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: "Baloo 2", cursive;
    font-size: 1rem;
    font-weight: 700;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.nav-cta:hover { background: var(--blue-dark); transform: scale(1.02); }

/* ===== NAV TOGGLE (mobile hamburger) ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 110;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 3px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO ===== */
.page-hero {
    min-height: 42vh;
    padding: 9rem 5% 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f7fd 0%, #f1f1f1 60%, #fdf3ff 100%);
    display: flex;
    align-items: center;
}

.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);  bottom: 10%; left: 1%;  animation-duration: 9s;   animation-delay: -4s; }
.s4 { width: 80px;  height: 80px;  background: var(--blue);   top: 60%; right: 5%; 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: 30%; left: 45%; animation-duration: 8s;   animation-delay: -3s; }

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.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;
}

.hero-content h1 {
    font-family: "Baloo 2", cursive;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1rem;
}

.hero-content h1 span { color: var(--blue); }

.hero-content p {
    font-size: 1.1rem;
    color: #334455;
    line-height: 1.7;
    max-width: 620px;
}

.hero-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }

.hero-chip {
    background: rgba(79, 190, 236, 0.12);
    color: var(--text);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    border: 1.5px solid rgba(79, 190, 236, 0.3);
    transition: all 0.2s;
    cursor: default;
}
.hero-chip:hover { background: var(--blue); color: white; transform: scale(1.05); }
.hero-chip:nth-child(2) { background: rgba(255, 107, 157, 0.1); border-color: rgba(255, 107, 157, 0.3); }
.hero-chip:nth-child(2):hover { background: var(--pink); }
.hero-chip:nth-child(3) { background: rgba(107, 203, 119, 0.1); border-color: rgba(107, 203, 119, 0.3); }
.hero-chip:nth-child(3):hover { background: var(--green); }
.hero-chip:nth-child(4) { background: rgba(255, 217, 61, 0.15); border-color: rgba(255, 217, 61, 0.5); }
.hero-chip:nth-child(4):hover { background: #d4a000; }
.hero-chip:nth-child(5) { background: rgba(155, 93, 229, 0.1); border-color: rgba(155, 93, 229, 0.3); }
.hero-chip:nth-child(5):hover { background: var(--purple); }

/* ===== GENERIC SECTION ===== */
section { padding: 5rem 5%; position: relative; overflow: hidden; }
section.alt { background: white; }

/* ===== BACKGROUND DECOR SHAPES ===== */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.14;
    animation: floatBob linear infinite;
}
.bs1 { width: 220px; height: 220px; background: var(--blue);   top: -60px;   left: -60px;  animation-duration: 9s;  border-radius: 60% 40% 55% 45%/50% 60% 40% 50%; }
.bs2 { width: 170px; height: 170px; background: var(--purple); top: 15%;     right: -60px; animation-duration: 7s;  animation-delay: -3s; border-radius: 40% 60% 60% 40%; }
.bs3 { width: 140px; height: 140px; background: var(--yellow); bottom: -40px; left: 8%;    animation-duration: 11s; animation-delay: -5s; }
.bs4 { width: 90px;  height: 90px;  background: var(--pink);   bottom: 20%;  right: 10%;   animation-duration: 6s;  animation-delay: -2s; border-radius: 65% 35% 50% 50%; }

section > *:not(.bg-shape) { position: relative; z-index: 1; }

.section-header { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
.section-header.left { margin: 0 0 3rem; text-align: left; }

.section-title {
    font-family: "Baloo 2", cursive;
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    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.02rem; color: #445566; line-height: 1.6; }

/* ===== MATERIALS / DOWNLOADS ===== */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.material-card {
    background: white;
    border-radius: 22px;
    padding: 1.8rem 1.6rem;
    border: 2px solid;
    border-color: rgba(79, 190, 236, 0.25);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.material-card:nth-child(1) { border-color: rgba(79, 190, 236, 0.3); }
.material-card:nth-child(2) { border-color: rgba(255, 107, 157, 0.3); }
.material-card:nth-child(3) { border-color: rgba(107, 203, 119, 0.3); }
.material-card:nth-child(4) { border-color: rgba(255, 217, 61, 0.5); }

.material-card:nth-child(1):hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(79, 190, 236, 0.16); }
.material-card:nth-child(2):hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(255, 107, 157, 0.16); }
.material-card:nth-child(3):hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(107, 203, 119, 0.16); }
.material-card:nth-child(4):hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(255, 217, 61, 0.2); }

.material-card:nth-child(1) h3 { color: var(--blue-dark); }
.material-card:nth-child(2) h3 { color: #c0365e; }
.material-card:nth-child(3) h3 { color: #2e7d32; }
.material-card:nth-child(4) h3 { color: #8a6000; }

.material-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4fbeec, #9b5de5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.material-card:nth-child(1) .material-icon { background: linear-gradient(135deg, #4fbeec, #2a9acc); }
.material-card:nth-child(2) .material-icon { background: linear-gradient(135deg, #ff6b9d, #c0365e); }
.material-card:nth-child(3) .material-icon { background: linear-gradient(135deg, #6bcb77, #2e7d32); }
.material-card:nth-child(4) .material-icon { background: linear-gradient(135deg, #ffd93d, #d4a000); }
.material-icon svg { width: 24px; height: 24px; color: white; }

.material-card h3 { font-family: "Baloo 2", cursive; font-size: 1.1rem; font-weight: 800; color: var(--text); line-height: 1.3; }
.material-card p { font-size: 0.9rem; color: #556677; line-height: 1.55; flex: 1; }

/* ===== CEO QUOTE ===== */
.ceo-quote {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0d7ab5 0%, #4fbeec 45%, #7c3aed 100%);
    border-radius: 32px;
    padding: 3rem 3rem 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(79, 190, 236, 0.25), 0 8px 24px rgba(0,0,0,0.1);
}

.ceo-glow-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.ceo-quote::before {
    content: '\201C';
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-family: Georgia, serif;
    font-size: 9rem;
    color: rgba(255,255,255,0.12);
    line-height: 1;
    pointer-events: none;
}

.ceo-quote-text {
    position: relative;
    z-index: 1;
    font-size: 1.02rem;
    line-height: 1.85;
    opacity: 0.96;
}
.ceo-quote-text p { margin-bottom: 1.1rem; }
.ceo-quote-text p:last-child { margin-bottom: 0; }

.ceo-signature {
    margin-top: 1.6rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.ceo-signature strong { font-family: "Baloo 2", cursive; font-size: 1.15rem; font-weight: 800; }
.ceo-signature span { font-size: 0.85rem; opacity: 0.85; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== TELEMEDICINA - COMO USAR ===== */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
    margin-top: 2.5rem;
}

.provider-card {
    background: white;
    border-radius: 22px;
    padding: 2rem 1.7rem;
    border: 2px solid;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.provider-card:nth-child(1) { border-color: rgba(79, 190, 236, 0.3); }
.provider-card:nth-child(2) { border-color: rgba(107, 203, 119, 0.3); }
.provider-card:nth-child(3) { border-color: rgba(155, 93, 229, 0.3); }

.provider-card:nth-child(1):hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(79, 190, 236, 0.16); }
.provider-card:nth-child(2):hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(107, 203, 119, 0.16); }
.provider-card:nth-child(3):hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(155, 93, 229, 0.16); }

.provider-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(79, 190, 236, 0.14);
    color: var(--blue-dark);
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}
.provider-card:nth-child(2) .provider-num { background: rgba(107, 203, 119, 0.16); color: #2e7d32; }
.provider-card:nth-child(3) .provider-num { background: rgba(155, 93, 229, 0.16); color: #6a1b9a; }

.provider-card h3 { font-family: "Baloo 2", cursive; font-size: 1.15rem; font-weight: 800; color: var(--text); }
.provider-card p { font-size: 0.88rem; color: #556677; line-height: 1.5; flex: 1; }

.btn-provider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4fbeec, #2a9acc);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-family: "Baloo 2", cursive;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(79, 190, 236, 0.3);
}
.btn-provider:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(79, 190, 236, 0.4); }

/* ===== PHOTO GALLERIES ===== */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
    max-width: 1100px;
    margin: 2.5rem auto 0;
}

.photo-grid.wide { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.photo-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.photo-card:hover img { transform: scale(1.06); }

.photo-card.single { max-width: 720px; margin: 0; aspect-ratio: 4 / 3; }

.equipe-visual {
    position: relative;
    max-width: 720px;
    margin: 2.5rem auto 0;
}
.equipe-visual::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: var(--yellow);
    opacity: 0.18;
    border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
    top: -30px;
    left: -30px;
    z-index: 0;
}
.equipe-visual::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--purple);
    opacity: 0.14;
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    bottom: -30px;
    right: -30px;
    z-index: 0;
}
.equipe-visual .photo-card { position: relative; z-index: 1; }

/* ===== TEAM ROSTER ===== */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    max-width: 1100px;
    margin: 2.5rem auto 0;
}

.roster-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 1.4rem;
    border: 2px solid;
    border-color: rgba(79, 190, 236, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.roster-card:nth-child(1) { border-color: rgba(79, 190, 236, 0.3); }
.roster-card:nth-child(2) { border-color: rgba(255, 107, 157, 0.3); }
.roster-card:nth-child(3) { border-color: rgba(107, 203, 119, 0.3); }
.roster-card:nth-child(4) { border-color: rgba(255, 217, 61, 0.5); }
.roster-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.08); }

.roster-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4fbeec, #9b5de5);
    color: white;
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.roster-card:nth-child(1) .roster-avatar { background: linear-gradient(135deg, #4fbeec, #2a9acc); }
.roster-card:nth-child(2) .roster-avatar { background: linear-gradient(135deg, #ff6b9d, #c0365e); }
.roster-card:nth-child(3) .roster-avatar { background: linear-gradient(135deg, #6bcb77, #2e7d32); }
.roster-card:nth-child(4) .roster-avatar { background: linear-gradient(135deg, #ffd93d, #d4a000); }

.roster-card h4 { font-family: "Baloo 2", cursive; font-size: 0.98rem; font-weight: 800; color: var(--text); line-height: 1.3; }
.roster-card p { font-size: 0.82rem; color: #667788; font-weight: 600; }

/* ===== 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; }

/* ===== 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) {
    .nav-toggle { display: flex; }
    .nav-collapse {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 0 5%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        box-shadow: 0 14px 30px rgba(0,0,0,0.1);
        transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
    }
    .nav-collapse.open {
        max-height: 80vh;
        opacity: 1;
        padding: 1.5rem 5% 2rem;
        overflow-y: auto;
    }
    .nav-links ul { flex-direction: column; gap: 1.1rem; text-align: center; }
    .nav-btn   { justify-content: center; }
    .nav-cta   { justify-content: center; width: 100%; text-align: center; }

    .ceo-quote { padding: 2.2rem 1.6rem; }
    .providers-grid,
    .materials-grid,
    .roster-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

@media (max-width: 540px) {
    .page-hero          { padding: 8rem 6% 3rem; min-height: 34vh; }
    section              { padding: 3.5rem 6%; }
    .hero-chips          { justify-content: center; }
    .ceo-quote           { padding: 1.8rem 1.3rem 1.6rem; border-radius: 24px; }
    .ceo-quote::before   { font-size: 6rem; top: -0.5rem; left: 1rem; }
    .ceo-quote-text      { font-size: 0.95rem; }
    .materials-grid,
    .providers-grid,
    .roster-grid         { grid-template-columns: 1fr; }
    .photo-grid,
    .photo-grid.wide     { grid-template-columns: 1fr; }
    .photo-card.single   { max-width: 100%; }
    .equipe-visual       { margin-top: 2rem; }
    .material-card,
    .provider-card       { padding: 1.5rem 1.3rem; }
    .contact-cards       { flex-direction: column; align-items: stretch; }
    .footer-cta-area .btn-white { width: 100%; text-align: center; }
}
