:root {
    --primary-color: #00808d;
    /* Teal/Verde água */
    --primary-dark: #026b76;
    --text-color: rgba(28, 21, 14, 0.85);
    --text-light: #5c574f;
    --bg-cream: #efe9e1;
    --bg-taupe: #e3d8ca;
    --bg-white: #ffffff;
    --accent-gold: #9a714b;
    /* Dourado/Marrom claro (títulos) */
    --accent-brown: #946c48;
    /* Marrom caixas/cards */
    --accent-brown-light: #ae7f54;
    --footer-bg: #5f452d;
    /* Marrom escuro */

    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Quicksand', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    font-size: 18px;
    line-height: 32px;
    background-color: var(--bg-cream);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

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

.section-padding {
    padding: 110px 0;
}

.bg-taupe {
    background-color: var(--bg-taupe);
}

.bg-cream {
    background-color: var(--bg-cream);
}

.bg-white {
    background-color: var(--bg-white);
}

.bg-teal {
    background-color: var(--primary-color);
    color: white;
}

.bg-brown {
    background: linear-gradient(135deg, var(--accent-brown-light), var(--accent-brown));
    color: white;
}

.radius-large {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.shadow {
    box-shadow: var(--shadow-light);
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.align-center {
    align-items: center;
}

.gap-large {
    gap: 80px;
}

.mt-large {
    margin-top: 60px;
}

.section-title {
    font-family: 'Mona Sans', var(--font-heading);
    color: #1C150E;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section-title span {
    font-family: 'Mona Sans', var(--font-heading);
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -1.5px;
    background: linear-gradient(90deg, #946C48 0%, #D09763 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #ddd;
    /* placeholder background */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 115px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-card {
    background: var(--bg-cream);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    width: 85%;
    position: relative;
    padding: 80px 0;
}

.hero-card-inner {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 !important;
    padding-left: max(20px, calc((100vw - 1200px) / 2)) !important;
    max-width: none !important;
    width: 100%;
}

.hero-text-box {
    max-width: 600px;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: absolute;
    right: 20px;
    /* Overlaps the right edge of the card */
    bottom: -80px;
    /* Offset the padding of hero-card */
    height: calc(100% + 180px);
    /* Taller than the card */
    display: flex;
    align-items: flex-end;
    z-index: 3;
}

.hero-person-img {
    height: 100%;
    object-fit: contain;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.hero h2 {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-text-box p {
    color: var(--text-light);
}

.hero-text-box .hero-quote {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.15rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
    color: white;
    padding: 22px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: background-color 0.3s;
    line-height: 1.3;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-primary i {
    background-color: white;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
}

/* ==================== SOBRE A PALESTRANTE ==================== */
.qualifications {
    list-style: none;
    margin-top: 35px;
}

.qualifications li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 20px;
}

.qualifications li:last-child {
    border-bottom: none;
}

.qualifications li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 4px;
}

.about-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    align-self: start;
}

.about-person-img {
    width: auto;
    height: auto;
    display: block;
}

/* ==================== AS PESSOAS PODEM ESQUECER ==================== */
.lessons-text p:first-child strong {
    color: var(--text-color);
    font-weight: 800;
}

.lessons-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lessons-images img {
    width: 100%;
    height: auto;
    aspect-ratio: 387 / 125;
    object-fit: cover;
    display: block;
}

/* ==================== QUEM É DANIELLA + MUITO MAIS ==================== */
.who-story {
    padding-top: 40px;
}

.who-box {
    background-color: var(--accent-brown);
    color: white;
    padding: 60px 45px;
}

.who-box h3 {
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.who-box h3 strong {
    font-weight: 700;
}

.who-list {
    list-style: none;
}

.who-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
}

.who-list li:last-child {
    border-bottom: none;
}

.who-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(242, 242, 242);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
}

.story-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.story-text p {
    color: rgba(28, 21, 14, 0.75);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.54px;
}

.story-text p strong {
    color: var(--text-color);
}

/* ==================== LEADERSHIP GRID ==================== */
.grid-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 75px;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.subtitle-right {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-top: 20px;
    text-align: end;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 10px;
    border-radius: var(--radius-md);
}

.feature-icon {
    margin-bottom: 26px;
}

.feature-icon img {
    width: 56px;
    height: 56px;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.quote-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--radius-md);
    position: relative;
}

.quote-card p {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
}

.quote-mark {
    color: #ffffff;
    font-size: 1.1rem;
}

.quote-mark-end {
    align-self: flex-end;
}

/* ==================== DIFERENCIAIS ==================== */
.differences-box {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    margin-top: 55px;
}

.diff-image {
    min-height: 300px;
    border-radius: 0;
    background-color: transparent;
    overflow: hidden;
}

.diff-person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.diff-text {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diff-text .quote-mark {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.diff-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.diff-author {
    color: var(--text-color);
    font-weight: 600;
    margin-top: 10px;
}

/* ==================== COMO FAÇO ISSO ==================== */
.how-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
  
    margin-bottom: 2rem;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 70px 0 70px;
}

.how-card {
    position: relative;
    width: 100%;
    aspect-ratio: 345 / 439;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    overflow: hidden;
    isolation: isolate;
}

.how-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: -1;
}

.how-number {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-weight: 600;
}

.how-card-text h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.how-card-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.how-footer {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 1000px;
}

.how-footer strong {
    color: var(--text-color);
}

/* ==================== PROPÓSITO ==================== */
.purpose-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.purpose-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
    margin: 70px 0;
}

.purpose-checklist ul {
    list-style: none;
}

.purpose-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.purpose-checklist li i {
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.purpose-pill {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px 40px;
    border-radius: 50px;
    margin-bottom: 80px;
}

.purpose-pill i {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.purpose-pill p {
    margin: 0;
    font-size: 1.05rem;
}

.separator {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 0 80px;
}

/* ==================== CONCLUSÃO ==================== */
.conclusion-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    background-color: var(--bg-cream);
    min-height: 400px;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.final-cta {
    display: flex;
    justify-content: center;
    margin-top: 90px;
}

.final-cta .btn-primary {
    text-align: center;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-socials a {
    color: white;
    font-size: 1.1rem;
    margin-left: 15px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.15);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.footer-socials a:hover {
    opacity: 0.7;
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 992px) {

    .grid-2-cols,
    .grid-header,
    .differences-box,
    .purpose-checklist,
    .how-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .differences-box {
        display: flex;
        flex-direction: column;
    }

    .diff-image {
        min-height: 260px;
        position: relative;
    }
}

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copy {
        order: 3;
    }
}
@media screen and (max-width: 768px) {
  .ocultar-mobile {
    display: none; /* */
  }
}