/* ======== FONT FACE ======== */
@font-face {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/RedHatDisplay-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/RedHatDisplay-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/RedHatDisplay-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/RedHatDisplay-Black.woff2') format('woff2');
}

:root {
    --green: #007A33; /* Brasil Green, mais vibrante e premium */
    --green-dark: #004D20;
    --green-light: #EBF7EE; /* Tom claro de verde para backgrounds */
    --navy: #002F6C; /* Midnight Royal Blue */
    --navy-hover: #001C44;
    --yellow-gold: #FEDD00; /* Oficial Yellow de alto contraste */
    --yellow-light: #FFFDF0; /* Tom claro de amarelo */
    --white: #ffffff;
    --black: #0F172A; /* Slate 900 para tipografia */
    --gray-bg: #F8FAFC; /* Slate 50 */
    --gray-text: #475569; /* Slate 600 */
    --gray-border: #E2E8F0;
    --font: 'Red Hat Display', sans-serif;
    
    /* Sistema de Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ======== HEADER & NAV ======== */
.block-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 16px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.block-header__container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block-header__logo {
    width: 130px;
    height: auto;
    transition: var(--transition-smooth);
}

.block-header__logo:hover {
    transform: scale(1.03);
}

.block-header__nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.block-header__nav-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    position: relative;
    padding: 8px 0;
}

.block-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--green);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.block-header__nav-link:hover {
    color: var(--green);
}

.block-header__nav-link:hover::after,
.block-header__nav-link--active::after {
    width: 100%;
}

.block-header__nav-link--active {
    color: var(--green);
}

.block-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.block-header__burger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.block-header__burger--active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.block-header__burger--active span:nth-child(2) {
    opacity: 0;
}

.block-header__burger--active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ======== HERO ======== */
.block-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 16px 100px;
    margin-top: 70px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.block-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0, 77, 32, 0.85) 0%, rgba(0, 47, 108, 0.85) 100%);
    z-index: 0;
}

.block-hero__content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.block-hero__title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-wrap: balance;
}

.block-hero__title span {
    color: var(--yellow-gold);
}

.block-hero__btn {
    display: inline-block;
    background: var(--yellow-gold);
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    padding: 18px 48px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid var(--yellow-gold);
}

.block-hero__btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ======== PARALLAX SECTION ======== */
.block-parallax {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ======== CONTENT SECTIONS ======== */
.block-section {
    position: relative;
    padding: 100px 24px;
}

.block-section--white {
    background: var(--gray-bg);
}

.block-section--green {
    background: var(--green);
    color: var(--white);
}

.block-section__container {
    max-width: 1240px;
    margin: 0 auto;
}

/* ======== ABOUT TEXT BLOCK ======== */
.about-text-block {
    max-width: 75%;
    margin: 0 auto;
    text-align: center;
}

.about-text-block__title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 24px;
}

.about-text-block__body {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray-text);
}

/* ======== SERVICES GRID ======== */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
}

.services-list__item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 45px 24px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
    backdrop-filter: blur(4px);
}

.services-list__item:hover {
    background: var(--white);
    color: var(--green);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--white);
}

/* ======== TESTIMONIALS ======== */
.testimonial-block {
    max-width: 75%;
    margin: 0 auto;
    text-align: center;
}

.testimonial-block__title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 24px;
}

.testimonial-block__body {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 50px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.gallery-row__item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.gallery-row__item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-row__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-row__item:hover img {
    transform: scale(1.06);
}

/* ======== QUOTE BLOCK ======== */
.quote-block {
    max-width: 60%;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
    text-align: center;
}

.quote-block::before {
    content: '“';
    font-size: 160px;
    color: rgba(255, 255, 255, 0.12);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-block__text {
    position: relative;
    z-index: 1;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 24px;
    font-style: italic;
    text-wrap: balance;
}

.quote-block__author {
    font-size: 18px;
    font-weight: 700;
    color: var(--yellow-gold);
}

/* ======== CONTACT INFO ======== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.contact-info__block {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-border);
    transition: var(--transition-smooth);
}

.contact-info__block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}

.contact-info__title {
    font-size: 26px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 16px;
}

.contact-info__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--gray-text);
}

/* ======== ABOUT PAGE ======== */
.about-hero__title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--green);
    margin-bottom: 30px;
}

.about-hero__body {
    font-size: 19px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 24px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 85%;
    margin: 0 auto;
}

.mission-vision__block {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--green);
    transition: var(--transition-smooth);
}

.mission-vision__block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-vision__block:last-child {
    border-top-color: var(--navy);
}

.mission-vision__block h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.mission-vision__block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
}

.values-block {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 85%;
    margin: 0 auto;
    border: 1px solid var(--gray-border);
}

.values-block__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 30px;
    text-align: center;
}

.values-block__item {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.values-block__item::before {
    content: '✓';
    color: var(--green);
    font-weight: 900;
}

/* ======== TERMS OF USE PAGE ======== */
.terms-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-border);
    max-width: 900px;
    margin: 0 auto;
}

.terms-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 35px;
    margin-bottom: 15px;
}

.terms-content h2:first-of-type {
    margin-top: 0;
}

.terms-content p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.terms-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-content li {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 10px;
}

/* ======== FOOTER ======== */
.block-footer {
    position: relative;
    background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 90px 24px 40px;
    text-align: center;
    overflow: hidden;
    border-top: 5px solid var(--yellow-gold);
    color: var(--white);
}

.block-footer__content {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

.block-footer__title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.block-footer__title--channels {
    margin-top: 50px;
}

.block-footer__btn {
    display: inline-block;
    background: var(--yellow-gold);
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    padding: 16px 44px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid var(--yellow-gold);
}

.block-footer__btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.block-footer__stars {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    color: var(--yellow-gold);
}

.block-footer__stars svg {
    width: 32px;
    height: 30px;
}

.block-footer__social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.social-icons__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-icons__link:hover {
    background: var(--yellow-gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.social-icons__link svg {
    width: 24px;
    height: 24px;
}

.block-footer__nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.block-footer__nav-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.block-footer__nav-link:hover {
    color: var(--yellow-gold);
}

.block-footer__copyright {
    margin-top: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ======== WHATSAPP FLOATING WIDGET ======== */
.whats-app-widget {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whats-app-widget__bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    position: relative;
}

.whats-app-widget__bubble::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    animation: whats-pulse 2s infinite;
}

.whats-app-widget__bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whats-app-widget__bubble svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.whats-app-widget__tooltip {
    background-color: #ffffff;
    color: var(--black);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    pointer-events: none;
    animation: tooltip-fade 0.5s 1.5s forwards;
    opacity: 0;
    transform: translateX(10px);
    border: 1px solid var(--gray-border);
    position: relative;
}

.whats-app-widget__tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-right: 1px solid var(--gray-border);
    border-top: 1px solid var(--gray-border);
}

@keyframes whats-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes tooltip-fade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
    .block-header {
        padding: 16px;
    }

    .block-header__logo {
        width: 110px;
    }

    .block-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        border-bottom: 2px solid var(--gray-border);
    }

    .block-header__nav--open {
        display: flex;
    }

    .block-header__burger {
        display: flex;
    }

    .block-hero {
        min-height: 400px;
        padding: 120px 16px 60px;
        margin-top: 60px;
    }

    .block-hero__title {
        font-size: 38px;
    }

    .block-hero__btn {
        padding: 16px 36px;
        font-size: 14px;
    }

    .block-section {
        padding: 60px 16px;
    }

    .about-text-block,
    .testimonial-block,
    .quote-block,
    .values-block,
    .mission-vision,
    .contact-info,
    .terms-content {
        max-width: 100%;
        padding: 30px 20px;
    }

    .about-text-block__title,
    .testimonial-block__title,
    .quote-block__text,
    .values-block__title,
    .mission-vision h3,
    .about-hero__title {
        font-size: 28px;
    }

    .about-text-block__body,
    .testimonial-block__body,
    .about-hero__body {
        font-size: 16px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-row__item img {
        height: 260px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .block-footer {
        padding: 60px 16px 30px;
    }

    .block-footer__title {
        font-size: 30px;
    }

    .block-footer__nav {
        gap: 20px;
    }

    .whats-app-widget__tooltip {
        display: none; /* Oculta o tooltip no mobile para liberar espaço */
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .block-hero__title {
        font-size: 48px;
    }

    .about-text-block__title,
    .testimonial-block__title,
    .quote-block__text,
    .values-block__title {
        font-size: 36px;
    }
    
    .mission-vision {
        max-width: 100%;
    }
}
