/* =====================================================
   SAVETUBE PRO - LANDING PAGE
   CSS PRINCIPAL
===================================================== */

:root {
    --primary: #ff3d00;
    --primary-dark: #d93200;
    --secondary: #111827;
    --background: #f8fafc;
    --white: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;

    --radius: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


button {
    cursor: pointer;
    border: none;
}


/* CONTAINER */

.container {
    width: min(1200px, 90%);
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

header {
    width: 100%;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    border-bottom: 1px solid var(--border);
}


.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
}


.logo span {
    color: var(--primary);
}


.menu {
    display: flex;
    gap: 30px;
}


.menu a {
    color: var(--muted);
    font-weight: 600;
    transition: .3s;
}


.menu a:hover {
    color: var(--primary);
}


/* =====================================================
   BOTÕES
===================================================== */

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
    display: inline-block;
}


.btn-primary {

    background: var(--primary);
    color: white;

    box-shadow: 
    0 8px 20px rgba(255,61,0,.25);
}


.btn-primary:hover {

    background: var(--primary-dark);
    transform: translateY(-2px);

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 100vh;

    display:flex;
    align-items:center;

    padding-top:100px;

}


.hero-content {

    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:50px;

    align-items:center;

}


.hero h1 {

    font-size: clamp(40px,5vw,64px);
    line-height:1.1;

    color:var(--secondary);

}


.hero h1 span {

    color:var(--primary);

}


.hero p {

    margin:25px 0;

    font-size:20px;
    color:var(--muted);

}


.hero-image {

    background:white;

    border-radius:30px;

    padding:30px;

    box-shadow:var(--shadow);

}


/* =====================================================
   SEÇÕES
===================================================== */


section {

    padding:90px 0;

}


.section-title {

    text-align:center;

    margin-bottom:50px;

}


.section-title h2 {

    font-size:40px;

    color:var(--secondary);

}


.section-title p {

    color:var(--muted);

}



/* =====================================================
   CARDS
===================================================== */


.cards {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.card {

    background:white;

    padding:35px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:.3s;

}


.card:hover {

    transform:translateY(-8px);

}


.card h3 {

    margin-bottom:15px;

}


.card p {

    color:var(--muted);

}



/* =====================================================
   FOOTER
===================================================== */


footer {

    background:var(--secondary);

    color:white;

    padding:40px 0;

    text-align:center;

}



/* =====================================================
   RESPONSIVO
===================================================== */


@media(max-width:900px){


    .menu {

        display:none;

    }


    .hero-content {

        grid-template-columns:1fr;

        text-align:center;

    }


    .hero-image {

        margin:auto;

    }


    .cards {

        grid-template-columns:1fr;

    }

}

/* =====================================================
   SAVETUBE PRO - COMPONENTES ESPECÍFICOS
===================================================== */


/* =====================================================
   MOCKUP DO APLICATIVO
===================================================== */

.app-preview {

    background: #0f172a;

    border-radius:30px;

    padding:25px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.25);

    position:relative;

    overflow:hidden;

}


.app-preview::before {

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:rgba(255,61,0,.25);

    filter:blur(80px);

    top:-80px;
    right:-80px;

}



.app-window {

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    z-index:1;

}



/* Barra superior simulando programa */

.window-header {

    height:45px;

    background:#111827;

    display:flex;

    align-items:center;

    gap:8px;

    padding:0 18px;

}


.window-header span {

    width:12px;
    height:12px;

    border-radius:50%;

    background:#64748b;

}



/* Conteúdo interno */

.window-body {

    padding:30px;

}


.download-box {

    background:#f8fafc;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:20px;

}


.progress {

    height:10px;

    background:#e5e7eb;

    border-radius:20px;

    overflow:hidden;

    margin-top:15px;

}


.progress span {

    display:block;

    height:100%;

    width:70%;

    background:var(--primary);

}



/* =====================================================
   SEÇÃO DE BENEFÍCIOS
===================================================== */


.benefits {

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}


.benefit-item {

    background:white;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

}


.benefit-icon {

    width:60px;

    height:60px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,61,0,.1);

    color:var(--primary);

    font-size:28px;

}



.benefit-item h3 {

    margin-bottom:10px;

}



/* =====================================================
   SEÇÃO COMO FUNCIONA
===================================================== */


.steps {

    display:flex;

    justify-content:center;

    gap:30px;

}


.step {

    flex:1;

    text-align:center;

}


.step-number {

    width:60px;

    height:60px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:white;

    border-radius:50%;

    font-size:25px;

    font-weight:bold;

    margin-bottom:20px;

}



/* =====================================================
   PLANOS
===================================================== */


.pricing {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.price-card {

    background:white;

    border-radius:25px;

    padding:40px;

    box-shadow:var(--shadow);

    position:relative;

}



.price-card.featured {

    border:3px solid var(--primary);

    transform:scale(1.05);

}



.price-card h3 {

    font-size:25px;

}



.price {

    font-size:45px;

    font-weight:800;

    margin:20px 0;

    color:var(--secondary);

}



.price span {

    font-size:18px;

    color:var(--muted);

}



.price-list {

    list-style:none;

    margin:25px 0;

}



.price-list li {

    padding:10px 0;

    border-bottom:1px solid var(--border);

}



/* =====================================================
   FAQ
===================================================== */


.faq {

    max-width:800px;

    margin:auto;

}


.faq-item {

    background:white;

    margin-bottom:15px;

    border-radius:15px;

    padding:20px 25px;

    box-shadow:var(--shadow);

}



.faq-item h3 {

    font-size:18px;

    margin-bottom:10px;

}



.faq-item p {

    color:var(--muted);

}



/* =====================================================
   CTA FINAL
===================================================== */


.final-cta {

    background:

    linear-gradient(
        135deg,
        #111827,
        #1f2937
    );

    color:white;

    border-radius:30px;

    padding:70px 40px;

    text-align:center;

}


.final-cta h2 {

    font-size:45px;

    margin-bottom:20px;

}


.final-cta p {

    font-size:20px;

    opacity:.8;

    margin-bottom:35px;

}



/* =====================================================
   RESPONSIVO EXTRA
===================================================== */


@media(max-width:900px){


    .benefits {

        grid-template-columns:1fr 1fr;

    }


    .steps {

        flex-direction:column;

    }


    .pricing {

        grid-template-columns:1fr;

    }


    .price-card.featured {

        transform:none;

    }


}


@media(max-width:600px){


    .benefits {

        grid-template-columns:1fr;

    }


    .final-cta h2 {

        font-size:32px;

    }


}

/* =====================================================
   SAVETUBE PRO - ACABAMENTO PREMIUM
===================================================== */


/* =====================================================
   ANIMAÇÕES DE ENTRADA
===================================================== */


.fade-in {

    animation: fadeIn .8s ease forwards;

}


.slide-left {

    animation: slideLeft .8s ease forwards;

}


.slide-right {

    animation: slideRight .8s ease forwards;

}


@keyframes fadeIn {

    from {

        opacity:0;

    }

    to {

        opacity:1;

    }

}



@keyframes slideLeft {

    from {

        opacity:0;

        transform:translateX(-50px);

    }

    to {

        opacity:1;

        transform:translateX(0);

    }

}



@keyframes slideRight {

    from {

        opacity:0;

        transform:translateX(50px);

    }

    to {

        opacity:1;

        transform:translateX(0);

    }

}



/* =====================================================
   EFEITO FLUTUANTE NO MOCKUP
===================================================== */


.floating {

    animation: floating 4s ease-in-out infinite;

}


@keyframes floating {


    0% {

        transform:translateY(0);

    }


    50% {

        transform:translateY(-15px);

    }


    100% {

        transform:translateY(0);

    }


}



/* =====================================================
   BOTÕES PREMIUM
===================================================== */


.btn-primary {

    position:relative;

    overflow:hidden;

}


.btn-primary::before {

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:

    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );


    transition:.5s;

}



.btn-primary:hover::before {

    left:100%;

}



/* =====================================================
   BADGES / ETIQUETAS
===================================================== */


.badge {

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:

    rgba(255,61,0,.12);

    color:var(--primary);

    font-weight:700;

    font-size:14px;

    margin-bottom:20px;

}



/* =====================================================
   DESTAQUE DE TEXTO
===================================================== */


.highlight {

    background:

    linear-gradient(
        120deg,
        #ff3d00,
        #ff7b00
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}



/* =====================================================
   EFEITO DE VIDRO
===================================================== */


.glass {

    background:

    rgba(255,255,255,.65);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.3);

}



/* =====================================================
   ELEMENTOS DECORATIVOS
===================================================== */


.circle-decoration {

    position:absolute;

    border-radius:50%;

    filter:blur(40px);

    opacity:.4;

}



.circle-orange {

    background:#ff3d00;

    width:200px;

    height:200px;

}



.circle-blue {

    background:#2563eb;

    width:180px;

    height:180px;

}



/* =====================================================
   LISTA COM ÍCONES
===================================================== */


.feature-list {

    list-style:none;

}


.feature-list li {

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:15px;

}


.feature-list li::before {

    content:"✓";

    width:25px;

    height:25px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:white;

    border-radius:50%;

    font-size:14px;

    font-weight:bold;

}



/* =====================================================
   RESPONSIVIDADE FINAL
===================================================== */


@media(max-width:600px){


    .hero h1 {

        font-size:38px;

    }


    .hero p {

        font-size:17px;

    }


    .section-title h2 {

        font-size:32px;

    }


    .btn {

        width:100%;

        text-align:center;

    }


}