/* Barber Cashflow Landing - Estilos customizados */

:root {
    --bc-primary: #0d6efd;
    --bc-dark: #1a1a2e;
    --bc-gold: #f0a500;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bc-dark) 0%, #16213e 100%);
    color: white;
    min-height: 100vh;
}

.hero-section h1 {
    line-height: 1.15;
}

/* Headline responsivo com impacto */
.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

/* Marca - visível e memorável */
.hero-brand {
    font-size: 1.5rem;
    letter-spacing: 3px;
}

/* Subtítulo - diferenciado da marca */
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

/* Step numbers */
.step-number {
    width: 40px;
    height: 40px;
    background: var(--bc-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Cards */
.card {
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Form section */
#formulario {
    scroll-margin-top: 20px;
}

/* Buttons */
.btn-primary {
    padding: 12px 32px;
    font-weight: 600;
}

.btn-success {
    padding: 12px 32px;
    font-weight: 600;
}

/* WhatsApp button */
.btn-success:hover {
    background-color: #128c7e;
    border-color: #128c7e;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--bc-primary);
}

/* Secao de Prints */
.prints-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.prints-block {
    margin-bottom: 5rem;
}

.prints-block-last {
    margin-bottom: 0;
    padding-bottom: 2rem;
}

/* Device Mockups */
.device-mockup {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.device-frame {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.device-desktop {
    border: 3px solid #333;
    border-radius: 8px;
    max-width: 100%;
}

.device-desktop img {
    display: block;
    width: 100%;
    height: auto;
}

.device-mobile {
    position: absolute;
    right: -15px;
    bottom: -15px;
    width: 28%;
    max-width: 110px;
    border: 3px solid #333;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    background: #fff;
}

.device-mobile img {
    display: block;
    width: 100%;
    height: auto;
}

.desktop-only {
    padding-right: 0;
    padding-bottom: 0;
}

.desktop-only .device-desktop {
    max-width: 100%;
}

.with-mobile {
    padding-right: 25px;
    padding-bottom: 25px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    /* Prints section - mobile */
    .prints-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .prints-block {
        margin-bottom: 3rem;
        text-align: center;
    }

    .prints-block-last {
        text-align: center;
    }

    .device-mobile {
        position: relative;
        right: auto;
        bottom: auto;
        width: 45%;
        max-width: 140px;
        margin: 15px auto 0;
    }

    .with-mobile {
        padding-right: 0;
        padding-bottom: 0;
    }

    .device-mockup.with-mobile {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
