/* 
 * TEMA PREMIUM - Inspirado em Marca Irresistível
 * Paleta: Preto, Branco, Dourado, Verde
 * Design: Luxuoso, Moderno, Elegante
 */

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light only;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
    color-scheme: light only;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

/* ===== VARIÁVEIS DE COR ===== */
:root {
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --primary-white: #ffffff;
    --off-white: #f8f9fa;
    --primary-gold: #d4af37;
    --gold-dark: #b8941e;
    --gold-light: #f4e4b8;
    --primary-green: #2c5530;
    --green-dark: #1a4d2e;
    --green-medium: #2c5530;
    --green-light: #4f772d;
    --accent-gradient: linear-gradient(135deg, #d4af37 0%, #f4e4b8 100%);
    --green-gradient: linear-gradient(135deg, #1a4d2e 0%, #2c5530 50%, #4f772d 100%);
}

/* Body já definido acima no reset */

/* ===== TIPOGRAFIA PREMIUM ===== */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-black);
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 4rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* ===== BOTÕES PREMIUM COM ANIMAÇÕES MODERNAS ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4b8 50%, #d4af37 100%);
    background-size: 200% 200%;
    color: #1a1a1a;
    border: 2px solid #d4af37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4),
                0 4px 10px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.6),
                0 8px 20px rgba(212, 175, 55, 0.4),
                0 0 30px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: #f4e4b8;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-black);
    border-color: var(--primary-white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.4),
                0 8px 20px rgba(255, 255, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.2);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--primary-white);
    border-color: var(--green-light);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 45px rgba(44, 85, 48, 0.5),
                0 8px 20px rgba(44, 85, 48, 0.3),
                0 0 30px rgba(44, 85, 48, 0.2);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 800;
}

/* ===== HEADER PREMIUM ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(44, 85, 48, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 0.5rem;
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 1rem 0;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none !important;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #4a7c59;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.nav-menu.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    max-height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: scroll !important;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 80px 0 2rem 0;
}

.nav-menu.sidebar.active {
    right: 0;
}

.nav-logo h2 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--primary-black);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-link:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== HERO SECTION PREMIUM ===== */
.hero {
    min-height: 90vh;
    max-height: 90vh;
    padding-top: 80px;
    padding-bottom: 2rem;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 50%, var(--green-light) 100%);
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

@keyframes backgroundMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: backgroundMove 20s ease infinite;
    background-size: 400% 400%;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    grid-column: 1;
}

.hero-image {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hero-photo img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-gold);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    filter: brightness(1.05) contrast(1.1);
}

.hero-photo img:hover {
    transform: scale(1.05) translateY(-10px) rotateZ(1deg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6),
                0 5px 20px rgba(0, 0, 0, 0.6),
                inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    border-color: var(--gold-light);
    filter: brightness(1.1) contrast(1.15);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 800;
    color: white;
    animation: titleFadeIn 1s ease-out;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title span {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 3s ease infinite;
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    animation: subtitleFadeIn 1s ease-out 0.3s backwards;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
    animation: ctaFadeIn 1s ease-out 0.6s backwards;
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== SEÇÕES COM BACKGROUND ALTERNADO ===== */
.sobre {
    padding: 6rem 0;
    background: #f8f9fa;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.sobre .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.sobre-image {
    display: flex;
    justify-content: center;
}

.sobre-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
    text-align: justify;
}

.sobre-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.credential-item i {
    font-size: 1.5rem;
    color: #4a7c59;
}

.credential-item span {
    font-weight: 500;
    color: #2c5530;
}

.sobre-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.sobre-image {
    grid-column: 1;
}

.sobre-text {
    grid-column: 2;
}

.sobre-photo {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.sobre-photo img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15),
                0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-gold);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1.05);
}

.sobre-photo img:hover {
    transform: translateY(-8px) scale(1.03) rotateZ(-1deg);
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.4),
                0 15px 40px rgba(0, 0, 0, 0.2),
                0 0 50px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-light);
    filter: brightness(1.05) saturate(1.1) contrast(1.05);
}

.sobre-photo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--gold-light);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

.educadora {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    position: relative;
}

.educadora::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%234a7c59" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
    opacity: 0.3;
}

.educadora-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.educadora .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.educadora-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.educadora-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08),
                0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.educadora-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--gold-light), var(--primary-gold));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.educadora-card:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s ease infinite;
}

.educadora-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 10px 30px rgba(0, 0, 0, 0.1),
                0 0 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.educadora-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4f772d, #2c5530);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(79, 119, 45, 0.4),
                0 4px 10px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientShift 3s ease infinite;
}

.educadora-card:hover .educadora-card-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 45px rgba(79, 119, 45, 0.6),
                0 8px 20px rgba(79, 119, 45, 0.4),
                0 0 30px rgba(79, 119, 45, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.educadora-card-icon i {
    font-size: 2rem;
    color: #fff;
}

.educadora-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4f772d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.educadora-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.produtos-cursos {
    padding: 6rem 0;
    background: #f8f9fa;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Layout: 3 cards em cima, 2 embaixo centralizados */
.produtos-grid .produto-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2;
    margin-left: auto;
}

.produtos-grid .produto-card:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2;
    margin-right: auto;
}

.produtos-cursos .section-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

/* ===== CARDS PREMIUM ===== */
.sobre-card,
.testemunho-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.produto-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08),
                0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--gold-light), var(--primary-gold));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.produto-card:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s ease infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.produto-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 10px 30px rgba(0, 0, 0, 0.1),
                0 0 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.sobre-card::before,
.produto-card::before,
.testemunho-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
}

.sobre-card:hover,
.produto-card:hover,
.testemunho-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
}

/* Imagens dos Cursos */
.produto-image {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    filter: brightness(0.95) saturate(1.1);
}

.produto-card:hover .produto-image img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.05) saturate(1.2) contrast(1.1);
}

.produto-titulo {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #4f772d;
}

.produto-descricao {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

.produto-card .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
}

/* ===== FOOTER PREMIUM ===== */
.footer {
    background: linear-gradient(135deg, #1a4d2e 0%, #2c5530 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-up {
    background: #4a7c59;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-up:hover {
    background: #6b9b7a;
    transform: translateY(-2px);
}

.footer-section h4 {
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--off-white);
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.social-link {
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    border-color: var(--primary-gold);
    transform: translateY(-5px) rotate(5deg);
}

/* ===== SCROLL UP BUTTON ===== */
.scroll-up {
    background: var(--accent-gradient);
    color: var(--primary-black);
    border: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.scroll-up:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

/* ===== RESPONSIVO ===== */

/* TABLET / IPAD */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 120px 0 3rem;
    }

    .hero .container {
        gap: 2rem;
        padding: 0 30px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .sobre-content {
        gap: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-logo h2 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .nav-menu:not(.sidebar) {
        display: none !important;
    }

    .nav-toggle {
        display: flex !important;
    }

    /* Esconder botão CTA do header no mobile */
    .nav-cta {
        display: none !important;
    }

    .nav-menu.sidebar {
        display: none;
    }
    
    .nav-menu.sidebar.active {
        display: flex;
        flex-direction: column;
    }

    .nav-menu.sidebar .nav-list {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-menu.sidebar .nav-item {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-menu.sidebar .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        color: #333;
        font-size: 1rem;
        text-align: left;
    }

    .nav-menu.sidebar .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f0f4f1;
        margin: 0;
        border-radius: 0;
        padding: 0;
    }

    .nav-menu.sidebar .dropdown-menu a {
        padding: 1rem 3rem;
        font-size: 0.95rem;
        border-bottom: 1px solid #e0e0e0;
    }

    /* HERO MOBILE */
    .hero {
        padding: 130px 0 2rem;
        min-height: auto;
        max-height: none;
        background-attachment: scroll;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .hero-cta {
        justify-content: center;
        margin-bottom: 2rem;
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .hero-photo {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-photo img {
        max-height: 350px;
    }

    /* SECTIONS MOBILE */
    .sobre,
    .educadora,
    .produtos-cursos {
        padding: 3rem 0;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        justify-items: center;
    }

    .sobre {
        padding: 3rem 0;
    }

    .sobre-photo {
        max-width: 280px;
        margin: 0 auto;
    }

    .sobre-text {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-column: 1;
    }

    .sobre-image {
        grid-column: 1;
    }

    .sobre-description {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
        word-wrap: break-word;
        margin-bottom: 2rem;
    }

    .sobre-credentials {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 2rem;
        width: 100%;
        justify-items: center;
    }

    .credential-item {
        padding: 0.8rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .credential-item i {
        font-size: 1.2rem;
    }

    .sobre-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }

    .sobre .btn {
        width: 100%;
        max-width: 320px;
        display: block;
        margin: 0 auto;
        padding: 14px 24px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 2rem;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 10px;
    }

    .educadora {
        padding: 3rem 0;
    }

    .educadora-content {
        max-width: 100%;
    }

    .educadora-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .educadora-card {
        padding: 2rem;
    }

    .educadora-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }

    .educadora-card-icon i {
        font-size: 1.8rem;
    }

    .educadora-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .educadora-card-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .educadora .btn {
        width: 100%;
        max-width: 320px;
        display: block;
        margin: 0 auto;
        padding: 14px 24px;
        font-size: 0.85rem;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .produtos-grid .produto-card:nth-child(4),
    .produtos-grid .produto-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }

    .produto-card {
        padding: 1.5rem;
    }

    .produto-titulo {
        font-size: 1.2rem;
        word-wrap: break-word;
    }

    .produto-descricao {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .produtos-cursos {
        padding: 3rem 0;
    }

    .produtos-cursos .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .produto-card .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .produtos-cursos .text-center .btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;
        font-size: 0.85rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        width: 100%;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section ul {
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 0.8rem;
    }

    .footer-section ul li a {
        font-size: 0.95rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    /* Botões responsivos para tablets */
    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .nav-container {
        padding: 0.6rem 1rem;
    }

    .nav-logo h2 {
        font-size: 1.3rem;
    }

    /* Botões ainda menores para mobile pequeno */
    .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    /* HERO MOBILE SMALL */
    .hero {
        padding: 130px 0 1.5rem;
        min-height: auto;
        max-height: none;
    }

    .hero .container {
        padding: 0 15px;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .hero-cta {
        margin-bottom: 1.5rem;
        gap: 0.8rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .hero-photo {
        max-width: 240px;
    }

    .hero-photo img {
        max-height: 300px;
    }

    /* SECTIONS MOBILE SMALL */
    .sobre,
    .educadora,
    .produtos-cursos {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding: 0 5px;
    }

    .sobre-photo {
        max-width: 240px;
    }

    .educadora {
        padding: 2.5rem 0;
    }

    .educadora .btn {
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .sobre {
        padding: 2.5rem 0;
    }

    .sobre-photo {
        max-width: 240px;
    }

    .sobre-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .credential-item {
        font-size: 0.85rem;
        padding: 0.7rem;
    }

    .credential-item i {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .sobre .btn {
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 0.85rem;
    }

    .produto-card {
        padding: 1.2rem;
    }

    .produto-titulo {
        font-size: 1.1rem;
    }

    .produto-descricao {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .produtos-cursos {
        padding: 2.5rem 0;
    }

    .produtos-cursos .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .produto-card {
        padding: 1rem;
    }

    .produto-card .btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .produtos-cursos .text-center .btn {
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* ===== RESPONSIVO MOBILE MUITO PEQUENO (MAX-WIDTH: 360px) ===== */
@media (max-width: 360px) {
    .nav-container {
        padding: 0.5rem 0.8rem;
    }

    .nav-logo h2 {
        font-size: 1.1rem;
    }

    /* Botões do header ainda menores para telas muito pequenas */
    .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .btn-large {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    /* Ajuste específico para botão do header */
    .nav-cta .btn {
        padding: 8px 14px;
        font-size: 0.7rem;
        white-space: nowrap;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Previne scroll horizontal mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

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


