/* ===================== Filmmaker Profissional v2 — Landing ===================== */
/* Aesthetic based on avmakers.com.br/formacao/criando-lacos-e-memorias
   (navy base, orange + cyan accents, Raleway) */

:root {
    --bg: #1A1B26;
    --bg-deep: #14151d;
    --panel: #20212e;
    --panel-2: #262738;
    --line: #2f3142;
    --text: #ffffff;
    --muted: #ffffffab;
    --muted-2: #8B8C9E;
    --orange: #FBB040;
    --cyan: #00D1FF;
    --pink: #ff30a0;
    --light-green: #e2ff90;
    --radius: 16px;
    --radius-sm: 8px;
    --maxw: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 700;
    line-height: 1.18;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}

.highlight {
    color: var(--light-green);
    font-weight: 700;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.btn:hover {
    filter: brightness(1.04);
    transform: translateY(-2px);
}

.btn--cta {
    background: var(--light-green);
    color: var(--bg);
    padding: 16px 24px;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(251, 176, 64, .25);
}

.btn--cta:hover {
    box-shadow: 0 14px 36px rgba(251, 176, 64, .35);
}

.btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--text);
    flex: none;
}

/* ----- Eyebrow / tag ----- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(0, 209, 255, .12);
    border: 1px solid rgba(0, 209, 255, .35);
    color: var(--light-green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(26, 27, 38, .35) 0%, rgba(26, 27, 38, .65) 55%, rgba(26, 27, 38, .9) 95%),
        linear-gradient(180deg, rgba(26, 27, 38, 0) 60%, var(--bg) 100%),
        url("../img/hero-bg.webp");
    background-position: 40% 5%;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

/* Side fillers that flank the center hero image (painted underneath it) */
.hero__bg-left,
.hero__bg-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.hero__bg-left {
    left: 0;
    background-image: url("../img/hero-bg-left.webp");
    background-position: left center;
}

.hero__bg-right {
    right: 0;
    background-image: url("../img/hero-bg-right.webp");
    background-position: right center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 50% at 85% 15%, rgba(0, 209, 255, .14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

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

.hero__logo {
    display: inline-block;
    padding: 75px 0 0;
}

.hero__logo img {
    height: 68px;
    width: auto;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: center;
    padding: 20px 0 100px;
}

.hero__info h1 {
    font-size: 42px;
    line-height: 1.14;
    font-weight: 700;
    max-width: 540px;
}

.hero__info p {
    margin: 26px 0 0;
    max-width: 470px;
    color: var(--muted);
    font-size: 16px;
}

/* ----- Form card ----- */
.form-card {
    /* background: var(--panel); */
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 30px 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.form-card__title {
    margin: 0 0 18px;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.input-item {
    margin-bottom: 14px;
}

.form-card input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg-deep);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
}

.form-card input::placeholder {
    color: var(--muted-2);
}

.form-card input:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(0, 209, 255, .15);
}

/* intl-tel-input country dropdown — match page background */
.form-card .iti__country-container,
.form-card .iti__dropdown-content,
.form-card .iti__country-list {
    background-color: var(--bg);
}

.form-card .iti__country.iti__highlight,
.form-card .iti__country:hover {
    background-color: var(--panel-2);
}

.form-card .iti {
    width: 100%;
}

.form-card .btn--cta {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

/* Mautic feedback states */
.form-card .mauticform-error,
.form-card .mauticform-message {
    margin-bottom: 12px;
    text-align: center;
    font-size: 13px;
}

.form-card .mauticform-message {
    color: var(--light-green);
}

.form-card .mauticform-error {
    color: #ff6b6b;
}

.form-card .mauticform-errormsg {
    display: block;
    margin-top: 5px;
    color: #ff6b6b;
    font-size: 12px;
}

/* ===================== SECTION HEAD ===================== */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.section-head h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.section-head p {
    margin: 18px auto 0;
    max-width: 600px;
    color: var(--muted-2);
}

/* ===================== SKILLS GRID ===================== */
.skills {
    padding: 96px 0 90px;
    background:
        radial-gradient(120% 60% at 50% 0%, #20222f 0%, var(--bg-deep) 70%);
}

.skills__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 56px auto 0;
}

.card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 342px;
    background: var(--panel);
    border: 1px solid var(--line);
    isolation: isolate;
    transition: transform .2s ease, border-color .2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 209, 255, .4);
}

.card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .45;
    z-index: 1;
}

.card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(20, 21, 29, 0) 8%, rgba(20, 21, 29, .96) 88%);
}

.card__content {
    position: relative;
    z-index: 3;
    height: 100%;
    min-height: 342px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card__content h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--orange);
}

.card__content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #e9eaf0;
}

/* ===================== BENEFITS ===================== */
.benefits {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}

.benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits__info h2 {
    font-size: 34px;
    font-weight: 700;
    max-width: 360px;
    line-height: 1.2;
}

.benefits__info>p {
    margin: 16px 0 28px;
    font-size: 19px;
    max-width: 340px;
    color: var(--muted);
}

.benefits__cta {
    text-align: left;
}

.benefits__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefits__list li {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.benefits__icon {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(0, 209, 255, .12);
    color: var(--light-green);
}

/* ===================== ABOUT / ORCHESTRATED ===================== */
.about {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: var(--bg);
}

.about__watermark {
    position: absolute;
    right: -190px;
    top: 8%;
    width: 600px;
    height: 300px;
    opacity: .8;
    pointer-events: none;
    z-index: 0;
    rotate: 270deg;
}

.about .container {
    position: relative;
    z-index: 2;
}

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

.about__info h2 {
    font-size: 34px;
    font-weight: 700;
    max-width: 360px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about__info p {
    margin: 0 0 16px;
    color: var(--muted-2);
    max-width: 500px;
}

.about__collage {
    position: relative;
}

.about__mockup {
    width: 78%;
    margin: 0 auto 18px;
}

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

.about__tiles img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* ===================== TEACHERS ===================== */
.teachers {
    padding: 30px 0 100px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

.teachers__title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    padding-bottom: 36px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--line);
}

.teacher {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 56px;
}

.teacher--reverse {
    grid-template-columns: 1fr 400px;
}

.teacher--reverse .teacher__photo {
    order: 2;
}

.teacher__photo img {
    width: 100%;
    height: 384px;
    object-fit: cover;
    border-radius: var(--radius);
    object-position: 50% 10%;

    &.bruno {
        object-position: 50% 0%;
    }
}

.teacher__bio {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 40px;
}

.teacher__bio h3 {
    font-size: 23px;
    margin-bottom: 18px;
    color: var(--orange);
}

.teacher__bio p {
    margin: 0 0 14px;
    color: var(--muted-2);
    font-size: 15px;
}

.teacher__bio p:last-child {
    margin-bottom: 0;
}

/* ===================== FOOTER ===================== */
.footer {
    padding: 30px 0 40px;
    border-top: 1px solid var(--line);
    background: var(--bg-deep);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__inner p {
    margin: 0;
    color: var(--muted-2);
    font-size: 12px;
}

.footer__inner img {
    height: 20px;
    width: auto;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 0 72px;
    }

    .hero__info h1 {
        font-size: 34px;
        max-width: none;
    }

    .hero__info p {
        max-width: none;
    }

    .hero__bg {
        background-image:
            linear-gradient(180deg, rgba(26, 27, 38, .5) 0%, rgba(26, 27, 38, .8) 65%, var(--bg) 100%),
            url("../img/hero-bg.webp");
        background-position: 70% 5%;
    }

    .form-card {
        max-width: 440px;
        justify-self: center;
        width: 100%;
    }

    .skills__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits__info h2,
    .benefits__info>p {
        max-width: none;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__info h2 {
        max-width: none;
    }

    .about__watermark {
        right: -140px;
        width: 480px;
        height: 240px;
    }

    .teacher,
    .teacher--reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .teacher--reverse .teacher__photo {
        order: 0;
    }

    .teacher__photo img {
        height: 320px;
    }
}

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

    .hero__info h1 {
        font-size: 28px;
    }

    .section-head h2,
    .benefits__info h2,
    .about__info h2,
    .teachers__title {
        font-size: 28px;
    }

    .skills__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .about__tiles {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .teacher__bio {
        padding: 26px 24px;
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Bootstrap display utilities */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

@media (min-width: 576px) {
    .d-sm-block {
        display: block !important;
    }

    .d-sm-none {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }

    .d-md-none {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }

    .d-lg-none {
        display: none !important;
    }
}

@media (min-width: 1400px) {
    .hero__bg {
        background-position: -10% 5%;
    }
}

@media (min-width: 1680px) {
    .hero__bg {
        background-position: 20% 5%;
    }
}

