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

:root {
    --teal: #3BBAB5;
    --teal-dark: #33958F;
    --green-light: #05C8A1;
    --yellow: #F7CA34;
    --purple: #B55AD3;
    --lime: #BADA55;
    --red: #FF6161;
    --blue: #536EB7;
    --mint: #75CBA8;
    --gray-dark: #2E2E2E;
    --gray-text: #383838;
    --gray-medium: #8C8B8B;
    --gray-light: #E5E5E5;
    --gray-bg: #FAFAFA;
    --white: #FFFFFF;
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --max-width: 1200px;
    --radius: 12px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--gray-text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

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

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img { transition: transform 0.3s; }
.logo img:hover { transform: scale(1.05); }

.main-nav {
    display: flex;
    gap: 8px;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--gray-text);
    transition: all 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--teal);
    background: rgba(59, 186, 181, 0.08);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gray-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal) 0%, var(--green-light) 50%, var(--mint) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(247,202,52,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(181,90,211,0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(186,218,85,0.2) 0%, transparent 40%);
}

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

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: var(--white);
    color: var(--teal);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: var(--teal-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Feature Cards (Home) ===== */
.features {
    padding: 100px 0;
    background: var(--gray-bg);
}

.features .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.features .section-title h2 {
    margin-bottom: 12px;
}

.features .section-title p {
    color: var(--gray-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s;
    border-top: 4px solid transparent;
}

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

.feature-card:nth-child(1) { border-top-color: var(--teal); }
.feature-card:nth-child(2) { border-top-color: var(--purple); }
.feature-card:nth-child(3) { border-top-color: var(--yellow); }
.feature-card:nth-child(4) { border-top-color: var(--blue); }

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.feature-card:nth-child(1) .feature-icon { background: rgba(59,186,181,0.12); }
.feature-card:nth-child(2) .feature-icon { background: rgba(181,90,211,0.12); }
.feature-card:nth-child(3) .feature-icon { background: rgba(247,202,52,0.12); }
.feature-card:nth-child(4) .feature-icon { background: rgba(83,110,183,0.12); }

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Stat Banner ===== */
.stat-banner {
    background: var(--gray-dark);
    padding: 60px 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 4px;
}

.stat-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Page Sections ===== */
.page-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--gray-bg) 0%, var(--white) 100%);
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero .subtitle {
    color: var(--gray-medium);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .accent-line {
    width: 60px;
    height: 4px;
    background: var(--teal);
    border-radius: 2px;
    margin: 20px auto 0;
}

.section { padding: 80px 0; }
.section-alt { background: var(--gray-bg); }

/* ===== About Page ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* ===== Links Page ===== */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.link-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s;
    border-left: 4px solid var(--teal);
}

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

.link-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.link-card p { color: var(--gray-medium); margin-bottom: 16px; font-size: 0.95rem; }

.link-card .btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--teal);
    color: var(--white);
    transition: all 0.3s;
}

.link-card .btn-sm:hover {
    background: var(--teal-dark);
    color: var(--white);
}

/* ===== Media Page ===== */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.media-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s;
}

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

.media-card-body { padding: 24px; }
.media-card .badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(59,186,181,0.1);
    color: var(--teal);
    margin-bottom: 10px;
}

.media-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.media-card p { color: var(--gray-medium); font-size: 0.9rem; }

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Shop Page ===== */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-image img {
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.product-info h2 { margin-bottom: 12px; }

.product-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 50px;
    background: var(--teal);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59,186,181,0.3);
}

.btn-buy:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,186,181,0.4);
    color: var(--white);
}

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--gray-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--gray-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: var(--white);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.btn-submit {
    width: 100%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px;
    border-radius: 50px;
    background: var(--teal);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--teal-dark);
}

.contact-info h3 { margin-bottom: 20px; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59,186,181,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-item p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ===== Policy Page ===== */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-light);
}

.policy-content p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.policy-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.policy-content li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

/* ===== Greg Javos Page ===== */
.javos-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-medium);
}

/* ===== Video Showcase (Comunidades Indigenas) ===== */
.video-showcase {
    margin: 40px 0;
}

.video-embed-large {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.video-embed-large iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
}

.video-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-style: italic;
}

/* ===== Projetos Hub Page ===== */
.projetos-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.projeto-hub-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s;
    border-top: 4px solid var(--teal);
    display: flex;
    flex-direction: column;
}

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

.projeto-hub-card:nth-child(2) { border-top-color: var(--purple); }
.projeto-hub-card:nth-child(3) { border-top-color: var(--yellow); }
.projeto-hub-card:nth-child(4) { border-top-color: var(--blue); }
.projeto-hub-card:nth-child(5) { border-top-color: var(--mint); }
.projeto-hub-card:nth-child(6) { border-top-color: var(--red); }

.projeto-hub-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(59,186,181,0.1);
    color: var(--teal);
    margin-bottom: 14px;
    align-self: flex-start;
}

.projeto-hub-card:nth-child(2) .projeto-hub-badge {
    background: rgba(181,90,211,0.1);
    color: var(--purple);
}
.projeto-hub-card:nth-child(3) .projeto-hub-badge {
    background: rgba(247,202,52,0.15);
    color: #b89518;
}
.projeto-hub-card:nth-child(4) .projeto-hub-badge {
    background: rgba(83,110,183,0.1);
    color: var(--blue);
}

.projeto-hub-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gray-dark);
}

.projeto-hub-card > p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.projeto-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--teal);
    transition: all 0.3s;
}

.projeto-hub-link:hover {
    color: var(--teal-dark);
    gap: 10px;
}

/* ===== Projetos Criativos Page ===== */
.projeto-card {
    margin-bottom: 48px;
}

.projeto-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--gray-dark);
}

.projeto-card > p {
    font-size: 1.05rem;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.pdf-download {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--gray-bg);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--gray-text);
}

.pdf-download:hover {
    background: var(--white);
    border-color: var(--teal);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    color: var(--gray-text);
}

.pdf-icon {
    flex-shrink: 0;
}

.pdf-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pdf-filename {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.pdf-meta {
    font-size: 0.8rem;
    color: var(--gray-medium);
}

.pdf-download-icon {
    flex-shrink: 0;
    color: var(--gray-medium);
    transition: color 0.3s;
}

.pdf-download:hover .pdf-download-icon {
    color: var(--teal);
}

/* ===== Footer Partners ===== */
.footer-partners {
    display: flex;
    align-items: flex-end;
    gap: 50px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.partner-group h5 {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-weight: 400;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.partner-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
}

.partner-img {
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s;
}

.partner-img:hover {
    opacity: 1;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo { margin-bottom: 12px; filter: brightness(0) invert(1); }

.footer-tagline {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p { font-size: 0.9rem; margin-bottom: 6px; }

.footer-shipping {
    margin-top: 12px;
    font-size: 0.85rem !important;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

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

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

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero-grid,
    .about-content,
    .product-showcase,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero { min-height: auto; padding: 80px 0 60px; }

    .hero-image { order: -1; }

    .menu-toggle { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .main-nav.open { display: flex; }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .links-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== Scroll Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-card,
.link-card,
.media-card,
.contact-item {
    animation: fadeInUp 0.6s ease both;
}

.feature-card:nth-child(2),
.link-card:nth-child(2),
.media-card:nth-child(2) { animation-delay: 0.1s; }

.feature-card:nth-child(3),
.link-card:nth-child(3),
.media-card:nth-child(3) { animation-delay: 0.2s; }

.feature-card:nth-child(4),
.link-card:nth-child(4),
.media-card:nth-child(4) { animation-delay: 0.3s; }
