/*  -------------------------------------------------
    style.css  |  Vida Saudável – Pastel Neumorphism
    ------------------------------------------------- */

/* ========== Root Variables ========== */
:root {
    /* Pastel Palette */
    --primary: #AEE1E1;
    --primary-dark: #7fb3b3;
    --secondary: #F7C8E0;
    --secondary-dark: #d9a4be;
    --accent: #FCE38A;
    --accent-dark: #d7bd6d;
    --bg-light: #FDFDFD;
    --bg-card: #F5F7F8;
    --text-dark: #222222;
    --text-mid: #555555;
    --shadow-light: rgba(255, 255, 255, 0.8);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    --radius-lg: 1.5rem;
    --transition: 0.35s ease;
}

/* ========== Base Resets & Typography ========== */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.2;
    text-align: center;
}
p {
    color: var(--text-mid);
    line-height: 1.7;
}

/* ========== Global Utility Classes ========== */
.section-padding {
    padding: 5rem 1.5rem;
}
.curved-top {
    clip-path: ellipse(120% 100% at 50% 0);
}
.curved-bottom {
    clip-path: ellipse(120% 100% at 50% 100%);
}
.neu {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 6px 6px 12px var(--shadow-dark),
                -6px -6px 12px var(--shadow-light);
}
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.read-more {
    color: var(--primary-dark);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}
.read-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition);
}
.read-more:hover {
    color: var(--primary);
}
.read-more:hover::after {
    width: 100%;
}

/* ========== Buttons ========== */
.btn,
button,
input[type='submit'] {
    font-family: 'Poppins', sans-serif;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    background: var(--primary);
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 4px 4px 8px var(--shadow-dark),
                -4px -4px 8px var(--shadow-light);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn:hover,
button:hover,
input[type='submit']:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 6px 6px 12px var(--shadow-dark),
                -6px -6px 12px var(--shadow-light);
}
.btn:active,
button:active,
input[type='submit']:active {
    transform: translateY(1px);
}

/* ========== Cards & Flex Centering ========== */
.card,
.item,
.testimonial,
.team-member,
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 4px 4px 10px var(--shadow-dark),
                -4px -4px 10px var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-6px);
}
.card-image,
.image-container {
    width: 100%;
    height: 260px;
    overflow: hidden;
}
.card-image img,
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    color: #FFFFFF;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55));
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 7rem 1.5rem 4rem;
}

/* ========== Navigation ========== */
header {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.7);
}
header nav a {
    position: relative;
    padding: .25rem 0;
    transition: var(--transition);
}
header nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
header nav a:hover::after {
    width: 100%;
}

/* ========== Forms ========== */
input[type='text'],
input[type='email'],
textarea {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1rem;
    width: 100%;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: inset 4px 4px 8px var(--shadow-dark),
                inset -4px -4px 8px var(--shadow-light);
}
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
}

/* ========== Testimonials Carousel Placeholder ========== */
.testimonial p {
    font-style: italic;
}

/* ========== Footer ========== */
footer {
    background: var(--bg-card);
    box-shadow: inset 0 8px 16px var(--shadow-dark);
}
footer a {
    color: var(--text-dark);
    transition: var(--transition);
}
footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.social-link {
    font-weight: 600;
}

/* ========== Success Page ========== */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    flex-direction: column;
    text-align: center;
}

/* ========== Privacy & Terms Padding Fix ========== */
.legal-page {
    padding-top: 100px;
}

/* ========== Media Queries ========== */
@media (min-width: 768px) {
    .grid-two-thirds {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }
}

/* ========== AOS Fade Overrides ========== */
[data-aos] {
    will-change: opacity, transform;
    transition-property: opacity, transform;
}

/* ========== GSAP Placeholder ========== */
/* Parallax & additional animations are handled via GSAP in script.js */
#burger{
    display: none;
}