/* ===== HERO GOTINHA ===== */
.gotinha-hero {
min-height: 88vh;
display: flex;
align-items: center;
justify-content: center;
gap: 60px;
padding: 60px 40px;
background: linear-gradient(135deg, #f0f7f4 0%, #e3f2ec 60%, #dceef9 100%);
position: relative;
overflow: hidden;
}

.gotinha-hero::before {
content: '';
position: absolute;
width: 600px;
height: 600px;
border-radius: 50%;
background: radial-gradient(circle, rgba(26, 158, 122, 0.1) 0%, transparent 70%);
top: -150px;
left: -100px;
pointer-events: none;
}

.gotinha-hero-texto {
max-width: 480px;
position: relative;
z-index: 1;
}

.gotinha-hero-texto h1 {
font-size: 42px;
font-weight: 700;
color: #1a2e25;
line-height: 1.2;
margin: 14px 0 16px;
}

.gotinha-hero-texto p {
font-size: 16px;
color: #4a6e5e;
line-height: 1.75;
margin-bottom: 28px;
}

.gotinha-mascote-wrap {
position: relative;
width: 320px;
height: 320px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
}

.gotinha-mascote-wrap img {
width: 100%;
height: 100%;
object-fit: contain;
filter: drop-shadow(0 18px 30px rgba(220, 38, 38, 0.25));
animation: gota-pop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    gota-float 4s ease-in-out 0.9s infinite;
}

/* blob decorativo atrás da gotinha */
.gotinha-blob {
position: absolute;
width: 280px;
height: 280px;
background: linear-gradient(135deg, rgba(26, 158, 122, 0.12), rgba(58, 123, 213, 0.1));
border-radius: 42% 58% 60% 40% / 50% 45% 55% 50%;
animation: blob 8s ease-in-out infinite;
z-index: 0;
}

.gotinha-mascote-wrap img {
position: relative;
z-index: 1;
}

@keyframes blob {

0%,
100% {
    border-radius: 42% 58% 60% 40% / 50% 45% 55% 50%;
}

50% {
    border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
}
}

/* ===== HISTÓRIA ===== */
.historia-section {
padding: 80px 40px;
background: #ffffff;
}

.historia-wrap {
max-width: 720px;
margin: 0 auto;
text-align: center;
}

.historia-wrap h2 {
font-size: 30px;
font-weight: 700;
color: #1a2e25;
margin: 14px 0 20px;
}

.historia-wrap p {
font-size: 15px;
color: #4a6e5e;
line-height: 1.8;
margin-bottom: 16px;
}

/* ===== EXPRESSÕES ===== */
.expressoes-section {
padding: 80px 40px;
background: linear-gradient(135deg, #f0f7f4 0%, #e3f2ec 60%, #dceef9 100%);
}

.expressoes-section h2 {
text-align: center;
font-size: 28px;
font-weight: 700;
color: #1a2e25;
margin-bottom: 8px;
}

.expressoes-sub {
text-align: center;
font-size: 14px;
color: #8aab9e;
margin-bottom: 48px;
}

.expressoes-grid {
max-width: 900px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}

.expressao-card {
background: #ffffff;
border: 1px solid #d4e8df;
border-radius: 20px;
padding: 32px 24px 28px;
text-align: center;
box-shadow: 0 4px 16px rgba(26, 158, 122, 0.07);
transition: transform 0.25s, box-shadow 0.25s;
}

.expressao-card:hover {
transform: translateY(-6px);
box-shadow: 0 14px 36px rgba(26, 158, 122, 0.13);
}

.expressao-img-wrap {
width: 140px;
height: 140px;
margin: 0 auto 20px;
position: relative;
}

.expressao-img-wrap img {
width: 100%;
height: 100%;
object-fit: contain;
filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
animation: gota-float 4s ease-in-out infinite;
}

.expressao-card:nth-child(2) .expressao-img-wrap img {
animation-delay: 0.5s;
}

.expressao-card:nth-child(3) .expressao-img-wrap img {
animation-delay: 1s;
}

.expressao-badge {
display: inline-block;
font-size: 11px;
font-weight: 700;
letter-spacing: 1.2px;
text-transform: uppercase;
padding: 4px 14px;
border-radius: 99px;
margin-bottom: 12px;
border: 1px solid;
}

.badge-normal {
color: #1a9e7a;
background: rgba(26, 158, 122, 0.08);
border-color: rgba(26, 158, 122, 0.3);
}

.badge-alta {
color: #dc2626;
background: rgba(220, 38, 38, 0.07);
border-color: rgba(220, 38, 38, 0.25);
}

.badge-baixa {
color: #f59e0b;
background: rgba(245, 158, 11, 0.08);
border-color: rgba(245, 158, 11, 0.3);
}

.expressao-card h3 {
font-size: 18px;
font-weight: 700;
color: #1a2e25;
margin-bottom: 8px;
}

.expressao-card p {
font-size: 13px;
color: #6a8e80;
line-height: 1.65;
}

/* ===== CTA ===== */
.gotinha-cta {
padding: 80px 40px;
background: #ffffff;
text-align: center;
}

.gotinha-cta h2 {
font-size: 28px;
font-weight: 700;
color: #1a2e25;
margin-bottom: 12px;
}

.gotinha-cta p {
font-size: 15px;
color: #6a8e80;
margin-bottom: 28px;
}

.gotinha-cta-btns {
display: flex;
gap: 14px;
justify-content: center;
flex-wrap: wrap;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
.gotinha-hero {
    flex-direction: column;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.gotinha-hero-texto h1 {
    font-size: 30px;
}

.gotinha-mascote-wrap {
    width: 220px;
    height: 220px;
    order: -1;
}

.gotinha-blob {
    width: 200px;
    height: 200px;
}

.expressoes-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
}

.historia-section,
.expressoes-section,
.gotinha-cta {
    padding: 56px 24px;
}
}