/* ============================================
   CHUVA DE ALGODÃO — CSS PRINCIPAL
   Centro de Desenvolvimento Infantil
   ============================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Paleta Primária */
    --teal:       #5FBCBF;
    --rose:       #EF809A;
    --gold:       #CEBD7A;
    --sage:       #B9C1AE;

    /* Paleta Secundária */
    --teal-light: #A8DADC;
    --rose-light: #F4A7B9;
    --gold-light: #FFE066;
    --sage-light: #A6B098;

    /* Neutros */
    --white:      #FFFFFF;
    --off-white:  #FAFAF7;
    --cream:      #F7F5F0;
    --gray-100:   #F0EDE8;
    --gray-200:   #E0DDD6;
    --gray-400:   #A8A49D;
    --gray-600:   #6B6660;
    --gray-800:   #3D3A36;
    --dark:       #2C2926;

    /* Funcional */
    --whatsapp:   #25D366;

    /* Typography */
    --font-body:  'Montserrat', sans-serif;
    --font-title: 'Montserrat', sans-serif;

    /* Spacing */
    --section-py: 80px;
    --section-py-mobile: 50px;

    /* Radius */
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;
    --radius-full: 50%;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

img { max-width: 100%; height: auto; }

a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover { color: var(--rose); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

/* ---------- Navbar ---------- */
.navbar-chuva {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 0.8rem 0;
    transition: all 0.3s;
    z-index: 1000;
}

.navbar-chuva.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar-chuva .navbar-brand img {
    max-height: 55px;
    transition: max-height 0.3s;
}

.navbar-chuva.scrolled .navbar-brand img {
    max-height: 42px;
}

.navbar-chuva .nav-link {
    color: var(--gray-800) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
    position: relative;
}

.navbar-chuva .nav-link:hover,
.navbar-chuva .nav-link.active {
    color: var(--teal) !important;
}

.navbar-chuva .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    transition: width 0.3s;
}

.navbar-chuva .nav-link:hover::after,
.navbar-chuva .nav-link.active::after {
    width: 60%;
}

.navbar-chuva .btn-agendar {
    background: var(--teal);
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.navbar-chuva .btn-agendar:hover {
    background: var(--rose);
    transform: translateY(-1px);
}

/* ---------- Buttons ---------- */
.btn-chuva {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-chuva-primary {
    background: var(--teal);
    color: var(--white);
}
.btn-chuva-primary:hover {
    background: #4da8ab;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(95, 188, 191, 0.35);
}

.btn-chuva-rose {
    background: var(--rose);
    color: var(--white);
}
.btn-chuva-rose:hover {
    background: #e06b85;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 128, 154, 0.35);
}

.btn-chuva-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}
.btn-chuva-whatsapp:hover {
    background: #1fba59;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-chuva-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}
.btn-chuva-outline:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-chuva-white {
    background: var(--white);
    color: var(--teal);
}
.btn-chuva-white:hover {
    background: var(--cream);
    color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ---------- Hero ---------- */
.hero-chuva {
    position: relative;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 50%, var(--rose-light) 100%);
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-chuva::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(95, 188, 191, 0.1);
    pointer-events: none;
    z-index: 0;
}

.hero-chuva::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(239, 128, 154, 0.08);
    pointer-events: none;
    z-index: 0;
}

.hero-chuva .container {
    position: relative;
    z-index: 1;
}

.hero-chuva h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.hero-chuva h1 span {
    color: var(--teal);
}

.hero-chuva .hero-sub {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-chuva .hero-image {
    position: relative;
    z-index: 1;
}

.hero-chuva .hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-chuva .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
}

.hero-chuva .hero-badge i {
    color: var(--rose);
}

/* ---------- Sections ---------- */
.section-chuva {
    padding: var(--section-py) 0;
}

.section-chuva.bg-cream { background: var(--cream); }
.section-chuva.bg-teal-soft { background: linear-gradient(135deg, rgba(168,218,220,0.2) 0%, rgba(95,188,191,0.08) 100%); }
.section-chuva.bg-rose-soft { background: linear-gradient(135deg, rgba(244,167,185,0.1) 0%, rgba(239,128,154,0.05) 100%); }
.section-chuva.bg-dark { background: var(--dark); color: var(--white); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-label i {
    font-size: 0.7rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.section-title span {
    color: var(--teal);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 650px;
    line-height: 1.8;
}

.section-subtitle.centered {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Cards ---------- */
.card-chuva {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s;
    height: 100%;
}

.card-chuva:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.card-chuva .card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.card-chuva .card-icon.teal { background: rgba(95,188,191,0.12); color: var(--teal); }
.card-chuva .card-icon.rose { background: rgba(239,128,154,0.12); color: var(--rose); }
.card-chuva .card-icon.gold { background: rgba(206,189,122,0.15); color: var(--gold); }
.card-chuva .card-icon.sage { background: rgba(185,193,174,0.2); color: var(--sage-light); }

.card-chuva h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.card-chuva p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.card-chuva .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--teal);
    margin-top: 1rem;
    transition: gap 0.3s;
}

.card-chuva .card-link:hover {
    gap: 10px;
    color: var(--rose);
}

/* ---------- Especialidade Card ---------- */
.espec-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s;
    height: 100%;
}

.espec-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.espec-card .espec-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.espec-card .espec-img.bg-teal { background: linear-gradient(135deg, rgba(95,188,191,0.15), rgba(168,218,220,0.2)); }
.espec-card .espec-img.bg-rose { background: linear-gradient(135deg, rgba(239,128,154,0.12), rgba(244,167,185,0.15)); }
.espec-card .espec-img.bg-gold { background: linear-gradient(135deg, rgba(206,189,122,0.15), rgba(255,224,102,0.12)); }
.espec-card .espec-img.bg-sage { background: linear-gradient(135deg, rgba(185,193,174,0.2), rgba(166,176,152,0.15)); }

.espec-card .espec-img img {
    max-height: 100px;
    object-fit: contain;
}

.espec-card .espec-body {
    padding: 1.5rem;
}

.espec-card .espec-body h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--dark);
}

.espec-card .espec-body p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ---------- Steps / Timeline ---------- */
.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--teal);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item:nth-child(2) .step-number { background: var(--rose); }
.step-item:nth-child(3) .step-number { background: var(--gold); }
.step-item:nth-child(4) .step-number { background: var(--sage); }
.step-item:nth-child(5) .step-number { background: var(--teal); }

.step-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--teal) 0%, #4da8ab 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
    z-index: 0;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Contact Cards Stack ---------- */
.contato-cards {
    display: flex;
    flex-direction: column;
}

.contato-cards .card-chuva {
    height: auto !important;
    flex: none;
}

/* ---------- Contact Form ---------- */
.form-chuva .form-control,
.form-chuva .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: border-color 0.3s;
    background: var(--white);
}

.form-chuva .form-control:focus,
.form-chuva .form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(95,188,191,0.15);
    outline: none;
}

.form-chuva .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

/* ---------- Footer ---------- */
.footer-chuva {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-chuva h5 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.footer-chuva a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-chuva a:hover {
    color: var(--teal);
}

.footer-chuva .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-chuva .footer-links li {
    margin-bottom: 0.6rem;
}

.footer-chuva .footer-links li a {
    font-size: 0.92rem;
}

.footer-chuva .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    font-size: 0.85rem;
}

.footer-chuva .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.footer-chuva .social-icons a:hover {
    background: var(--teal);
    transform: translateY(-2px);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--whatsapp);
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .wpp-label {
    background: var(--white);
    color: var(--gray-800);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
}

/* ---------- Page Header ---------- */
.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(168,218,220,0.2) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.page-header .breadcrumb {
    justify-content: center;
    margin-top: 1rem;
}

.page-header .breadcrumb-item a {
    color: var(--teal);
    font-size: 0.9rem;
}

.page-header .breadcrumb-item.active {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ---------- Testimonial ---------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border-left: 4px solid var(--teal);
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

/* ---------- Utilities ---------- */
.text-teal { color: var(--teal) !important; }
.text-rose { color: var(--rose) !important; }
.text-gold { color: var(--gold) !important; }
.bg-soft-teal { background: rgba(95,188,191,0.08); }

.rounded-chuva { border-radius: var(--radius-lg); }
.rounded-chuva-xl { border-radius: var(--radius-xl); }

/* ---------- Hero Carousel ---------- */
#heroCarousel .carousel-indicators {
    bottom: 12px;
    gap: 6px;
    margin: 0;
    justify-content: center;
}

#heroCarousel .carousel-indicators button.active {
    opacity: 1 !important;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    transition: opacity 0.3s, background 0.3s;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    opacity: 1 !important;
    background: rgba(255,255,255,0.95) !important;
}

#heroCarousel .carousel-item img {
    transition: transform 6s ease;
}

#heroCarousel .carousel-item.active img {
    transform: scale(1.03);
}

/* ---------- Isa França / Equipe ---------- */

/* Carrossel da Isa */
.isa-carousel {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.isa-carousel .carousel-inner {
    border-radius: var(--radius-xl);
}

.isa-carousel .carousel-item img {
    height: 480px;
    object-fit: cover;
    object-position: top center;
}

.isa-carousel .carousel-indicators {
    bottom: 12px;
    gap: 6px;
    margin: 0;
    justify-content: center;
}

.isa-carousel .carousel-indicators button {
    background: var(--white);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
}

.isa-carousel .carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
    background: var(--teal);
}

.isa-carousel .carousel-control-prev,
.isa-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.isa-carousel:hover .carousel-control-prev,
.isa-carousel:hover .carousel-control-next {
    opacity: 0.9;
}

.isa-carousel .carousel-control-prev { left: 12px; }
.isa-carousel .carousel-control-next { right: 12px; }

.isa-carousel .carousel-control-prev-icon,
.isa-carousel .carousel-control-next-icon {
    width: 16px;
    height: 16px;
    filter: invert(1) brightness(0);
}

/* Isa — Role Badge */
.isa-role {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(95,188,191,0.1);
    padding: 6px 18px;
    border-radius: var(--radius-lg);
    margin-bottom: 1.2rem;
}

/* Isa — Badges/Tags */
.isa-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.isa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-800);
    transition: all 0.3s;
}

.isa-badge i {
    color: var(--teal);
    font-size: 0.9rem;
}

.isa-badge:hover {
    border-color: var(--teal);
    background: rgba(95,188,191,0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Isa — Citação / Quote */
.isa-quote-photo {
    text-align: center;
}

.isa-quote-photo img {
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}

.isa-quote-photo-sm img {
    max-height: 280px;
}

.isa-quote-block {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-left: 4px solid var(--teal);
}

.isa-quote-icon {
    font-size: 2rem;
    color: var(--teal);
    opacity: 0.25;
    margin-bottom: 0.5rem;
    display: block;
}

.isa-quote-block blockquote {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.isa-quote-block cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.isa-quote-block cite strong {
    font-size: 1rem;
    color: var(--dark);
}

.isa-quote-block cite span {
    font-size: 0.85rem;
    color: var(--teal);
    font-weight: 600;
}

/* Equipe — Bloco institucional */
.equipe-institucional {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.equipe-institucional-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(95,188,191,0.12), rgba(168,218,220,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--teal);
}

.equipe-institucional-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Equipe — Cards de área */
.equipe-area-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    background: var(--cream);
    transition: all 0.3s;
}

.equipe-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.equipe-area-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 0.8rem;
}

.equipe-area-icon.teal { background: rgba(95,188,191,0.15); color: var(--teal); }
.equipe-area-icon.rose { background: rgba(239,128,154,0.12); color: var(--rose); }
.equipe-area-icon.gold { background: rgba(206,189,122,0.15); color: var(--gold); }
.equipe-area-icon.sage { background: rgba(185,193,174,0.2); color: var(--sage-light); }

.equipe-area-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.equipe-area-card p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Isa — Home section photo */
.isa-home-photo {
    background: linear-gradient(135deg, rgba(95,188,191,0.1), rgba(244,167,185,0.08));
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
}

.isa-home-photo img {
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .hero-chuva { padding: 120px 0 60px; }
    .hero-chuva h1 { font-size: 2rem; }
    .section-chuva { padding: var(--section-py-mobile) 0; }
    .section-title { font-size: 1.8rem; }
    .page-header { padding: 120px 0 40px; }
    .page-header h1 { font-size: 2rem; }
    .cta-section h2 { font-size: 1.8rem; }

    /* Isa / Equipe responsive */
    .isa-carousel .carousel-item img { height: 380px; }
    .isa-quote-photo img { max-height: 280px; }
    .isa-home-photo img { max-height: 280px; }
    .isa-carousel .carousel-control-prev,
    .isa-carousel .carousel-control-next { opacity: 0.7; }
}

@media (max-width: 767px) {
    .hero-chuva { padding: 110px 0 50px; }
    .hero-chuva h1 { font-size: 1.7rem; }
    .hero-chuva .hero-sub { font-size: 1rem; }
    .hero-chuva .hero-image { margin-top: 2rem; }
    #heroCarousel .carousel-item img { height: 260px !important; }
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next { display: none; }
    .btn-chuva { padding: 12px 24px; font-size: 0.92rem; }
    .section-title { font-size: 1.5rem; }
    .whatsapp-float .wpp-label { display: none; }
    .whatsapp-float a { width: 54px; height: 54px; font-size: 1.5rem; }
    .footer-chuva { text-align: center; }

    /* Isa / Equipe responsive mobile */
    .isa-carousel .carousel-item img { height: 300px; }
    .isa-carousel .carousel-control-prev,
    .isa-carousel .carousel-control-next { display: none; }
    .isa-badges { justify-content: center; }
    .isa-quote-block { padding: 1.8rem; }
    .isa-quote-block blockquote { font-size: 1.1rem; }
    .isa-quote-photo img { max-height: 220px; }
    .isa-quote-photo-sm img { max-height: 200px; }
    .isa-home-photo { padding: 1.5rem; }
    .isa-home-photo img { max-height: 240px; }
    .equipe-institucional { padding: 2rem 1.5rem; }
    .equipe-area-card { padding: 1rem 0.8rem; }
    .equipe-area-card h5 { font-size: 0.85rem; }
    .equipe-area-card p { font-size: 0.78rem; }
}
