/* RESET DE ESTILOS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --purple-dark: #1a1459;
    --purple-light: #3c357a;
    --gray-text: #666;
    --border-color: #eaeaea;
    --blue-dark: #001e3d;
    --blue-nav: #002c54;
    --yellow: #f1b813;
    --yellow-hover: #d6a10f;
    --text-color: #4a4a4a;
    --bg-light: #f9f9f9;
}

body {
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER & NAVBAR */
.main-header {
    background-color: var(--blue-nav);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 22px;
}

.logo-bold {
    font-weight: bold;
}

.logo-sub {
    font-size: 11px;
    display: block;
    letter-spacing: 2px;
    margin-top: -5px;
    opacity: 0.8;
}

.navbar {
    background-color: var(--purple-light);
}

.nav-item a {
    color: #dfdeef;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-item a.active {
    color: white;
    border-bottom: 2px solid #ffaa00;
}

.nav-item .btn-top-lock {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 15px;
    border-radius: 4px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav-item .btn-top-lock i {
    margin-right: 5px;
    color: #ffaa00;
}

/* HERO SECTION */
.hero {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-content .subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* BOTÕES */
.btn-yellow {
    background-color: var(--yellow);
    color: var(--blue-dark);
    text-decoration: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.3s;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-yellow:hover {
    background-color: var(--yellow-hover);
}

/* GRID LAYOUTS */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-2-reverse .text-block {
    order: 2;
}
.grid-2-reverse .img-block {
    order: 1;
}

/* QUEM SOMOS */
.quem-somos {
    padding: 60px 0;
}

.section-tag {
    color: #31629c;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

h2 {
    color: var(--blue-dark);
    font-size: 28px;
    margin-bottom: 20px;
}

.quem-somos p {
    margin-bottom: 15px;
    font-size: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #31629c;
    font-size: 20px;
}

.feature-item p {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

.img-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: block;
}

/* BANNER LAZER */
.lazer-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.overlay-blue {
    background-color: rgba(0, 30, 61, 0.9);
    color: #fff;
    padding: 60px;
    width: 45%;
}

.icon-big {
    font-size: 36px;
    color: var(--yellow);
    margin-bottom: 15px;
    display: block;
}

.section-tag-light {
    color: var(--yellow);
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.lazer-banner h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* DETALHES LAZER BAR */
.detalhes-lazer {
    padding: 40px 0;
    background-color: #fff;
}

.center-title {
    text-align: center;
    text-transform: uppercase;
    color: var(--blue-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.lazer-main-img img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    display: block;
}

.lazer-features-bar {
    display: flex;
    justify-content: space-around;
    background-color: var(--bg-light);
    padding: 20px;
    border: 1px solid #eee;
    border-top: none;
}

.lazer-features-bar div {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-dark);
}

.lazer-features-bar i {
    color: #2da1db;
    margin-right: 8px;
}

/* ESTRUTURAS ADICIONAIS (LINHAS ALTERNADAS) */
.section-row {
    padding: 20px 0;
}

.bg-gray {
    background-color: var(--bg-light);
}

.section-tag-red { color: #d9534f; font-weight: bold; font-size: 13px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.section-tag-green { color: #5cb85c; font-weight: bold; font-size: 13px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.section-tag-blue-dark { color: #002c54; font-weight: bold; font-size: 13px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.section-tag-purple { color: #8e44ad; font-weight: bold; font-size: 13px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.section-tag-blue-light { color: #2da1db; font-weight: bold; font-size: 13px; text-transform: uppercase; display: block; margin-bottom: 10px; }

/* FOOTER CALL TO ACTION */
.footer-cta {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
}

.text-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.footer-cta h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-cta p {
    margin-bottom: 35px;
    opacity: 0.9;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--blue-dark);
}

/* FOOTER BOTTOM */

.footer-banner-container {
    padding: 0 20px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-banner {
    background: linear-gradient(135deg, #241d4f 0%, #3c357a 100%);
    border-radius: 8px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.2);
}

.footer-text .dev-by {
    font-size: 11px;
    color: #aaa5df;
    display: block;
    margin-bottom: 2px;
}

.footer-text h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
}

.footer-text .orange-text {
    color: #f39c12;
}

.footer-text p {
    font-size: 12px;
    color: #ccc8f1;
    margin-top: 2px;
}

.btn-footer {
    border: 1px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s, color 0.3s;
}

.btn-footer:hover {
    background-color: var(--purple-dark);
    color: #ffffff;
    text-decoration: none;
}

/* RESPONSIVIDADE (MOBILE-FRIENDLY) */
@media (max-width: 768px) {
    .grid-2, .grid-2-reverse {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .grid-2-reverse .text-block { order: 1; }
    .grid-2-reverse .img-block { order: 2; }

    .logo-menu {
        flex-direction: column;
        gap: 15px;
    }

    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .overlay-blue {
        width: 100%;
        padding: 40px 20px;
    }

    .lazer-features-bar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .text-center-mobile {
        text-align: center;
    }
}