:root {
    --orange: #ff6600;
    --black: #000000;
    --dark: #0a0a0a;
    --soft-dark: #111111;
    --text-gray: #aaaaaa;
    --white: #ffffff;
    --border-soft: rgba(255, 102, 0, 0.12);
    --border-strong: rgba(255, 102, 0, 0.25);
    --shadow-orange: 0 0 20px rgba(255, 102, 0, 0.12);
    --transition: 0.3s ease;
    --header-height: 70px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

/* CONTAINER */
.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

/* SEÇÕES */
section {
    padding: 90px 0;
}

h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* BOTÃO */
.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.4);
}

/* HEADER */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 20px;
}

.logo img {
    height: 42px;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--orange);
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    max-width: 85%;
    height: 100vh;
    background: var(--black);
    border-left: 1px solid rgba(255, 102, 0, 0.2);
    transition: 0.35s ease;
    z-index: 999;
    padding-top: 90px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 102, 0, 0.08);
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: rgba(255, 102, 0, 0.12);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 12px;
    line-height: 1.1;
}

.hero p {
    color: var(--text-gray);
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.6;
}

/* SERVIÇOS */
.services {
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.service-card {
    background: #0b0b0b;
    border-radius: 15px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 2px solid var(--border-soft);
    transition: 0.35s ease;
}

.service-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.service-card .icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card .icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.service-card .text span {
    font-size: 1rem;
    color: #eeeeee;
    font-weight: 500;
}

/* DIFERENCIAIS */
.differentials {
    background: #050505;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.differentials-grid div {
    background: #0b0b0b;
    border-radius: 10px;
    padding: 18px;
    border: 1px solid rgba(255, 102, 0, 0.1);
    text-align: center;
    font-size: 0.95rem;
    color: #eeeeee;
    transition: 0.35s ease;
}

.differentials-grid div:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(255, 102, 0, 0.12);
}

/* ABOUT */
.about p {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-gray);
    line-height: 1.8;
}

/* GALLERY */
.gallery {
    background: var(--black);
}

.carousel {
    background: var(--soft-dark);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.carousel-item {
    min-height: 180px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: var(--text-gray);
    background: linear-gradient(180deg, #151515 0%, #0b0b0b 100%);
}

/* CONTATO */
.contact {
    background: var(--dark);
    text-align: center;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 18px 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons img {
    width: 28px;
    height: 28px;
    transition: var(--transition);
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* MAPA */
iframe {
    width: 100%;
    height: 280px;
    border: none;
    margin-top: 20px;
    border-radius: 12px;
    filter: grayscale(100%) contrast(1.1);
}

/* FOOTER */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    text-align: center;
    padding: 25px 0;
    color: var(--text-gray);
}

.footer p + p {
    margin-top: 8px;
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 14px 18px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1001;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

/* RESPONSIVO */
@media (max-width: 991px) {
    .carousel-track {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    section {
        padding: 70px 0;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 16px 18px;
    }

    .service-card .icon {
        width: 60px;
        height: 60px;
    }

    .service-card .icon img {
        width: 60px;
        height: 60px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .header-container {
        min-height: 64px;
    }

    .logo img {
        height: 36px;
    }

    .hero {
        min-height: 92svh;
    }

    .hero-content {
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        max-width: 280px;
    }

    .services-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        gap: 14px;
    }
}


/* DICAS MIT */

/* PÁGINAS INTERNAS */
.internal-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.82) 100%),
        radial-gradient(circle at top left, rgba(255, 102, 0, 0.20), transparent 35%),
        #080808;
    overflow: hidden;
}

.internal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.internal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: left;
}

.page-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 102, 0, 0.25);
    border-radius: 999px;
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 600;
}

.internal-hero-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 14px;
}

.internal-hero-content p {
    max-width: 640px;
    color: var(--text-gray);
    line-height: 1.8;
}

.section-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-gray);
    line-height: 1.8;
}

.tips-intro,
.tips-cta {
    background: #050505;
}

.tips-section {
    background: var(--dark);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.tip-card {
    background: #0b0b0b;
    border: 1px solid rgba(255, 102, 0, 0.10);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
}

.tip-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(255, 102, 0, 0.12);
}

.tip-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--white);
}

.tip-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.warning-signs {
    background: #080808;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.warning-item {
    background: #0b0b0b;
    border: 1px solid rgba(255, 102, 0, 0.10);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    color: #eeeeee;
    transition: var(--transition);
}

.warning-item:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 0 16px rgba(255, 102, 0, 0.10);
}

.tips-cta .btn-primary {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .internal-hero {
        min-height: 48vh;
    }

    .internal-hero-content {
        text-align: center;
    }

    .internal-hero-content p {
        margin: 0 auto;
    }
}



/* Dicas Mit */
/* IMAGEM DOS CARDS DE DICAS */
.tip-card {
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #0e0e0e 0%, #090909 100%);
    border: 1px solid rgba(255, 102, 0, 0.10);
    border-radius: 18px;
    padding: 0;
    transition: 0.35s ease;
}

.tip-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(255, 102, 0, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.35),
        0 0 24px rgba(255, 102, 0, 0.10);
}

.tip-image {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 102, 0, 0.10);
}

.tip-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.35) 55%,
            rgba(0, 0, 0, 0.60) 100%
        );
    z-index: 1;
}

.tip-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 102, 0, 0.18), transparent 35%);
    z-index: 2;
    pointer-events: none;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1);
    transition: transform 0.45s ease, filter 0.35s ease;
    filter:
        grayscale(18%)
        contrast(1.05)
        brightness(0.72)
        saturate(0.95);
}

.tip-card:hover .tip-image img {
    transform: scale(1.06);
    filter:
        grayscale(8%)
        contrast(1.08)
        brightness(0.82)
        saturate(1);
}

.tip-card h3,
.tip-card p {
    padding-left: 24px;
    padding-right: 24px;
}

.tip-card h3 {
    padding-top: 22px;
    margin-bottom: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.tip-card p {
    padding-bottom: 24px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .tip-image {
        height: 170px;
    }

    .tip-card h3,
    .tip-card p {
        padding-left: 18px;
        padding-right: 18px;
    }

    .tip-card h3 {
        padding-top: 18px;
        font-size: 1.3rem;
    }

    .tip-card p {
        padding-bottom: 20px;
    }
}


/* CENTRALIZAR BOTÃO CTA Agendar avaliação no whatsapp dicasmit */
.tips-cta {
    text-align: center;
}

.tips-cta .btn-primary {
    margin-top: 25px;
}



/* MUSICASMIT */
.music-intro,
.music-download-info {
    background: #050505;
}

.music-player-section,
.music-categories {
    background: var(--dark);
}

.music-player-box {
    margin-top: 30px;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 102, 0, 0.10);
    background: linear-gradient(180deg, #0e0e0e 0%, #090909 100%);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.music-card {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 102, 0, 0.10);
    background: linear-gradient(180deg, #0e0e0e 0%, #090909 100%);
    transition: 0.35s ease;
}

.music-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow:
        0 0 0 1px rgba(255, 102, 0, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.35),
        0 0 24px rgba(255, 102, 0, 0.10);
}

.music-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 102, 0, 0.10);
}

.music-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.34) 50%,
            rgba(0, 0, 0, 0.60) 100%
        );
}

.music-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease, filter 0.35s ease;
    filter:
        grayscale(18%)
        contrast(1.05)
        brightness(0.72)
        saturate(0.95);
}

.music-card:hover .music-card-image img {
    transform: scale(1.06);
    filter:
        grayscale(8%)
        contrast(1.08)
        brightness(0.82)
        saturate(1);
}

.music-card-content {
    padding: 24px;
}

.music-card-content h3 {
    margin-bottom: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.music-card-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

.music-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 102, 0, 0.35);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 102, 0, 0.08);
    border-color: var(--orange);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .music-card-image {
        height: 190px;
    }

    .music-card-content {
        padding: 18px;
    }

    .music-card-content h3 {
        font-size: 1.3rem;
    }

    .music-card-actions {
        flex-direction: column;
    }

    .music-card-actions .btn-primary,
    .music-card-actions .btn-secondary {
        width: 100%;
    }
}




/* PLAYER REPARAMIT */
.reparamit-player {
    display: grid;
    gap: 24px;
}

.player-album-meta {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    align-items: center;
}

.player-cover {
    width: 120px;
    height: 120px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(255, 102, 0, 0.18);
}

.player-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
}

.player-info p {
    color: var(--text-gray);
    line-height: 1.6;
}

.player-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 102, 0, 0.24);
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
}

#audio-player {
    width: 100%;
}

.player-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.player-actions .btn-primary,
.player-actions .btn-secondary {
    cursor: pointer;
}

.is-disabled {
    pointer-events: none;
    opacity: 0.45;
}

.player-playlist {
    border-top: 1px solid rgba(255, 102, 0, 0.12);
    padding-top: 20px;
}

.playlist-list {
    display: grid;
    gap: 10px;
}

.playlist-item {
    width: 100%;
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 0, 0.10);
    background: #0d0d0d;
    color: var(--white);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.playlist-item:hover,
.playlist-item.active {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(255, 102, 0, 0.12);
}

.playlist-number {
    color: var(--orange);
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
}

.playlist-name {
    color: #f3f3f3;
    line-height: 1.4;
}

.player-empty {
    color: var(--text-gray);
    text-align: center;
    padding: 12px 0;
}

.music-card-actions button.btn-primary {
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .player-album-meta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .player-cover {
        margin: 0 auto;
    }

    .player-actions {
        flex-direction: column;
    }

    .player-actions .btn-primary,
    .player-actions .btn-secondary {
        width: 100%;
    }

    .player-info h3 {
        font-size: 1.6rem;
    }
}