:root {
    --primary-blue: #0052cc;
    --secondary-blue: #004399;
    --third-blue: #003366;
    --gray-gray: #f2f2f2;

    --white: #ffffff;
    --white-light: #f0f5ff;
    --white-dark: #e6ebff;

    --text-dark: #ffffff;
    --text-light: #f0f5ff;

    --border-color: #004399;

    --success-color: #ffffff;

    --black: #000000;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--gray-gray);
    color: #1f2937;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}
/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    background-color: var(--primary-blue);
    border-bottom: 2px solid var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0, 82, 204, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-name {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: bold;
}

/* MENU */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white-light);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--white-light);
}

/* BOTÃ•ES */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

.btn-primary,
.btn-download,
.btn-saibamais {
    background: linear-gradient(135deg, var(--white), var(--white-light));
    color: var(--primary-blue) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover,
.btn-download:hover,
.btn-saibamais:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

/* SOBRE */
.sobre {
    padding: 80px 20px;
    background-color: var(--secondary-blue);
}

.sobre h2 {
    color: var(--white);
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.sobre-text {
    max-width: 850px;
    margin: 0 auto;
    color: var(--white-light);
    line-height: 1.9;
    font-size: 1.1rem;
}

/* PROGRAMAS */
.programas {
    padding: 80px 20px;
    background-color: #eef3fb;
}

.programas h2 {
    text-align: center;
    color: var(--third-blue);
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #475569;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.programas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* CARDS */
.programa-card {
    background-color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.programa-card:hover {
    transform: translateY(-10px);
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
}

/* ÃCONES */
.programa-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--white), var(--white-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.programa-card h3 {
    color: var(--third-blue);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.programa-subtitle {
    text-align: center;
    color: #475569;
    margin-bottom: 1.2rem;
    font-weight: bold;
}

.programa-description {
    margin-top: 1rem;
}

.programa-description ul {
    list-style: none;
}

.programa-description li {
    margin-bottom: 0.8rem;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.programa-description i {
    color: var(--primary-blue);
    margin-top: 3px;
}

/* CONTATO */
.contato {
    padding: 80px 20px;
    background-color: var(--secondary-blue);
}

.contato h2 {
    text-align: center;
    color: var(--white);
    font-size: 2.3rem;
}

.contato-content {
    margin-top: 3rem;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    background-color: var(--third-blue);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--white);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.info-item h4 {
    color: var(--white);
    margin-bottom: 0.8rem;
}

.info-item p,
.info-item a {
    color: var(--white-light);
    text-decoration: none;
}

.info-item a:hover {
    color: var(--white-light);
}

/* FOOTER */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

/* LINKS */
a {
    color: var(--white-light);
}

a:hover {
    color: var(--white);
}

/* REMOVE UNDERLINES */
.programa-link,
.programa-link:hover,
.programa-link:focus,
.programa-link:visited {
    text-decoration: none !important;
    color: inherit;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .programas-grid {
        grid-template-columns: 1fr;
    }

    .contato-info {
        grid-template-columns: 1fr;
    }

    .brand-name {
        display: none;
    }
}

@media (max-width: 480px) {

    .hero {
        padding: 70px 20px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .programa-card,
    .info-item {
        padding: 1.5rem;
    }

    .logo {
        height: 38px;
    }
}

/* Ajustes da página inicial */
.home-hero {
    padding: 90px 20px;
    text-align: left;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr);
    gap: 3rem;
    align-items: center;
}

.hero-kicker {
    display: inline-block;
    color: var(--white-light);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.hero-content h1 {
    max-width: 760px;
}

.hero-content p {
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: var(--white) !important;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.hero-logo {
    justify-self: center;
    width: min(280px, 100%);
    aspect-ratio: 1;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.hero-logo img {
    max-width: 100%;
    height: auto;
}

.sobre-layout {
    display: grid;
    grid-template-columns: 1fr;
}

.sobre-text p + p {
    margin-top: 1rem;
}

.programa-description {
    flex: 1;
}

.btn-download {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 1.5rem;
}

.hamburger {
    background: transparent;
    border: 0;
}

@media (max-width: 768px) {
    .home-hero {
        padding: 70px 20px;
        text-align: center;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-logo {
        display: none;
    }
}

/* Página SicLoja Online */
.product-hero .hero-content h1 {
    margin-bottom: 1rem;
}

.product-preview {
    width: min(360px, 100%);
    aspect-ratio: 4 / 3;
    padding: 0.75rem;
    overflow: hidden;
}

.product-preview img,
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.product-overview {
    background-color: var(--secondary-blue);
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: center;
}

.product-image {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.product-access .btn-download,
.info-item .btn-download {
    color: var(--primary-blue) !important;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-grid {
    max-width: 760px;
    margin: 0 auto;
}

.price-card {
    min-height: 240px;
}

.featured-price {
    border-color: rgba(255, 255, 255, 0.55);
}

.price-value {
    display: block;
    color: var(--white);
    font-size: 1.35rem;
    margin-top: 1rem;
}

.payment-section {
    background-color: var(--secondary-blue);
}

.payment-box {
    text-align: center;
}

.video-grid {
    max-width: 420px;
    margin: 0 auto;
}

.video-card .programa-icon {
    color: #cc1f1a;
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-image {
        order: 2;
    }
}
/* Página LeChef Mobile */
.mobile-preview {
    aspect-ratio: 3 / 4;
    max-height: 420px;
}

.mobile-image {
    aspect-ratio: 4 / 3;
}

.mobile-pricing {
    max-width: 1040px;
}

.demo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 860px;
    margin: 0 auto;
}

.demo-grid .programa-card .programa-description {
    min-height: 120px;
}