/* PROJETO: LUNARE - Seguros & Consórcios
   DESENVOLVIDO POR: JG SOFT (2026)
   ESTILO: Premium / Minimalista / Responsivo
*/

/* 1. CONFIGURAÇÕES GERAIS & VARIÁVEIS */
:root {
    --primary: #000000;
    --secondary: #1a1a1a;
    --accent: linear-gradient(45deg, #FFC107, #E91E63, #9C27B0); /* Inspirado na borda do logo */
    --text-main: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --gray-bg: #f8f9fa;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* 2. HEADER & NAVEGAÇÃO */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* 3. HERO SLIDER (BANNER) */
.hero-slider {
    height: 90vh; /* Esta é a linha que define a altura */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.slide-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

/* 4. BOTÕES CTA */
.btn-cta, .btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.4);
    color: var(--white);
}

/* 5. SEÇÕES (SOBRE / CONSÓRCIOS) */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.section-title span {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
}

/* 6. FORMULÁRIO DE CONTATO */
.contato {
    background-color: var(--gray-bg);
}

form {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.05);
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fdfdfd;
    font-family: var(--font-main);
}

input:focus, textarea:focus {
    outline: none;
    border-color: #E91E63;
}

/* 7. FOOTER PROFISSIONAL */
.main-footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.footer-col p, .footer-col li {
    margin-bottom: 15px;
    font-size: 14px;
}

.social-links a {
    font-size: 18px;
    margin-right: 20px;
    color: var(--white);
}

.footer-bottom {
    background: #080808;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    font-size: 12px;
}

/* 8. ELEMENTOS FLUTUANTES */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
}

.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 35px;
    background: var(--white);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
}

/* 9. RESPONSIVIDADE */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .slide-content h2 { font-size: 2.5rem; }
    .slide-content p { font-size: 1.1rem; }
    nav ul { display: none; } /* Idealmente aqui entraria um menu Hamburguer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    form { padding: 30px; }
    .hero-slider { height: 70vh; }
}
/* PROJETO: LUNARE - Seguros & Consórcios
   DESENVOLVIDO POR: JG SOFT (2026)
   ESTILO: Premium com Header em Degradê
*/

/* 1. VARIÁVEIS E CONFIGURAÇÕES */
:root {
    --primary: #000000;
    --white: #ffffff;
    /* Degradê idêntico à borda do logotipo */
    --lunare-gradient: linear-gradient(45deg, #FFC107, #f50057, #9C27B0); 
    --text-main: #333333;
    --text-light: #777777;
    --transition: all 0.4s ease;
    --font-main: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* 2. HEADER EM DEGRADÊ (ATUALIZADO) */
header {
    background: var(--lunare-gradient);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.2));
}

/* Links do Menu em Branco para Contraste */
nav ul { display: flex; gap: 30px; align-items: center; }
nav ul li a {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

nav ul li a:hover::after { width: 100%; }

/* 3. HERO SLIDER (Banner Principal) */
.hero-slider { height: 85vh; margin-top: 0; }
.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Overlay escuro para destacar o texto sobre as fotos */
.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.slide-content h2 { font-size: 3.5rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; }
.slide-content p { font-size: 1.3rem; margin-bottom: 30px; font-weight: 300; }

/* 4. BOTÕES CTA */
.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    background: var(--primary);
    color: var(--white);
}

/* 5. SEÇÕES GERAIS */
section { padding: 100px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; font-weight: 700; }
.section-title span {
    display: block; width: 60px; height: 4px;
    background: var(--lunare-gradient);
    margin: 15px auto 0;
}

/* 6. FOOTER PROFISSIONAL */
.main-footer { background-color: #0a0a0a; color: #999; padding: 80px 0 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; padding-bottom: 50px; }
.footer-col h3 { color: var(--white); margin-bottom: 25px; }
.footer-bottom { background: #000; padding: 25px 0; border-top: 1px solid #111; text-align: center; font-size: 12px; }

/* 7. ELEMENTOS FLUTUANTES */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background-color: #25d366; color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* 8. RESPONSIVIDADE */
@media (max-width: 768px) {
    .slide-content h2 { font-size: 2.2rem; }
    nav ul { display: none; } /* Esconder menu no mobile para simplificar */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}