/* ==========================================
   ALFRAMED LANDING
========================================== */

:root{

    --primary:#1294D2;
    --primary-dark:#0E7CB0;

    --secondary:#F05475;

    --dark:#0F172A;

    --text:#334155;

    --gray:#64748B;

    --light:#F8FAFC;

    --white:#FFFFFF;

    --border:#E2E8F0;

    --radius:18px;

    --shadow:0 15px 40px rgba(15,23,42,.08);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--white);

    color:var(--dark);

    overflow-x:hidden;

}

img{

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(1180px,90%);

    margin:auto;

}

/* ==========================================
HEADER
========================================== */

.header{

    position:fixed;

    top:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(12px);

    background:rgba(255,255,255,.85);

    border-bottom:1px solid rgba(0,0,0,.05);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:22px;

    font-weight:800;

    color:var(--dark);

}

.logo-icon{

    width:36px;

    height:36px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

}

nav ul{

    display:flex;

    gap:40px;

}

nav a{

    color:var(--gray);

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:var(--primary);

}

.btn-primary{

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));

    color:white;

    padding:14px 26px;

    border-radius:14px;

    font-weight:600;

    transition:.3s;

    box-shadow:0 15px 25px rgba(18,148,210,.25);

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    padding:14px 26px;

    border-radius:14px;

    border:1px solid var(--border);

    color:var(--dark);

    transition:.3s;

}

.btn-secondary:hover{

    background:var(--light);

}

/* ==========================================
HERO
========================================== */

.hero{
    padding-top:170px;
    padding-bottom:120px;

    background:
        linear-gradient(
            rgba(0,0,0,.10),
            rgba(0,0,0,.10)
        ),
        url("assets/hero_bg.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:#EAF8FF;

    color:var(--primary);

    font-weight:600;

    margin-bottom:24px;

}

.hero h1{

    font-size:58px;

    line-height:1.1;

    margin-bottom:24px;

}

.hero p{

    font-size:19px;

    color:var(--text);

    line-height:1.8;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

}

/* ==========================================
DASHBOARD
========================================== */

.dashboard{

    background:white;

    border-radius:26px;

    padding:28px;

    box-shadow:var(--shadow);

    border:1px solid var(--border);

}

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:28px;

}

.dashboard-header h3{

    font-size:24px;

}

.online{

    width:14px;

    height:14px;

    border-radius:50%;

    background:#22C55E;

}

.cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:28px;

}

.mini-card{

    background:var(--light);

    border-radius:16px;

    padding:20px;

}

.mini-card h4{

    color:var(--gray);

    font-size:14px;

    margin-bottom:10px;

}

.mini-card strong{

    font-size:26px;

    color:var(--dark);

}

.agenda{

    background:var(--light);

    border-radius:16px;

    padding:22px;

}

.agenda h4{

    margin-bottom:20px;

}

.item{

    display:flex;

    justify-content:space-between;

    padding:14px 0;

    border-bottom:1px solid var(--border);

    color:var(--text);

}

.item:last-child{

    border:none;

}

.ok{

    color:#16A34A;

    font-weight:bold;

}

.wait{

    color:#F59E0B;

    font-weight:bold;

}

/* ==========================================
   BENEFÍCIOS
========================================== */

.benefits{

    padding:110px 0;

    background:var(--light);

}

.section-title{

    text-align:center;

    max-width:700px;

    margin:0 auto 70px;

}

.section-title h2{

    font-size:42px;

    margin-bottom:20px;

    color:var(--dark);

}

.section-title p{

    font-size:18px;

    color:var(--gray);

    line-height:1.7;

}

.benefit-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.benefit-card{

    background:white;

    border-radius:20px;

    padding:35px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:.35s;

}

.benefit-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(15,23,42,.12);

}

.benefit-card h3{

    margin-bottom:18px;

    font-size:22px;

}

.benefit-card p{

    color:var(--gray);

    line-height:1.8;

}

/* ==========================================
   CTA
========================================== */

.cta{

    padding:120px 0;

    text-align:center;

    background:
    linear-gradient(135deg,#1294D2,#0E7CB0);

    color:white;

}

.cta h2{

    font-size:46px;

    margin-bottom:20px;

}

.cta p{

    font-size:20px;

    max-width:720px;

    margin:0 auto 40px;

    opacity:.95;

    line-height:1.7;

}

.cta .btn-primary{

    background:white;

    color:var(--primary);

    box-shadow:none;

}

.cta .btn-primary:hover{

    background:#F8FAFC;

}

/* ==========================================
   FOOTER
========================================== */

footer{

    padding:70px 0;

    background:white;

}

.footer{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer h3{

    font-size:28px;

    margin-bottom:20px;

}

.footer h4{

    margin-bottom:18px;

}

.footer p{

    color:var(--gray);

    line-height:1.8;

}

.footer a{

    display:block;

    color:var(--gray);

    margin-bottom:12px;

    transition:.3s;

}

.footer a:hover{

    color:var(--primary);

}

/* ==========================================
   RESPONSIVIDADE
========================================== */

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.dashboard{

max-width:650px;

margin:auto;

}

.benefit-grid{

grid-template-columns:repeat(2,1fr);

}

.footer{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.header .container{

height:75px;

}

nav{

display:none;

}

.hero{

padding-top:130px;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

text-align:center;

}

.cards{

grid-template-columns:1fr;

}

.resources-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

.cta{

padding:80px 0;

}

.cta h2{

font-size:34px;

}

.cta p{

font-size:18px;

}

.footer{

grid-template-columns:1fr;

text-align:center;

}

}

@media(max-width:500px){

.container{

width:92%;

}

.hero h1{

font-size:34px;

}

.badge{

font-size:14px;

}

.dashboard{

padding:20px;

}

.mini-card strong{

font-size:22px;

}

.btn-primary,
.btn-secondary{

padding:14px 20px;

font-size:15px;

}

}

/* ==========================================
   PARTE 3
   EFEITOS • ANIMAÇÕES • ACABAMENTO
========================================== */

/* Barra superior ao rolar */
.header.scrolled{

    background:rgba(255,255,255,.96);

    box-shadow:0 10px 30px rgba(15,23,42,.08);

    transition:.35s;

}

/* ===============================
   HERO
================================= */

.hero{

    position:relative;

    overflow:hidden;

}

/* Círculos decorativos */

.hero::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    background:radial-gradient(circle,#CFF5FF 0%,transparent 70%);

    right:-180px;

    top:-180px;

    z-index:0;

    opacity:.8;

}

.hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:radial-gradient(circle,#FFE2EB 0%,transparent 70%);

    left:-150px;

    bottom:-180px;

    z-index:0;

}

/* Conteúdo acima dos círculos */

.hero-grid{

    position:relative;

    z-index:2;

}

/* ===============================
   BADGE
================================= */

.badge{

    backdrop-filter:blur(14px);

    border:1px solid rgba(18,148,210,.18);

    box-shadow:0 8px 18px rgba(18,148,210,.10);

}

/* ===============================
   BOTÕES
================================= */

.btn-primary{

    position:relative;

    overflow:hidden;

}

.btn-primary::before{

    content:"";

    position:absolute;

    width:0;

    height:100%;

    left:0;

    top:0;

    background:rgba(255,255,255,.18);

    transition:.35s;

}

.btn-primary:hover::before{

    width:100%;

}

.btn-secondary:hover{

    border-color:var(--primary);

    color:var(--primary);

}

/* ===============================
   DASHBOARD
================================= */

.dashboard{

    transition:.45s;

}

.dashboard:hover{

    transform:translateY(-8px);

}

.mini-card{

    transition:.30s;

}

.mini-card:hover{

    background:white;

    transform:translateY(-4px);

}

.item{

    transition:.25s;

}

.item:hover{

    padding-left:10px;

}

/* ===============================
   BENEFÍCIOS
================================= */

.resources-card{

    position:relative;

    overflow:hidden;

}

.resources-card::before{

    content:"";

    position:absolute;

    width:100%;

    height:4px;

    left:0;

    top:0;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

}

.resources-card:hover h3{

    color:var(--primary);

}

/* ===============================
   CTA
================================= */

.cta{

    position:relative;

    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    right:-250px;

    top:-350px;

}

.cta::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-220px;

    bottom:-250px;

}

/* ===============================
   FOOTER
================================= */

footer{

    border-top:1px solid var(--border);

}

.footer a{

    width:fit-content;

}

.footer a:hover{

    transform:translateX(5px);

}

/* ===============================
   ANIMAÇÕES
================================= */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.fade-up.show{

    opacity:1;

    transform:none;

}

/* Hero */

.hero-text{

    animation:heroText .9s ease;

}

.dashboard{

    animation:heroDashboard 1s ease;

}

@keyframes heroText{

    from{

        opacity:0;

        transform:translateY(45px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

@keyframes heroDashboard{

    from{

        opacity:0;

        transform:translateX(70px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

/* Cards */

.benefit-card{

    animation:fadeCard .8s ease both;

}

.benefit-card:nth-child(2){

    animation-delay:.1s;

}

.benefit-card:nth-child(3){

    animation-delay:.2s;

}

.benefit-card:nth-child(4){

    animation-delay:.3s;

}

@keyframes fadeCard{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

/* Dashboard brilho */

.dashboard::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:26px;

    pointer-events:none;

    background:

    linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.25) 50%,
    transparent 70%
    );

    transform:translateX(-120%);

}

.dashboard:hover::before{

    animation:shine 1.1s linear;

}

@keyframes shine{

    to{

        transform:translateX(120%);

    }

}

/* Scroll personalizado */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#65717c00;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(var(--primary),var(--primary-dark));

    border-radius:20px;

}

::selection{

    background:var(--primary);

    color:white;

}

/* ==========================================
   FOOTER LOGO
========================================== */

.footer-brand{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand img{
    width: 140px;
    height: auto;
    object-fit: contain;
}

.footer-brand p{
    max-width: 340px;
    color: var(--gray);
    line-height: 1.8;
}

/* ==========================================
   CONTATO
========================================== */

.contact{
    padding: 120px 0;
    background: #F8FAFC;
}

.contact-center{
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.contact-center h2{
    font-size: 46px;
    margin: 20px 0;
}

.contact-center p{
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 18px;
}

/* ==========================================
   FOOTER
========================================== */

.footer{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 200px;
    flex-wrap: wrap;
    padding-bottom: 0px; /* reduz o espaço inferior */
}

.footer > div{
    text-align: center;
}

.footer-brand img{
    width: 140px;
    height: auto;
}

.footer h4{
    margin-bottom: 5px;
}

.footer a{
    display: block;
    margin-bottom: 5px;
}

/* ==========================================
   COPYRIGHT
========================================== */

.copyright{
    flex-basis: 100%;
    text-align: center;
    margin-top: -150px;      /* aproxima do conteúdo acima */
    padding-top: 10px;
    border-top: 1px solid #E5E7EB;
    color: var(--gray);
}

/* =====================================================
   PLANOS
===================================================== */

.plans{
    padding:120px 0;
    background:#F8FAFC;
}

.plans-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:70px;
}

.plan-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:45px 35px;
    transition:.35s;
    position:relative;
    display:flex;
    flex-direction:column;
    box-shadow:0 8px 30px rgba(15,23,42,.05);
}

.plan-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.plan-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.price{
    display:flex;
    align-items:flex-end;
    gap:6px;
    margin-bottom:18px;
}

.price span{
    font-size:20px;
    color:var(--gray);
}

.price strong{
    font-size:54px;
    font-weight:800;
    color:var(--primary);
    line-height:1;
}

.price small{
    color:var(--gray);
    margin-bottom:8px;
}

.plan-subtitle{
    color:var(--gray);
    line-height:1.7;
    margin-bottom:30px;
}

.plan-card ul{
    list-style:none;
    margin:0;
    padding:0;
    flex:1;
}

.plan-card li{
    margin-bottom:18px;
    color:#334155;
    position:relative;
    padding-left:28px;
}

.plan-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#22C55E;
    font-weight:700;
}

.plan-card .btn-primary,
.plan-card .btn-secondary{
    margin-top:35px;
    width:100%;
    text-align:center;
}

.featured{
    border:2px solid var(--primary);
    transform:scale(1.04);
    box-shadow:0 25px 55px rgba(37,99,235,.15);
}

.featured:hover{
    transform:scale(1.04) translateY(-8px);
}

.badge-plan{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:var(--primary);
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
}

/* =====================================================
   SOBRE
===================================================== */

.about{
    padding:120px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1.2fr .9fr;
    gap:80px;
    align-items:center;
}

.about h2{
    font-size:48px;
    margin:20px 0 30px;
}

.about p{
    color:var(--gray);
    line-height:1.9;
    margin-bottom:25px;
}

.about-card{
    display:grid;
    gap:25px;
}

.about-item{
    background:#F8FAFC;
    border:1px solid var(--border);
    border-radius:18px;
    padding:30px;
    transition:.3s;
}

.about-item:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.about-item h3{
    margin-bottom:12px;
    font-size:22px;
    color:var(--primary);
}

.about-item p{
    margin:0;
}

/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:1000px){

    .plans-grid{
        grid-template-columns:1fr;
    }

    .featured{
        transform:none;
    }

    .featured:hover{
        transform:translateY(-8px);
    }

    .about-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}

@media(max-width:600px){

    .plans,
    .about{
        padding:80px 0;
    }

    .about h2{
        font-size:34px;
    }

    .price strong{
        font-size:42px;
    }

}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: px;
    color: #000000;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}