:root {
    --primary-purple: #6600C9;
    --dark-purple: #1C022C;
    --dark-bg: #1F1F1F;
    --darker-bg: #222222;
    --white: #FFFFFF;
    --light-purple: #8a2be2;
    --off-white: #FAFAFA;
    --gray-dark: #2b2b2b;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--darker-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 0.125rem;
}

/* ========== NAVBAR ========== */
.navbar {
    background: transparent !important;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0.5rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(28, 2, 44, 0.95) !important;
    backdrop-filter: blur(0.625rem);
    box-shadow: 0 0.125rem 1.25rem rgba(102, 0, 201, 0.3);
}

.navbar-logo {
    height: 5rem;
    width: auto;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FAFAFA' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0.125rem;
    background: var(--primary-purple);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple) !important;
}

/* Navbar Social Icons */
.navbar-social-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

/* ========== DROPDOWN MENU - PORTFÓLIO ========== */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1rem;
    background: transparent;
    z-index: 999;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.nav-item.dropdown .dropdown-toggle::after {
    display: none !important;
}

/* Risco roxo embaixo do Portfólio quando ativo (páginas de portfólio) */
.nav-item.dropdown .dropdown-toggle.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80%;
    height: 0.125rem;
    background: var(--primary-purple);
    transform: translateX(-50%);
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--off-white);
    border: 0.0625rem solid rgba(102, 0, 201, 0.2);
    border-radius: 0.75rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0.9375rem 2.5rem rgba(102, 0, 201, 0.35);
    z-index: 1000;
    list-style: none;
    display: none;
    pointer-events: auto !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 0.75rem !important;
    pointer-events: auto !important;
}

.dropdown-menu:hover {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.dropdown-item {
    color: #2c2c2c !important;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    display: block;
    text-decoration: none;
    pointer-events: auto !important;
    cursor: pointer !important;
    background-color: transparent !important;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item.active {
    background-color: transparent !important;
    background: linear-gradient(90deg, transparent, rgba(102, 0, 201, 0.1), transparent) !important;
    color: var(--primary-purple) !important;
    padding-left: 2rem;
    box-shadow: none !important;
}

/* Item atual da página (portfólio) — destaque roxo sem underline de active */
.dropdown-item-current {
    color: var(--primary-purple) !important;
    font-weight: 700 !important;
    padding-left: 2rem !important;
    background: linear-gradient(90deg, transparent, rgba(102, 0, 201, 0.08), transparent) !important;
    background-color: transparent !important;
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.mobile-submenu.show {
    max-height: 12.5rem;
    opacity: 1;
}

.mobile-submenu li {
    margin-bottom: 0.5rem;
}

.mobile-submenu a {
    color: #2c2c2c !important;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    color: var(--primary-purple) !important;
    padding-left: 0.5rem;
}

.submenu-arrow {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.portfolio-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-social-icon {
    width: 2.8125rem;
    height: 2.8125rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.navbar-social-icon:hover {
    transform: translateY(-0.3125rem) scale(1.1);
    box-shadow: 0 0.625rem 1.5625rem rgba(102, 0, 201, 0.5);
    color: var(--white);
}

/* ========== OFFCANVAS MOBILE ========== */
.offcanvas-custom {
    background-color: var(--off-white);
}

.offcanvas-custom .offcanvas-header {
    background-color: var(--dark-purple);
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.offcanvas-custom .offcanvas-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex: 1;
}

.offcanvas-logo {
    height: 5rem;
    width: auto;
}

.offcanvas-custom .btn-close {
    position: absolute;
    right: 1.5rem;
    filter: invert(1);
    opacity: 0.8;
}

.offcanvas-custom .btn-close:hover {
    opacity: 1;
}

.offcanvas-custom .offcanvas-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offcanvas-custom .navbar-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
}

.offcanvas-custom .nav-item {
    margin-bottom: 0;
    border-bottom: 0.0625rem solid #e0e0e0;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.offcanvas-custom .nav-link {
    color: var(--gray-dark) !important;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0;
    transition: all 0.3s ease;
    display: block;
}

.offcanvas-custom .nav-link::after {
    display: none;
}

.offcanvas-custom .nav-link:hover {
    color: var(--primary-purple) !important;
    padding-left: 0.625rem;
}

.offcanvas-custom .nav-link.active {
    color: var(--primary-purple) !important;
    font-weight: 600;
}

.offcanvas-social {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.offcanvas-social a {
    width: 3.125rem;
    height: 3.125rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.offcanvas-social a:hover {
    transform: translateY(-0.3125rem) scale(1.1);
    box-shadow: 0 0.625rem 1.5625rem rgba(102, 0, 201, 0.5);
}

/* ========== BOTÃO PRIMÁRIO ========== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 3.125rem;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.0625rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: pulse-button 2s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
    border-radius: 3.125rem;
    z-index: 2;
    pointer-events: none;
}

@keyframes pulse-button {
    0% {
        transform: scale(1);
        box-shadow: 0 0.3125rem 1.25rem rgba(102, 0, 201, 0.4), 0 0 0 0 rgba(102, 0, 201, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0.5rem 1.875rem rgba(102, 0, 201, 0.6), 0 0 0 0.625rem rgba(102, 0, 201, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0.3125rem 1.25rem rgba(102, 0, 201, 0.4), 0 0 0 0.625rem rgba(102, 0, 201, 0);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 200%;
    }
}

.btn-primary:hover {
    transform: translateY(-0.1875rem) scale(1.05);
    box-shadow: 0 0.625rem 1.875rem rgba(102, 0, 201, 0.5);
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--primary-purple) 100%);
    animation: none;
}

.btn-primary:hover::before {
    animation: none;
}

/* ========== ANIMAÇÕES GLOBAIS ========== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-left {
    opacity: 0;
    transform: translateX(-6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-top {
    opacity: 0;
    transform: translateY(-6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right {
    opacity: 0;
    transform: translateX(6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-bottom {
    opacity: 0;
    transform: translateY(6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(3.125rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-flip {
    opacity: 0;
    transform: rotateY(90deg);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left.visible,
.animate-top.visible,
.animate-right.visible,
.animate-bottom.visible,
.animate-scale.visible,
.animate-fade-up.visible,
.animate-flip.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotateY(0);
}

/* ========== SECTIONS (utilitários globais) ========== */
section {
    padding: 5rem 0;
}

.section-off-white {
    background: var(--off-white);
}

.section-off-white .section-title {
    color: var(--dark-purple);
}

.section-off-white .section-subtitle {
    color: #2c2c2c;
}

.bg-dark-section {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--dark-bg) 100%);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6.25rem;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--light-purple) 100%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
    font-weight: 500;
}

/* ========== MARQUEE ========== */
.marquee-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
    padding: 2.5rem 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    min-width: 100%;
    animation: scroll 40s linear infinite;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.1875rem;
    white-space: nowrap;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 0.125rem solid var(--primary-purple);
}

.footer-logo {
    height: 5rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-text {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links,
.footer-info {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-info li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-info li {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-purple);
    padding-left: 0.3125rem;
}

.footer-info i {
    margin-right: 0.5rem;
    color: var(--primary-purple);
}

.footer-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-info a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    border-top: none;
    margin-top: 2rem;
    padding-top: 1.5rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0.125rem;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

.privacy-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    font-weight: 400;
}

.privacy-link:hover {
    color: var(--primary-purple);
    opacity: 1;
}

/* ========== BOTÕES FLUTUANTES ========== */
.back-to-top {
    position: fixed;
    width: 3.125rem;
    height: 3.125rem;
    bottom: 9.375rem;
    right: 2.5rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: 0 0.3125rem 1.25rem rgba(102, 0, 201, 0.5);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.875rem rgba(102, 0, 201, 0.7);
}

/* ========== WHATSAPP FLOAT — PULSE QUE CRESCE E DESAPARECE ========== */
.whatsapp-float {
    position: fixed;
    width: 3.75rem;
    height: 3.75rem;
    bottom: 2.5rem;
    right: 2.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 0.5rem 1.875rem rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45);
    animation: pulse-whatsapp 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-0.3125rem);
    box-shadow: 0 0.9375rem 2.5rem rgba(37, 211, 102, 0.7);
    color: var(--white);
    text-decoration: none !important;
}

.whatsapp-float:hover::before {
    animation: none;
    opacity: 0;
}

/* ========== LGPD COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2D0B45 0%, #4B1870 50%, #2D0B45 100%);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.4);
    border-top: 2px solid #6600C9;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-banner-text h5 i {
    font-size: 1.3rem;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-banner-text a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.cookie-banner-text a:hover {
    opacity: 0.8;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-banner .btn-light {
    background-color: #fff;
    color: #6600C9;
    border: none;
}

.cookie-banner .btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner .btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
}

.cookie-banner .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #fff !important;
}

/* ==========================================================
   RESPONSIVO — MOBILE FIRST
   ========================================================== */

/* ── BASE MOBILE ── */

/* Padding lateral do container em todo o site */
.container,
.container-fluid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.navbar {
    padding: 0.75rem 0;
}

.navbar-logo,
.footer-logo {
    height: 5rem;
}

.offcanvas-logo {
    height: 3.5rem;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.navbar-brand {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-toggler {
    margin-left: auto;
}

.nav-link::after {
    display: none;
}

.btn-primary {
    padding: 1rem 2.5rem !important;
    font-size: 1.05rem !important;
    width: 100%;
    max-width: 320px;
}

section {
    padding: 2.5rem 0;
}

.section-title {
    font-size: 1.8rem;
}

.section-subtitle {
    font-size: 0.9rem;
}

.marquee-content {
    font-size: 1.1rem;
    letter-spacing: 0.0625rem;
}

.animate-left,
.animate-right {
    transform: translateX(-1.25rem);
}

.animate-top,
.animate-bottom {
    transform: translateY(1.25rem);
}

.back-to-top {
    width: 2.5rem;
    height: 2.5rem;
    bottom: 6.5rem;
    right: 0.75rem;
    font-size: 1rem;
}

.whatsapp-float {
    width: 3rem;
    height: 3rem;
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 1.6rem;
}

.footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
}

.footer-bottom p {
    text-align: center;
    font-size: 0.85rem;
}

.footer .col-lg-4:first-child {
    text-align: center;
    margin-bottom: 2.5rem;
}

.footer .col-lg-4:nth-child(2),
.footer .col-lg-4:nth-child(3) {
    text-align: left;
    margin-bottom: 2rem;
}

.footer-links,
.footer-info,
.footer-title {
    text-align: left;
}

/* Cookie Banner Mobile */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-content {
        gap: 1rem;
    }

    .cookie-banner-text h5 {
        font-size: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-banner .btn {
        flex: 1;
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }
}

/* ── XS: 430px+ ── */
@media (min-width: 430px) {
    .offcanvas-logo {
        height: 3.75rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .marquee-content {
        font-size: 1rem;
        letter-spacing: 0.09375rem;
    }

    .back-to-top {
        right: 1rem;
        bottom: 7rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.7rem;
    }
}

/* ── SM: 576px+ ── */
@media (min-width: 576px) {
    .offcanvas-logo {
        height: 3.75rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .marquee-content {
        font-size: 1rem;
        letter-spacing: 0.09375rem;
    }

    .back-to-top {
        right: 1rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
}

/* ── MD: 768px+ ── */
@media (min-width: 768px) {

    /* Restaura padding padrão do Bootstrap no container */
    .container,
    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .navbar-logo,
    .footer-logo {
        height: 5.5rem;
    }

    .offcanvas-logo {
        height: 4rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem !important;
        font-size: 1rem !important;
        width: auto;
        max-width: none;
    }

    section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .marquee-content {
        font-size: 1.1rem;
        letter-spacing: 0.125rem;
    }

    .animate-left,
    .animate-right {
        transform: translateX(-1.875rem);
    }

    .animate-top,
    .animate-bottom {
        transform: translateY(1.875rem);
    }

    .back-to-top {
        width: 2.8125rem;
        height: 2.8125rem;
        bottom: 7.5rem;
        right: 1.5rem;
        font-size: 1.1rem;
    }

    .whatsapp-float {
        width: 3.4375rem;
        height: 3.4375rem;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.8rem;
    }

    .footer-bottom-content {
        flex-direction: row;
        text-align: left;
    }

    .footer-bottom p {
        text-align: left;
        font-size: 1rem;
    }

    /* Detalhe roxo do título volta para a esquerda a partir do tablet */
    .section-title::after {
        left: 0;
        transform: none;
    }
}

/* ── LG: 992px+ ── */
@media (min-width: 992px) {
    .navbar .container {
        justify-content: flex-start;
    }

    .navbar-brand {
        position: static;
        transform: none;
    }

    .navbar-toggler {
        margin-left: 0;
    }

    .nav-link::after {
        display: block;
    }

    .navbar {
        padding: 0.75rem 0 !important;
    }

    .navbar-logo,
    .footer-logo {
        height: 4.5rem;
    }

    section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .marquee-content {
        font-size: 1.3rem;
        letter-spacing: 0.125rem;
    }

    .animate-left {
        transform: translateX(-6.25rem);
    }

    .animate-right {
        transform: translateX(6.25rem);
    }

    .animate-top {
        transform: translateY(-6.25rem);
    }

    .animate-bottom {
        transform: translateY(6.25rem);
    }

    .animate-scale {
        transform: scale(0.8);
    }

    .animate-fade-up {
        transform: translateY(3.125rem);
    }

    .animate-flip {
        transform: rotateY(90deg);
    }

    .back-to-top {
        width: 3.125rem;
        height: 3.125rem;
        bottom: 9.375rem;
        right: 2.5rem;
        font-size: 1.3rem;
    }

    .whatsapp-float {
        width: 3.75rem;
        height: 3.75rem;
        bottom: 2.5rem;
        right: 2.5rem;
        font-size: 2rem;
    }
}

/* ── XL: 1200px+ ── */
@media (min-width: 1200px) {

    .navbar-logo,
    .footer-logo {
        height: 5rem;
    }

    section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .marquee-content {
        font-size: 1.5rem;
        letter-spacing: 0.1875rem;
    }
}