/* ============================================================
   M.OCCHIONI.IAT
   STYLE.CSS
   Desktop + Notebook + Tablet + Smartphone
   ============================================================ */


/* ============================================================
   01. VARIÁVEIS
   ============================================================ */

:root {

    /* CORES */
    --color-black: #050505;
    --color-black-soft: #0a0a0a;
    --color-dark: #101010;
    --color-dark-2: #151515;
    --color-dark-3: #1d1d1d;

    --color-white: #ffffff;
    --color-white-soft: #f5f5f3;
    --color-gray-light: #ddddda;
    --color-gray: #999999;
    --color-gray-dark: #555555;

    --color-gold: #b58a57;
    --color-gold-light: #c8a16f;
    --color-gold-dark: #8d6740;

    --color-success: #25d366;
    --color-danger: #b52b2b;

    /* TIPOGRAFIA */
    --font-heading: "Barlow Condensed", Arial, Helvetica, sans-serif;
    --font-body: "Roboto", Arial, Helvetica, sans-serif;

    /* LAYOUT */
    --container-xl: 1440px;
    --container-lg: 1280px;
    --container-md: 1100px;

    --header-height: 88px;

    /* TRANSIÇÕES */
    --transition-fast: 0.2s ease;
    --transition-default: 0.35s ease;

    /* SOMBRAS */
    --shadow-small: 0 4px 16px rgba(0, 0, 0, 0.18);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.28);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.45);

}


/* ============================================================
   02. RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

section {
    position: relative;
}

::selection {
    background: var(--color-gold);
    color: var(--color-black);
}


/* ============================================================
   03. ACESSIBILIDADE
   ============================================================ */

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 99999;

    padding: 12px 18px;

    background: var(--color-gold);
    color: var(--color-black);

    font-weight: 700;

    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 20px;
}

:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 4px;
}


/* ============================================================
   04. ESTRUTURA GERAL
   ============================================================ */

.site-wrapper {
    width: 100%;
    min-height: 100vh;
    background: var(--color-black);
}

.container {
    width: min(calc(100% - 64px), var(--container-xl));
    margin-inline: auto;
}


/* ============================================================
   05. BOTÕES
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 48px;

    padding: 12px 24px;

    border: 1px solid transparent;

    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;

    transition:
        background-color var(--transition-default),
        color var(--transition-default),
        border-color var(--transition-default),
        transform var(--transition-default),
        box-shadow var(--transition-default);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    box-shadow: 0 8px 25px rgba(181, 138, 87, 0.28);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--color-white);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
}

.btn-outline {
    border-color: var(--color-gold);
    background: transparent;
    color: var(--color-gold-dark);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
}


/* ============================================================
   06. HEADER
   ============================================================ */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;

    z-index: 1000;

    width: 100%;
    height: var(--header-height);

    background: rgba(4, 4, 4, 0.94);
    border-bottom: 1px solid rgba(181, 138, 87, 0.16);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        height var(--transition-default),
        box-shadow var(--transition-default),
        background-color var(--transition-default);
}

.site-header.scrolled {
    height: 74px;

    background: rgba(3, 3, 3, 0.98);

    box-shadow:
        0 5px 30px rgba(0, 0, 0, 0.35);
}

.header-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 36px;
}


/* ============================================================
   07. LOGO
   ============================================================ */

.brand {
    flex: 0 0 auto;
}

.brand-link {
    display: block;
}

.brand-logo {
    width: auto;
    height: 58px;
    object-fit: contain;

    transition: height var(--transition-default);
}

.site-header.scrolled .brand-logo {
    height: 50px;
}


/* ============================================================
   08. MENU DESKTOP
   ============================================================ */

.desktop-navigation {
    margin-left: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(24px, 2.4vw, 46px);
}

.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 48px;

    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #eeeeee;

    transition: color var(--transition-fast);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 4px;

    width: 0;
    height: 2px;

    background: var(--color-gold);

    transition: width var(--transition-default);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* ============================================================
   09. HEADER ACTIONS
   ============================================================ */

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-student-area {
    min-height: 44px;
    padding: 10px 20px;

    background: var(--color-gold);
    color: var(--color-black);

    white-space: nowrap;
}

.btn-student-area:hover {
    background: var(--color-gold-light);
}


/* ============================================================
   10. MENU MOBILE
   ============================================================ */

.mobile-menu-button {
    display: none;

    width: 46px;
    height: 46px;

    background: transparent;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 6px;
}

.menu-line {
    width: 27px;
    height: 2px;

    background: var(--color-gold-light);

    transition:
        transform var(--transition-default),
        opacity var(--transition-default);
}

.mobile-menu-button.active .menu-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .menu-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-navigation {
    position: fixed;

    top: var(--header-height);
    right: -100%;

    width: min(390px, 90vw);
    height: calc(100vh - var(--header-height));

    z-index: 1001;

    padding: 24px;

    background: #080808;

    border-left: 1px solid rgba(181, 138, 87, 0.22);

    overflow-y: auto;

    transition: right var(--transition-default);
}

.mobile-navigation.active {
    right: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 58px;

    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-nav-link:hover {
    color: var(--color-gold-light);
}

.mobile-student-link {
    margin-top: 14px;
    padding-inline: 16px;

    justify-content: center;

    background: var(--color-gold);
    color: var(--color-black);
}


/* ============================================================
   11. OVERLAY MOBILE
   ============================================================ */

.mobile-overlay {
    position: fixed;
    inset: 0;

    z-index: 999;

    background: rgba(0, 0, 0, 0.72);

    opacity: 0;
    pointer-events: none;

    transition: opacity var(--transition-default);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}


/* ============================================================
   12. HERO
   ============================================================ */

.hero-section {
    min-height: 720px;

    display: flex;
    align-items: center;

    padding-top: var(--header-height);

    background: #080808;

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        url("../images/banner/hero-instrutor.jpg")
        center right / cover no-repeat;

    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.96) 0%,
            rgba(5, 5, 5, 0.88) 28%,
            rgba(5, 5, 5, 0.45) 58%,
            rgba(5, 5, 5, 0.08) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5, 5, 5, 0.45),
            transparent 45%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    min-height: inherit;
}

.hero-content {
    width: min(620px, 52%);
    padding-block: 80px;
}

.hero-pretitle {
    margin-bottom: 12px;

    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--color-gold-light);
}

.hero-title {
    display: flex;
    flex-direction: column;

    font-family: var(--font-heading);
    font-size: clamp(4rem, 6vw, 6.8rem);
    font-weight: 800;
    line-height: 0.84;
    letter-spacing: -0.02em;
    text-transform: uppercase;

    color: var(--color-white);
}

.hero-title span {
    display: block;
}

.hero-divider {
    width: 150px;
    height: 3px;

    margin: 26px 0 18px;

    background:
        linear-gradient(
            90deg,
            var(--color-gold),
            var(--color-gold-light)
        );
}

.hero-subtitle {
    max-width: 530px;

    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.6vw, 2.8rem);
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;

    color: var(--color-gold-light);
}

.hero-description {
    max-width: 560px;

    margin-top: 18px;

    font-size: 1.05rem;

    color: #d6d6d6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 32px;
}


/* ============================================================
   13. FEATURES
   ============================================================ */

.features-section {
    position: relative;
    z-index: 5;

    background: #090909;

    border-top: 1px solid rgba(181, 138, 87, 0.2);
    border-bottom: 1px solid rgba(181, 138, 87, 0.18);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    position: relative;

    display: flex;
    align-items: center;
    gap: 20px;

    min-height: 150px;

    padding: 28px 30px;
}

.feature-card:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 25%;
    right: 0;

    width: 1px;
    height: 50%;

    background: rgba(255, 255, 255, 0.12);
}

.feature-icon {
    flex: 0 0 auto;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border: 1px solid var(--color-gold);
    border-radius: 50%;

    color: var(--color-gold-light);

    font-size: 1.65rem;
}

.feature-content h3 {
    margin-bottom: 5px;

    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.feature-content p {
    font-size: 0.88rem;
    line-height: 1.5;

    color: #bcbcbc;
}


/* ============================================================
   14. CABEÇALHO DAS SEÇÕES
   ============================================================ */

.section-heading {
    max-width: 760px;

    margin-inline: auto;
    margin-bottom: 48px;

    text-align: center;
}

.section-heading-left {
    margin-inline: 0;
    text-align: left;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--color-gold-dark);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 3.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.section-description {
    max-width: 650px;
    margin: 20px auto 0;

    color: var(--color-gray-dark);
}


/* ============================================================
   15. SOBRE
   ============================================================ */

.about-section {
    padding: 88px 0;

    background: var(--color-white-soft);
    color: #161616;
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: clamp(48px, 6vw, 96px);
}

.about-content {
    max-width: 570px;
}

.about-text {
    margin-bottom: 16px;

    color: #3d3d3d;
}

.about-content .btn {
    margin-top: 12px;
}

.about-image-wrapper {
    position: relative;

    overflow: hidden;

    min-height: 430px;

    background: #161616;

    box-shadow: var(--shadow-medium);
}

.about-image {
    width: 100%;
    height: 100%;

    min-height: 430px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.035);
}


/* ============================================================
   16. CURSOS
   ============================================================ */

.courses-section {
    padding: 92px 0;

    background:
        radial-gradient(
            circle at center top,
            #171717,
            #080808 58%
        );

    color: var(--color-white);
}

.courses-section .section-eyebrow {
    color: var(--color-gold-light);
}

.courses-section .section-description {
    color: #aaaaaa;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}

.course-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    background: #101010;

    border: 1px solid rgba(181, 138, 87, 0.22);

    overflow: hidden;

    transition:
        transform var(--transition-default),
        border-color var(--transition-default),
        box-shadow var(--transition-default);
}

.course-card:hover {
    transform: translateY(-8px);

    border-color: rgba(181, 138, 87, 0.7);

    box-shadow: var(--shadow-heavy);
}

.course-image-wrapper {
    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.course-card:hover .course-image {
    transform: scale(1.07);
}

.course-image-wrapper::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.75),
            transparent 60%
        );
}

.course-level {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 3;

    padding: 6px 10px;

    background: rgba(0, 0, 0, 0.78);

    border: 1px solid rgba(181, 138, 87, 0.5);

    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--color-gold-light);
}

.course-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;

    padding: 30px;

    text-align: center;
}

.course-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.course-subtitle {
    margin-top: 5px;

    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: var(--color-gold-light);
}

.course-description {
    margin: 17px 0 24px;

    font-size: 0.94rem;

    color: #b8b8b8;
}

.course-button {
    margin-top: auto;

    min-height: 42px;

    border: 1px solid var(--color-gold);

    background: transparent;
    color: var(--color-gold-light);
}

.course-button:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.courses-footer {
    margin-top: 40px;

    text-align: center;
}


/* ============================================================
   17. ESTATÍSTICAS
   ============================================================ */

.stats-section {
    background: #070707;

    border-top: 1px solid rgba(181, 138, 87, 0.25);
    border-bottom: 1px solid rgba(181, 138, 87, 0.25);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    min-height: 150px;

    padding: 28px;
}

.stat-card:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 25%;
    right: 0;

    width: 1px;
    height: 50%;

    background: rgba(255, 255, 255, 0.12);
}

.stat-card > i {
    font-size: 2.25rem;
    color: var(--color-gold-light);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    margin-top: 6px;

    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    color: var(--color-gold-light);
}


/* ============================================================
   18. GALERIA
   ============================================================ */

.gallery-section {
    padding: 90px 0;

    background: #f4f3f0;
    color: #151515;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.gallery-item {
    position: relative;

    aspect-ratio: 4 / 3;

    padding: 0;

    overflow: hidden;

    background: #111111;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}

.gallery-item::after {
    content: "\f00e";

    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    background: rgba(0, 0, 0, 0.54);

    color: var(--color-gold-light);

    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;

    opacity: 0;

    transition: opacity var(--transition-default);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.75);
}

.gallery-item:hover::after {
    opacity: 1;
}


/* ============================================================
   19. MODAL GALERIA
   ============================================================ */

.gallery-modal {
    position: fixed;
    inset: 0;

    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 80px;

    background: rgba(0, 0, 0, 0.94);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity var(--transition-default),
        visibility var(--transition-default);
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-modal-content {
    max-width: 1200px;
    max-height: 88vh;
}

.gallery-modal-content img {
    width: auto;
    max-width: 100%;
    max-height: 88vh;

    margin: auto;

    object-fit: contain;
}

.gallery-modal-close {
    position: absolute;

    top: 24px;
    right: 28px;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(0, 0, 0, 0.4);
    color: white;

    font-size: 1.6rem;
}

.gallery-navigation {
    position: absolute;

    top: 50%;

    width: 52px;
    height: 52px;

    transform: translateY(-50%);

    border: 1px solid var(--color-gold);

    background: rgba(0, 0, 0, 0.55);
    color: var(--color-gold-light);

    font-size: 1.4rem;
}

.gallery-prev {
    left: 24px;
}

.gallery-next {
    right: 24px;
}


/* ============================================================
   20. DEPOIMENTOS
   ============================================================ */

.testimonials-section {
    padding: 90px 0;

    background: var(--color-white-soft);
    color: #161616;
}

.testimonials-wrapper {
    position: relative;

    display: flex;
    align-items: center;

    gap: 22px;
}

.testimonials-slider {
    display: grid;
    flex: 1;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.testimonial-card {
    min-width: 0;

    padding: 32px 26px;

    border: 1px solid #dedbd5;

    background: #ffffff;

    text-align: center;
}

.testimonial-quote {
    margin-bottom: 12px;

    color: var(--color-gold);

    font-size: 1.4rem;
}

.testimonial-text {
    min-height: 72px;

    color: #555555;
}

.testimonial-stars {
    margin: 16px 0 8px;

    color: var(--color-gold);

    letter-spacing: 4px;
}

.testimonial-name {
    display: block;

    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.testimonial-role {
    font-size: 0.84rem;
    color: #777777;
}

.testimonial-control {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    border: 1px solid var(--color-gold);

    border-radius: 50%;

    background: transparent;
    color: var(--color-gold-dark);

    transition:
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.testimonial-control:hover {
    background: var(--color-gold);
    color: black;
}

.testimonial-dots {
    display: none;
}


/* ============================================================
   21. CTA
   ============================================================ */

.cta-section {
    padding: 28px 0;

    background:
        linear-gradient(
            90deg,
            var(--color-gold-dark),
            var(--color-gold-light)
        );

    color: #0a0a0a;
}

.cta-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 28px;
}

.cta-icon {
    width: 64px;
    height: 64px;

    display: grid;
    place-items: center;

    border: 2px solid #111111;
    border-radius: 50%;

    font-size: 2rem;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.cta-content p {
    margin-top: 6px;
}

.btn-whatsapp {
    background: #080808;
    color: var(--color-gold-light);
}

.btn-whatsapp:hover {
    background: #111111;
    color: #ffffff;
}


/* ============================================================
   22. CONTATO
   ============================================================ */

.contact-section {
    padding: 90px 0;

    background: #f3f2ef;
    color: #181818;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;

    gap: 70px;

    max-width: 1200px;
    margin-inline: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.contact-info-item {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #e2ded7;
}

.contact-info-icon {
    flex: 0 0 auto;

    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border: 1px solid var(--color-gold);

    color: var(--color-gold-dark);

    font-size: 1.25rem;
}

.contact-info-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
}

.contact-info-item a,
.contact-info-item p {
    color: #555555;
}

.contact-info-item a:hover {
    color: var(--color-gold-dark);
}

.contact-form {
    padding: 34px;

    background: #ffffff;

    border: 1px solid #e2ded7;

    box-shadow: var(--shadow-small);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-bottom: 20px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #d5d0c8;

    background: #fafafa;

    color: #151515;

    padding: 14px 15px;

    outline: none;

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.form-group input,
.form-group select {
    min-height: 50px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);

    box-shadow: 0 0 0 3px rgba(181, 138, 87, 0.12);
}

.form-feedback {
    min-height: 24px;
}

.form-submit-button {
    margin-top: 4px;
}


/* ============================================================
   23. FOOTER
   ============================================================ */

.site-footer {
    background: #070707;
    color: #d0d0d0;
}

.footer-main {
    padding: 64px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;

    gap: 55px;
}

.footer-logo {
    width: auto;
    height: 68px;
}

.footer-description {
    max-width: 320px;

    margin-top: 18px;

    font-size: 0.92rem;

    color: #aaaaaa;
}

.footer-social {
    display: flex;
    gap: 12px;

    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(181, 138, 87, 0.45);

    color: var(--color-gold-light);

    transition:
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: black;
}

.footer-title {
    margin-bottom: 18px;

    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    color: var(--color-gold-light);
}

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #b3b3b3;
}

.footer-links a:hover {
    color: var(--color-gold-light);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    font-size: 0.9rem;
}

.footer-contact-list i {
    margin-top: 4px;

    color: var(--color-gold-light);
}

.footer-mobile-toggle {
    display: none;
}

.footer-bottom {
    padding: 18px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: #888888;
}


/* ============================================================
   24. WHATSAPP FLUTUANTE
   ============================================================ */

.floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 24px;

    z-index: 1200;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 56px;
    height: 56px;

    gap: 9px;

    padding: 0 18px;

    border-radius: 999px;

    background: var(--color-success);
    color: #ffffff;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);

    font-weight: 700;

    transition:
        transform var(--transition-default),
        box-shadow var(--transition-default);
}

.floating-whatsapp i {
    font-size: 1.55rem;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}


/* ============================================================
   25. VOLTAR AO TOPO
   ============================================================ */

.back-to-top {
    position: fixed;

    right: 24px;
    bottom: 94px;

    z-index: 1100;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border: 1px solid var(--color-gold);

    background: #090909;
    color: var(--color-gold-light);

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    transition:
        opacity var(--transition-default),
        visibility var(--transition-default),
        transform var(--transition-default);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* ============================================================
   26. DESKTOP GRANDE / ULTRAWIDE
   1600px+
   ============================================================ */

@media (min-width: 1600px) {

    :root {
        --container-xl: 1500px;
    }

    .hero-section {
        min-height: 780px;
    }

    .hero-content {
        width: 580px;
    }

    .feature-card {
        padding-inline: 34px;
    }

}


/* ============================================================
   27. DESKTOP / NOTEBOOK
   1281px - 1599px
   ============================================================ */

@media (max-width: 1599px) {

    :root {
        --container-xl: 1320px;
    }

    .container {
        width: min(calc(100% - 54px), var(--container-xl));
    }

    .hero-section {
        min-height: 690px;
    }

    .feature-card {
        padding-inline: 22px;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
    }

}


/* ============================================================
   28. NOTEBOOK MÉDIO
   1025px - 1280px
   ============================================================ */

@media (max-width: 1280px) {

    :root {
        --header-height: 78px;
    }

    .container {
        width: min(calc(100% - 42px), 1180px);
    }

    .brand-logo {
        height: 50px;
    }

    .nav-list {
        gap: 22px;
    }

    .nav-link {
        font-size: 0.92rem;
    }

    .btn-student-area {
        padding-inline: 15px;
        font-size: 0.9rem;
    }

    .hero-section {
        min-height: 620px;
    }

    .hero-content {
        width: 54%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:nth-child(2)::after {
        display: none;
    }

    .feature-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .about-container {
        gap: 50px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card:nth-child(2)::after {
        display: none;
    }

    .stat-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-grid {
        gap: 38px;
    }

}


/* ============================================================
   29. TABLET HORIZONTAL / NOTEBOOK PEQUENO
   até 1100px
   ============================================================ */

@media (max-width: 1100px) {

    .desktop-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero-content {
        width: 60%;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
    }

    .courses-grid {
        gap: 18px;
    }

    .course-content {
        padding: 24px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        gap: 42px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }

}


/* ============================================================
   30. TABLET
   769px - 991px
   ============================================================ */

@media (max-width: 991px) {

    :root {
        --header-height: 74px;
    }

    .container {
        width: min(calc(100% - 36px), 900px);
    }

    .brand-logo {
        height: 46px;
    }

    .site-header.scrolled {
        height: 68px;
    }

    .site-header.scrolled .brand-logo {
        height: 43px;
    }

    .hero-section {
        min-height: 600px;

        align-items: flex-end;
    }

    .hero-background {
        background-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 5, 5, 0.94) 0%,
                rgba(5, 5, 5, 0.78) 55%,
                rgba(5, 5, 5, 0.22) 100%
            ),
            linear-gradient(
                0deg,
                rgba(5, 5, 5, 0.7),
                transparent 60%
            );
    }

    .hero-content {
        width: 65%;

        padding: 85px 0 65px;
    }

    .hero-title {
        font-size: clamp(3.7rem, 8.3vw, 5.5rem);
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        min-height: 140px;
    }

    .about-section,
    .courses-section,
    .gallery-section,
    .testimonials-section,
    .contact-section {
        padding-block: 72px;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-image-wrapper,
    .about-image {
        min-height: 360px;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-card:last-child {
        grid-column: 1 / -1;

        max-width: 50%;
        width: 100%;

        justify-self: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);

        overflow: hidden;
    }

    .testimonial-card:nth-child(3) {
        display: none;
    }

    .cta-container {
        grid-template-columns: auto 1fr;
    }

    .cta-action {
        grid-column: 1 / -1;

        margin-left: 92px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-info-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-column:last-child {
        grid-column: auto;
    }

}


/* ============================================================
   31. TABLET VERTICAL
   até 768px
   ============================================================ */

@media (max-width: 768px) {

    .container {
        width: min(calc(100% - 32px), 720px);
    }

    .btn-student-area span {
        display: none;
    }

    .btn-student-area {
        width: 44px;
        height: 44px;

        min-height: 44px;

        padding: 0;
    }

    .hero-section {
        min-height: 580px;
    }

    .hero-background {
        background-position: 68% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 5, 5, 0.92) 0%,
                rgba(5, 5, 5, 0.72) 58%,
                rgba(5, 5, 5, 0.22) 100%
            ),
            linear-gradient(
                0deg,
                rgba(5, 5, 5, 0.75),
                transparent 52%
            );
    }

    .hero-content {
        width: 70%;
    }

    .hero-title {
        font-size: clamp(3.5rem, 10vw, 5rem);
    }

    .feature-card {
        padding: 24px 20px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card:last-child {
        grid-column: auto;

        max-width: none;
    }

    .course-card {
        display: grid;
        grid-template-columns: 42% 58%;
    }

    .course-image-wrapper {
        height: 100%;
        aspect-ratio: auto;
    }

    .course-content {
        align-items: flex-start;

        text-align: left;
    }

    .course-button {
        align-self: flex-start;
    }

    .gallery-modal {
        padding-inline: 60px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3) {
        display: none;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   32. SMARTPHONE GRANDE
   até 640px
   ============================================================ */

@media (max-width: 640px) {

    :root {
        --header-height: 68px;
    }

    .container {
        width: calc(100% - 28px);
    }

    .site-header {
        height: var(--header-height);
    }

    .brand-logo {
        height: 40px;
    }

    .site-header.scrolled {
        height: 64px;
    }

    .site-header.scrolled .brand-logo {
        height: 38px;
    }

    .header-container {
        gap: 12px;
    }

    .header-actions {
        gap: 6px;
    }

    .btn-student-area {
        width: 40px;
        height: 40px;

        min-height: 40px;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
    }

    .mobile-navigation {
        top: var(--header-height);

        width: 100%;
        height: calc(100vh - var(--header-height));

        border-left: 0;
    }

    .hero-section {
        min-height: 590px;

        padding-top: var(--header-height);
    }

    .hero-background {
        background-position: 69% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 5, 5, 0.92) 0%,
                rgba(5, 5, 5, 0.7) 65%,
                rgba(5, 5, 5, 0.28) 100%
            ),
            linear-gradient(
                0deg,
                rgba(5, 5, 5, 0.92) 0%,
                rgba(5, 5, 5, 0.2) 70%
            );
    }

    .hero-container {
        align-items: flex-end;
    }

    .hero-content {
        width: 100%;

        padding: 100px 0 42px;
    }

    .hero-pretitle {
        font-size: 0.78rem;
    }

    .hero-title {
        max-width: 360px;

        font-size: clamp(3.2rem, 15vw, 4.7rem);
        line-height: 0.86;
    }

    .hero-divider {
        width: 110px;

        margin-block: 20px 14px;
    }

    .hero-subtitle {
        max-width: 360px;

        font-size: 1.65rem;
    }

    .hero-description {
        max-width: 420px;

        font-size: 0.92rem;
    }

    .hero-buttons {
        width: 100%;

        margin-top: 24px;
    }

    .hero-buttons .btn {
        flex: 1 1 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;

        padding: 22px 8px;
    }

    .feature-card:not(:last-child)::after {
        display: none;
    }

    .feature-card:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .feature-icon {
        width: 50px;
        height: 50px;

        font-size: 1.4rem;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-title {
        font-size: clamp(2.3rem, 10vw, 3.4rem);
    }

    .about-section,
    .courses-section,
    .gallery-section,
    .testimonials-section,
    .contact-section {
        padding-block: 58px;
    }

    .about-image-wrapper,
    .about-image {
        min-height: 270px;
    }

    .course-card {
        display: block;
    }

    .course-image-wrapper {
        aspect-ratio: 16 / 8;
    }

    .course-content {
        align-items: center;

        padding: 24px 18px;

        text-align: center;
    }

    .course-button {
        align-self: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        flex-direction: column;

        gap: 12px;

        min-height: 150px;

        padding: 20px 10px;

        text-align: center;
    }

    .stat-card::after {
        display: none;
    }

    .stat-card:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-content {
        align-items: center;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .stat-label {
        max-width: 120px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        aspect-ratio: 16 / 10;
    }

    .gallery-modal {
        padding: 60px 12px;
    }

    .gallery-navigation {
        width: 42px;
        height: 42px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-modal-close {
        top: 12px;
        right: 12px;
    }

    .testimonials-wrapper {
        gap: 8px;
    }

    .testimonial-card {
        padding: 26px 20px;
    }

    .testimonial-control {
        flex-basis: 38px;

        width: 38px;
        height: 38px;
    }

    .cta-section {
        padding: 28px 0;
    }

    .cta-container {
        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 16px;

        text-align: center;
    }

    .cta-icon {
        width: 54px;
        height: 54px;

        font-size: 1.6rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-action {
        width: 100%;

        margin: 0;
    }

    .btn-whatsapp {
        width: 100%;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .footer-main {
        padding: 40px 0;
    }

    .footer-grid {
        display: block;
    }

    .footer-column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand {
        padding-bottom: 26px;
    }

    .footer-column:not(.footer-brand) {
        padding-block: 0;
    }

    .footer-title {
        display: none;
    }

    .footer-mobile-toggle {
        width: 100%;

        min-height: 56px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        background: transparent;
        color: #dddddd;

        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .footer-mobile-toggle i {
        color: var(--color-gold-light);

        transition: transform var(--transition-default);
    }

    .footer-mobile-toggle.active i {
        transform: rotate(180deg);
    }

    .footer-links,
    .footer-contact-list {
        max-height: 0;

        overflow: hidden;

        opacity: 0;

        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            padding 0.3s ease;
    }

    .footer-links.active,
    .footer-contact-list.active {
        max-height: 400px;

        padding-bottom: 22px;

        opacity: 1;
    }

    .footer-bottom-container {
        flex-direction: column;

        gap: 8px;

        text-align: center;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;

        width: 54px;
        min-width: 54px;
        height: 54px;

        padding: 0;

        border-radius: 50%;
    }

    .floating-whatsapp-text {
        display: none;
    }

    .back-to-top {
        right: 18px;
        bottom: 80px;

        width: 42px;
        height: 42px;
    }

}


/* ============================================================
   33. SMARTPHONE MÉDIO
   até 480px
   ============================================================ */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 24px);
    }

    .hero-section {
        min-height: 570px;
    }

    .hero-background {
        background-position: 72% center;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 4.1rem);
    }

    .hero-subtitle {
        font-size: 1.48rem;
    }

    .hero-description {
        font-size: 0.87rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .feature-card {
        gap: 14px;
    }

    .feature-content h3 {
        font-size: 1.08rem;
    }

    .feature-content p {
        font-size: 0.82rem;
    }

    .about-text {
        font-size: 0.93rem;
    }

    .course-title {
        font-size: 1.45rem;
    }

    .course-description {
        font-size: 0.88rem;
    }

    .stats-grid {
        gap: 0;
    }

    .stat-card {
        min-height: 140px;
    }

    .stat-card > i {
        font-size: 1.85rem;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    .testimonial-control {
        position: absolute;

        z-index: 4;

        top: 50%;

        transform: translateY(-50%);

        background: rgba(255, 255, 255, 0.95);
    }

    .testimonial-prev {
        left: -5px;
    }

    .testimonial-next {
        right: -5px;
    }

    .testimonials-slider {
        padding-inline: 20px;
    }

    .testimonial-card {
        min-height: 250px;
    }

    .contact-info-item {
        padding: 18px;
    }

    .footer-logo {
        height: 58px;
    }

}


/* ============================================================
   34. SMARTPHONE PEQUENO
   320px - 390px
   ============================================================ */

@media (max-width: 390px) {

    :root {
        --header-height: 64px;
    }

    .container {
        width: calc(100% - 20px);
    }

    .brand-logo {
        height: 36px;
    }

    .btn-student-area {
        display: none;
    }

    .mobile-menu-button {
        margin-left: auto;
    }

    .hero-section {
        min-height: 550px;
    }

    .hero-content {
        padding-bottom: 34px;
    }

    .hero-pretitle {
        font-size: 0.72rem;
    }

    .hero-title {
        font-size: clamp(2.8rem, 16vw, 3.8rem);
    }

    .hero-subtitle {
        max-width: 290px;

        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .btn {
        min-height: 46px;

        padding: 11px 16px;

        font-size: 0.88rem;
    }

    .feature-card {
        padding-block: 19px;
    }

    .feature-icon {
        width: 46px;
        height: 46px;

        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.35rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .about-section,
    .courses-section,
    .gallery-section,
    .testimonials-section,
    .contact-section {
        padding-block: 48px;
    }

    .about-image-wrapper,
    .about-image {
        min-height: 230px;
    }

    .course-content {
        padding-inline: 15px;
    }

    .course-description {
        margin-block: 14px 18px;
    }

    .stat-card {
        min-height: 132px;

        padding-inline: 6px;
    }

    .stat-number {
        font-size: 1.55rem;
    }

    .testimonial-card {
        padding-inline: 16px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 0.88rem;
    }

    .contact-form {
        padding: 20px 14px;
    }

}


/* ============================================================
   35. DISPOSITIVOS MUITO PEQUENOS
   320px - 350px
   ============================================================ */

@media (max-width: 350px) {

    .container {
        width: calc(100% - 16px);
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .feature-content h3 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.78rem;
    }

    .course-title {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.67rem;
    }

}


/* ============================================================
   36. ALTURA REDUZIDA
   Ex.: smartphones deitados
   ============================================================ */

@media (max-height: 600px) and (orientation: landscape) {

    .hero-section {
        min-height: 520px;
    }

    .hero-content {
        padding-block: 85px 35px;
    }

    .mobile-navigation {
        overflow-y: auto;
    }

}


/* ============================================================
   37. TABLET / CELULAR LANDSCAPE
   ============================================================ */

@media (max-width: 900px) and (orientation: landscape) {

    .hero-section {
        min-height: 530px;
    }

    .hero-background {
        background-position: 72% center;
    }

    .hero-content {
        width: 60%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-card {
        flex-direction: column;

        justify-content: center;

        min-height: 155px;

        text-align: center;
    }

    .feature-card:nth-child(-n + 3) {
        border-bottom: 0;
    }

    .feature-card:not(:last-child)::after {
        display: block;
    }

}


/* ============================================================
   38. REDUÇÃO DE MOVIMENTO
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}


/* ============================================================
   39. IMPRESSÃO
   ============================================================ */

@media print {

    .site-header,
    .mobile-navigation,
    .floating-whatsapp,
    .back-to-top,
    .cta-section,
    .footer-social,
    .gallery-navigation,
    .gallery-modal {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0;

        background: white;
        color: black;
    }

}