/* =========================================
   Banana Sender - Styles
   ========================================= */

:root {
    /* Cores principais */
    --banana-yellow: #FFD700;
    --banana-light: #FFE55C;
    --banana-dark: #E6B800;
    --banana-glow: rgba(255, 215, 0, 0.3);
    
    /* Cores de fundo */
    --bg-black: #000000;
    --bg-dark: #111111;
    --bg-darker: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    
    /* Cores de texto */
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #888888;
    
    /* Gradientes */
    --gradient-banana: linear-gradient(135deg, var(--banana-yellow), var(--banana-light));
    --gradient-dark: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 100%);
    
    /* Sombras */
    --shadow-glow: 0 0 40px var(--banana-glow);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =========================================
   Reset & Base
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   Utilities
   ========================================= */

.text-gradient {
    background: var(--gradient-banana);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-banana {
    background: var(--gradient-banana);
    color: var(--bg-black) !important;
    font-weight: 600;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px var(--banana-glow);
}

.btn-banana:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--banana-glow);
    color: var(--bg-black) !important;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--banana-yellow);
    color: var(--banana-yellow);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   Navbar
   ========================================= */

.navbar {
    padding: 15px 0;
    background: transparent;
    transition: var(--transition-normal);
}

/* Force sizing for square logo used in navbar (logo-quad-100.png) */
.navbar-brand img,
img[src$="logo-quad-100.png"],
img[src$="images/logo-quad-100.png"] {
    height: 40px !important;
    width: 40px !important;
    max-width: none !important;
    object-fit: contain !important;
    display: inline-block !important;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    font-weight: 700;
    font-size: 1.3rem;
}

.nav-link {
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--banana-yellow) !important;
    background: rgba(255, 215, 0, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* =========================================
   Hero Section
   ========================================= */

.hero-section {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--banana-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
}

.badge-icon {
    font-size: 1.3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    font-size: 2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--banana-yellow);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px; /* reduce padding to keep visuals tighter */
    overflow: hidden;
    min-height: 260px;
    gap: 18px;
}

.hero-logo {
    max-width: 100% !important;
    width: auto !important;
    max-width: 460px !important; /* locked max width to avoid overflowing hero layout */
    height: auto !important;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 2;
    margin-left: 0;
    align-self: center;
}

.hero-video {
    width: 100%;
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.hero-video iframe {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.floating {
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Strong safeguard: ensure hero images never exceed container and don't overlap text */
.hero-image-wrapper img {
    max-width: 460px !important;
    width: 100% !important;
    height: auto !important;
    display: block;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* =========================================
   Recursos Section
   ========================================= */

.recursos-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.feature-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-banana);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--bg-black);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
}

.feature-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--banana-glow);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-glow {
    opacity: 0.5;
}

/* =========================================
   Como Funciona Section
   ========================================= */

.como-funciona-section {
    padding: 100px 0;
    background: var(--bg-black);
}

.step-card {
    display: flex;
    gap: 25px;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 15px;
    background: transparent;
    border: 1px solid transparent;
    transition: var(--transition-normal);
    cursor: pointer;
}

.step-card:hover,
.step-card.active {
    background: var(--bg-card);
    border-color: rgba(255, 215, 0, 0.2);
}

.step-card.active {
    border-color: var(--banana-yellow);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--banana-yellow);
    opacity: 0.3;
    transition: var(--transition-normal);
}

.step-card:hover .step-number,
.step-card.active .step-number {
    opacity: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.steps-visual {
    position: relative;
    padding: 40px;
}

.visual-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.visual-dots {
    display: flex;
    gap: 8px;
}

.visual-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
}

.visual-dots span:nth-child(1) { background: #ff5f57; }
.visual-dots span:nth-child(2) { background: #ffbd2e; }
.visual-dots span:nth-child(3) { background: #28ca42; }

.visual-title {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.visual-body {
    padding: 40px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.config-animation {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.config-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-darker);
    border-radius: 12px;
    opacity: 0.4;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

.config-step.step-1 { animation-delay: 0.2s; }
.config-step.step-2 { animation-delay: 0.4s; }
.config-step.step-3 { animation-delay: 0.6s; }
.config-step.step-4 { animation-delay: 0.8s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.config-step i {
    font-size: 1.5rem;
    color: var(--banana-yellow);
}

.config-step span {
    font-size: 0.95rem;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-emoji {
    position: absolute;
    font-size: 2rem;
    animation: floatEmoji 4s ease-in-out infinite;
}

.e1 { top: 10%; left: 5%; animation-delay: 0s; }
.e2 { top: 20%; right: 10%; animation-delay: 0.5s; }
.e3 { bottom: 20%; left: 10%; animation-delay: 1s; }
.e4 { bottom: 10%; right: 5%; animation-delay: 1.5s; }

@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* =========================================
   Telas Section (Gallery)
   ========================================= */

.telas-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

.gallery-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--bg-card);
    display: block;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--banana-yellow);
}

.gallery-overlay span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Gallery Modal */
.gallery-modal .modal-content {
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.gallery-modal .modal-header {
    border-bottom: none;
    padding: 20px 25px;
}

.modal-counter {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.gallery-modal .modal-body {
    padding: 0 25px 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--banana-yellow);
    color: var(--bg-black);
    border-color: var(--banana-yellow);
}

.gallery-nav.prev {
    left: 15px;
}

.gallery-nav.next {
    right: 15px;
}

.gallery-nav i {
    font-size: 1.3rem;
}

/* =========================================
   FAQ Section
   ========================================= */

.faq-section {
    padding: 100px 0;
    background: var(--bg-black);
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-white);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 20px 25px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 215, 0, 0.05);
    color: var(--banana-yellow);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD700'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button i {
    color: var(--banana-yellow);
}

.accordion-body {
    padding: 0 25px 25px 25px;
    color: var(--text-muted);
}

.accordion-body code {
    background: var(--bg-darker);
    color: var(--banana-yellow);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.9em;
}

/* =========================================
   Download Section
   ========================================= */

.download-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.download-card {
    position: relative;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 30px;
    padding: 60px;
    overflow: hidden;
}

.download-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: var(--banana-yellow);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.download-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.download-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.download-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-feature i {
    color: var(--banana-yellow);
    font-size: 1.2rem;
}

.download-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.download-version {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.download-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.banana-float {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: floatBanana 8s ease-in-out infinite;
}

.b1 { top: 10%; right: 5%; animation-delay: 0s; }
.b2 { bottom: 20%; right: 15%; animation-delay: 2s; }
.b3 { top: 40%; right: 25%; animation-delay: 4s; }

@keyframes floatBanana {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

/* =========================================
   Comprar Section
   ========================================= */

.comprar-section {
    /* Extra spacing to avoid touching Download above and Footer below */
    padding: 130px 0 150px;
    background: var(--bg-black);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    /* Aumenta padding superior para dar espaço aos badges e evitar sobreposição */
    padding: 48px 28px 32px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.pricing-discount {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gradient-banana);
    color: var(--bg-black);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
}




.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-glow);
}

.pricing-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-old-price {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 80, 80, 0.9);
    position: relative;
    display: inline-block;
    margin-bottom: 6px;
    /* Garante espaçamento para o badge no topo */
    margin-top: 18px;
}

.pricing-old-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 6px;
    color: var(--text-muted);
}

.pricing-price {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--banana-yellow);
    margin-bottom: 10px;
}

.pricing-new-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 6px;
    color: var(--text-light);
}

.pricing-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 22px;
}

.promo-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px dashed rgba(255, 215, 0, 0.35);
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--text-light);
    font-size: 0.95rem;
    box-shadow: 0 10px 24px rgba(255, 215, 0, 0.12);
}

.promo-badge {
    background: var(--gradient-banana);
    color: var(--bg-black);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.35);
}

/* =========================================
   Footer
   ========================================= */

.footer-section {
    background: var(--bg-darker);
    padding: 80px 0 30px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--banana-yellow);
    color: var(--bg-black);
}

.social-link i {
    font-size: 1.3rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--banana-yellow);
    padding-left: 5px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control:focus {
    background: var(--bg-card);
    border-color: var(--banana-yellow);
    box-shadow: none;
    color: var(--text-white);
}

.newsletter-form .form-control::placeholder {
    color: var(--text-muted);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 25px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 25px;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
    }
    
    .download-card {
        padding: 40px 30px;
    }
    
    .download-title {
        font-size: 1.8rem;
    }
    
    .download-action {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .steps-visual {
        padding: 20px;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .download-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-section {
        padding: 60px 0 25px;
    }
}

@media (max-width: 575px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .modal-image {
        max-height: 50vh;
    }
    
    .gallery-nav.prev {
        left: 5px;
    }
    
    .gallery-nav.next {
        right: 5px;
    }
}
/* =========================================
   Nota de Desenvolvimento Section
   ========================================= */

.nota-dev-section {
    padding: 60px 0 80px;
    background: var(--bg-dark);
}

.nota-dev-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--banana-yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.nota-dev-content {
    font-weight: 300;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
}

.nota-dev-intro {
    margin-bottom: 0;
}

.nota-dev-extra {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.nota-dev-extra p {
    margin-bottom: 15px;
}

.nota-dev-disclaimers {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.nota-dev-disclaimers li {
    margin-bottom: 8px;
}

.btn-outline-banana {
    color: var(--banana-yellow);
    border: 1px solid var(--banana-yellow);
    background: transparent;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-normal);
}

.btn-outline-banana:hover {
    background: var(--banana-yellow);
    color: var(--bg-black);
}

#btnNotaDevToggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

#btnNotaDevToggle i {
    transition: transform 0.3s ease;
}

/* =========================================
   Hero Stats - Bootstrap Icons Style
   ========================================= */

.stat-icon-bi {
    font-size: 2rem;
    color: var(--banana-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-bi i {
    font-size: inherit;
}

.stat-infinity {
    font-size: 2rem !important;
}