:root {
    --blue: #2563EB;
    --blue-dark: #1E40AF;
    --yellow: #FACC15;

    --text: #0F172A;
    --gray: #475569;

    --bg-soft: #F4F8FD;

    --radius: 24px;
    --pill: 999px;

    --shadow: 0 25px 60px rgba(0, 0, 0, .12);

    --max: 1180px;
}

a {
    text-decoration: none;
    color: inherit;
}


/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray);
}

/* CONTAINER */
.container {
    max-width: var(--max);
    margin: auto;
    padding: 0 24px;
}

/* RESET BUTTON PARA FICAR IGUAL <a> */
button.catalog-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    display: inline-block;
}

/* HEADER */
.header {
    position: fixed;
    top: 20px;
    width: 100%;
    z-index: 999;
}

.header-content {
    max-width: var(--max);
    margin: auto;
    height: 74px;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);

    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.logo img {
    margin-bottom: 2rem;
    height: auto;
    width: 12rem;

}

.nav {
    display: flex;
    gap: 34px;
}

.nav a {
    font-weight: 500;
    color: var(--text);
    transition: .2s;
}

.nav a:hover {
    color: var(--blue);
}

/* BOTÕES */
.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    padding: 12px 26px;
    border-radius: var(--pill);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, .35);
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    transition: .3s;

}

.btn-outline {
    border: 1px solid #e2e8f0;
    padding: 12px 26px;
    border-radius: var(--pill);
    font-weight: 600;
}

.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, .35);

    transition: .3s;

}

/* HERO */
.hero {
    padding: 140px 0 140px;
    background: linear-gradient(180deg, #EAF3FB, white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}

h1 {
    font-size: clamp(3rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--text);
}

.highlight {
    color: var(--blue);
    position: relative;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--yellow);
    border-radius: 999px;
}

.hero p {
    margin: 30px 0 44px;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-img img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

/* ABOUT */
.about {
    background: var(--bg-soft);
    padding: 140px 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 70px;
}

/* GRID CARDS */
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

/* CARD */
.event-card {
    position: relative;
    height: 480px;
    border-radius: var(--radius);
    overflow: hidden;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.event-card:hover img {
    transform: scale(1.06);
}

/* OVERLAY */
.event-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 28px;

    background: linear-gradient(180deg,
            rgba(0, 0, 0, .05) 20%,
            rgba(0, 0, 0, .85) 100%);

    color: white;
}

.event-tag {
    font-size: .75rem;
    text-transform: uppercase;
    opacity: .85;
    margin-bottom: 8px;
}

.event-overlay h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.event-overlay p {
    font-size: .92rem;
    opacity: .9;
    max-width: 85%;
}

.event-arrow {
    margin-top: 18px;
    font-size: 1.4rem;
    transition: .3s;
}

.event-card:hover .event-arrow {
    transform: translateX(6px);
}

/* RESPONSIVO */
@media(max-width:1024px) {
    .about-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:640px) {
    .about-cards {
        grid-template-columns: 1fr;
    }
}

/* SECTION */
.features {
    padding: 160px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-left {
    max-width: 560px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 42px;
}

.feature-icon {
    min-width: 52px;
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
    background: rgba(37, 99, 235, .08);
    color: var(--blue);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.2;
}

.feature-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.feature-text p {
    font-size: .95rem;
    line-height: 1.6;
}

.features-cta {
    display: inline-flex;
    gap: 8px;
    margin-top: 20px;
    font-weight: 600;
    color: var(--blue);
    cursor: pointer;
}

.features-cta span {
    transition: .3s;
}

.features-cta:hover span {
    transform: translateX(6px);
}

.features-right img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.catalog {
    padding: 160px 0;
    background: #EEF5FB;
}

/* HEADER */
.catalog-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.catalog-kicker {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--blue);
    font-weight: 600;
}

.catalog-header h2 {
    margin: 18px 0;
}

.catalog-header p {
    font-size: 1rem;
}

/* GRID */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* CARD */
.catalog-card {
    background: #D9E3F0;
    padding: 28px;
    border-radius: 18px;
    transition: .35s ease;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

/* LOGO */
.catalog-logo {
    width: 13rem;
    margin-bottom: 24px;
}

/* CATEGORY */
.catalog-category {
    font-size: .75rem;
    opacity: .7;
    margin-bottom: 8px;
}

/* TITLE */
.catalog-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

/* TEXT */
.catalog-card p {
    font-size: .92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* LINK */
.catalog-link {
    font-weight: 600;
    color: var(--text);
    margin-top: auto;
    cursor: pointer;
}

.catalog-expand {
    max-height: 0;
    overflow: hidden;
    transition: .6s ease;

}

.catalog-expand.active {

    max-height: 450px;
    /* altura máxima da lista */
    overflow-y: auto;
    padding-right: 8px;

    margin-top: 40px;
}

.catalog-expand-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
    position: relative;
}

/* CLOSE */
.expand-close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: #eee;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

/* MINI CARDS */
.expand-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.option-card {
    position: relative;
    background: #F4F8FD;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
}

.option-card:hover {
    transform: translateY(-4px);
}

.option-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.option-card-info {
    padding: 16px;
}

.option-card-info h4 {
    font-size: 1rem;
}

.option-card-info span {
    font-size: .85rem;
    color: #64748B;
}

/* BADGE */
.option-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--blue);
    color: white;
    font-size: .7rem;
    padding: 4px 10px;
    border-radius: 999px;
}

@media(max-width:1200px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:900px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

.advantages {
    padding: 140px 0;
    background: #F4F8FD;
}

/* HEADER */
.advantages-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.advantages-kicker {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--blue);
    font-weight: 600;
}

.advantages-header h2 {
    margin: 16px 0;
}

/* GRID */
.advantages-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
}

/* MAIN CARD */
.adv-main {
    grid-row: span 2;
    background: #D9E3F0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.adv-main-content {
    padding: 34px;
}

.adv-main img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* ICON */
.adv-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.adv-category {
    font-size: .75rem;
    opacity: .7;
}

.adv-main h3 {
    font-size: 1.6rem;
    margin: 10px 0;
}

.adv-main p {
    margin-bottom: 20px;
}

.adv-link {
    font-weight: 600;
    cursor: pointer;
}

/* SMALL CARDS */
.adv-card {
    background: #D9E3F0;
    padding: 32px;
    border-radius: 18px;
    transition: .35s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}


.adv-card i {
    margin-bottom: 22px;
    color: var(--blue);
}

.adv-card h4 {
    font-size: 1.15rem;
    margin-bottom: 14px;
    line-height: 1.3;
}

.adv-card p {
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: auto;
}


/* RESPONSIVO */
@media(max-width:1000px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .adv-main {
        grid-row: auto;
    }
}

.gallery {
    padding: 140px 0;
    background: #EEF5FB;
}

.gallery-header {
    margin-bottom: 50px;
}

.gallery-header h2 {
    margin-bottom: 10px;
}

/* WRAPPER */
.gallery-wrapper {
    position: relative;
}

/* TRACK */
.gallery-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
}

/* ITEM */
.gallery-item {
    min-width: 520px;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTROLS */
.gallery-controls {
    position: absolute;
    right: 0;
    bottom: -60px;
    display: flex;
    gap: 12px;
}

.gallery-controls button {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: #D9E3F0;
    cursor: pointer;
    transition: .3s;
}

.gallery-controls button:hover {
    background: var(--blue);
    color: white;
}

/* DOTS */
.gallery-dots {
    margin-top: 40px;
    display: flex;
    gap: 8px;
}

.gallery-dots span {
    width: 6px;
    height: 6px;
    background: #CBD5E1;
    border-radius: 50%;
}

.gallery-dots .active {
    width: 20px;
    border-radius: 999px;
    background: var(--blue);
}

.cta {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: black;
    color: white;
}

/* OVERLAY */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.45));
}

/* CONTENT */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.cta h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.cta p {
    opacity: .9;
    margin-bottom: 30px;
}

/* BOTÃO */
.cta-button {
    display: inline-block;
    background: #2563EB;
    color: white;
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 600;
    transition: .3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, .35);
}

.contact {
    padding: 140px 0;
    background: #F4F8FD;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.contact-kicker {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--blue);
    font-weight: 600;
}

.contact-left h2 {
    margin: 12px 0;
}

.contact-desc {
    margin-bottom: 40px;
}

/* ITEM */
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #D9E3F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item a {
    font-weight: 600;
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 20px;
}

/* RESPONSIVO */
@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    padding: 80px 0 40px;
    background: #EEF5FB;
}

/* TOP */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* LOGO */
.footer-brand img {
    height: 150px;
}

/* NAV */
.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    font-weight: 500;
    color: var(--text);
    transition: .3s;
}

.footer-nav a:hover {
    color: var(--blue);
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #D9E3F0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--blue);
    color: white;
}

/* DIVIDER */
.footer-divider {
    height: 1px;
    background: #D9E3F0;
    margin: 40px 0;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: .85rem;
}

/* LEGAL */




/* RESPONSIVO */
@media(max-width:900px) {

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.contact-sub {
    font-size: .9rem;
    color: var(--gray);
}

.contact-link {
    font-weight: 600;
    color: var(--blue);
    margin-top: 4px;
}

@media (max-width:768px) {

    .header {
        top: 10px;
    }

    .header-content {
        height: 64px;
        padding: 0 16px;
    }

    .logo img {
        width: 9rem;
        margin-top: 0;
    }

    .nav {
        display: none;
    }

}

@media (max-width:768px) {

    .hero {
        padding: 120px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-top: 24px;
    }

    .btn-primary,
    .btn-outline {
        display: block;
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 14px 20px;
    }

}

@media (max-width:768px) {

    .features {
        padding: 100px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-left {
        max-width: 100%;
    }

}


@media (max-width:768px) {

    .catalog {
        padding: 100px 0;
    }

    .catalog-card {
        padding: 22px;
    }

    .catalog-logo {
        width: 10rem;
    }

}


@media (max-width:768px) {

    .expand-options {
        grid-template-columns: 1fr;
    }

    .catalog-expand-content {
        padding: 28px;
    }

}


.gallery-item {
    min-width: 520px;
}


.gallery-item {
    min-width: 520px;
}

@media (max-width:768px) {

    .gallery-item {
        min-width: 100%;
        height: 260px;
    }

    .gallery-controls {
        bottom: -50px;
        right: 50%;
        transform: translateX(50%);
    }

}

@media (max-width:768px) {

    .cta {
        height: auto;
        padding: 100px 0;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

}

@media (max-width:768px) {

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-brand img {
        height: 90px;
    }

    .footer-bottom {
        text-align: center;
    }

}