/* ==========================
   1C. TITOLS
========================== */

.title-section{

    font-size:var(--fs-xl);

    margin-bottom:1rem;

}

.subtitle-section{

    font-size:var(--fs-md);

    color:var(--color-secondary);

    margin-bottom:3rem;

    max-width:700px;

}

/* ==========================
   2C. BOTONS
========================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:var(--radius);

    transition:var(--transition);

    font-weight:600;

}

.btn-primary{

    background:var(--color-primary);

    color:var(--color-white);

}

.btn-primary:hover{

    opacity:.9;

}

.btn-outline{

    border:2px solid var(--color-primary);

}

.btn-outline:hover{

    background:var(--color-primary);

    color:white;

}

/* ==================================================
   3C. BADGES
================================================== */

.badge{

    display:inline-block;

    padding:.5rem 1rem;

    border-radius:999px;

    background:var(--color-light);

    font-size:var(--fs-xs);

    font-weight:600;

}

/* ==========================
   4C. CARDS
========================== */

.card{

    background:white;

    padding:2rem;

    border-radius:var(--radius);

    border:1px solid var(--color-border);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-6px);

}

.hover-lift{

    transition:var(--transition);

}

.hover-lift:hover{

    transform:translateY(-8px);

}

/* ==========================
   5C. HEADER
========================== */

.header{

    position:sticky;

    top:0;

    z-index:1000;

    background:white;

    border-bottom:1px solid var(--color-border);

}

.logo img{

    height:42px;

}

/* ==========================
   6C. HEADER CONTAINER
========================== */

.header-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:90px;

}

/* ==========================
   7C. HERO COMPONENTS
========================== */
.hero-badge{

    margin-bottom:1.5rem;

}

.hero-title{

    font-size:clamp(3rem,7vw,5.5rem);

    line-height:1.05;

    font-weight:700;

    margin-bottom:2rem;

}

.hero-text{

    font-size:1.2rem;

    color:var(--color-secondary);

    max-width:600px;

    line-height:1.8;

    margin-bottom:2.5rem;

}

.hero-buttons{

    display:flex;

    gap:1rem;

    flex-wrap:wrap;

}