/* ========================================== */
/* 1. CONFIGURAÇÕES GERAIS E VARIÁVEIS */
/* ========================================== */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --beige-bg: #C5B086;
    --gray-light: #B2B2B2;
    --gray-dark: #333333;
    --gray-text: #E0E0E0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}

/* ========================================== */
/* 2. NAVBAR (HEADER SLIM) */
/* ========================================== */
.navbar {
    height: 80px;
    background-color: var(--black);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 0.6;
}

/* ========================================== */
/* 3. HOME - HERO SECTION */
/* ========================================== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-image img {
    width: 100%;
    max-width: 400px; /* Ajustado para o coração não ficar gigante */
    height: auto;
}

.hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #E0E0E0;
    color: var(--black);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    transition: var(--transition);
}

/* ========================================== */
/* 4. CARROSSEL DE SERVIÇOS */
/* ========================================== */
.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.service-card {
    min-width: 280px;
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ========================================== */
/* 5. QUEM SOMOS */
/* ========================================== */
.bg-beige {
    background-color: var(--beige-bg);
}

.quem-somos-main {
    background-color: var(--beige-bg);
    color: var(--black);
    padding: 80px 0;
}

.qs-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

.qs-title {
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 900;
    line-height: 0.8;
    margin-bottom: 40px;
}

.img-stack {
    width: 100%;
    border-radius: 30px;
    box-shadow: 15px 15px 0px var(--black);
    margin-bottom: 30px;
}

/* ========================================== */
/* 6. TOTÊM RETRÔ */
/* ========================================== */
.gray-section {
    background-color: var(--gray-light);
    color: var(--black);
    padding: 60px 0;
}

.totem-section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.totem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.totem-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

/* Tamanho fixo para não bugar no Hostinger */
.totem-img {
    width: 250px !important;
    height: 250px !important;
    object-fit: cover;
    border-radius: 5px;
    background-color: #808080;
}

.dark-info-section {
    background-color: var(--gray-dark);
    padding: 80px 0;
}

.dark-info-section .container {
    max-width: 1100px !important;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.img-main {
    width: 100% !important;
    height: auto;
    border-radius: 5px;
}

.info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.colored-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: right;
}

.orange { color: #FF5C35; }
.yellow { color: #FFB800; }
.cyan { color: #00D1FF; }

.description-text {
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.totem-btn {
    align-self: flex-end;
}

/* ========================================== */
/* 7. FOOTER */
/* ========================================== */
.footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    background-color: var(--black);
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.footer p {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

/* ========================================== */
/* 8. RESPONSIVIDADE GERAL */
/* ========================================== */
@media (max-width: 992px) {
    .hero-grid, .qs-grid, .info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image { order: -1; }
    .totem-grid { grid-template-columns: 1fr 1fr; }
    .info-text, .colored-title, .description-text { align-items: center; text-align: center; }
    .totem-btn { align-self: center; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .totem-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 34px; }
    .service-card { min-width: 85vw; }
}

/* ========================================== */
/* 9. PÁGINA CÂMERAS ANALÓGICAS (ISOLAMENTO V2) */
/* ========================================== */
.analog-v2-body {
    background-color: #D9D9D9;
    color: #000;
}

/* Espaço pro cabeçalho */
.analog-v2-wrapper {
    padding-top: 100px; 
    padding-bottom: 60px;
}

.analog-v2-script-title {
    font-family: 'Pacifico', cursive;
    font-size: 58px;
    color: #E60000;
    text-align: center;
    margin-bottom: 30px;
}

.analog-v2-intro-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 120px;
}

.analog-v2-intro-img-box {
    flex: 1;
    max-width: 350px;
}

.analog-v2-img-fluid {
    width: 100% !important;
    max-width: 350px;
    height: auto;
    border-radius: 5px;
}

.analog-v2-intro-text-box {
    flex: 1.5;
}

.analog-v2-intro-text-box p {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.analog-v2-catalog-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

/* Foto do Casal descida para harmonia */
.analog-v2-col-left {
    flex: 1;
    max-width: 280px;
    margin-top: 60px; 
}

.analog-v2-photo-couple {
    width: 100% !important;
    max-width: 280px;
    border-radius: 5px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.1);
}

.analog-v2-col-center {
    flex: 2;
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.analog-v2-pkg-title {
    font-family: 'Pacifico', cursive;
    font-size: 32px;
    margin-bottom: 10px;
}

.analog-v2-red { color: #E60000; }
.analog-v2-gold { color: #A6814C; }
.analog-v2-cyan { color: #00BFFF; }

.analog-v2-list {
    list-style-type: disc !important; /* Força os pontos apenas aqui */
    display: inline-block;
    text-align: left;
    padding-left: 20px;
}

.analog-v2-list li {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.analog-v2-col-right {
    flex: 1;
    max-width: 280px;
    display: flex;
    flex-direction: column;
}

/* Foto da Caixa sobe MUITO */
.analog-v2-photo-box {
    margin-top: -240px;
    margin-bottom: 200px;
    width: 100% !important;
    max-width: 280px;
    border-radius: 5px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.1);
}

/* Foto Amarela desce */
.analog-v2-photo-yellow {
    margin-top: 150px;
    width: 100% !important;
    max-width: 280px;
    border-radius: 5px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.1);
}

/* Espaço do botão pro footer */
.analog-v2-btn-area {
    text-align: center;
    margin-top: 120px;
    margin-bottom: 120px; 
}

.analog-v2-btn-gold {
    background-color: #B89053;
    color: #000;
    font-size: 16px;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 1100px) {
    .analog-v2-intro-grid, .analog-v2-catalog-grid {
        flex-direction: column;
        align-items: center;
    }
    .analog-v2-col-left, .analog-v2-photo-box, .analog-v2-photo-yellow {
        margin-top: 0;
        margin-bottom: 20px;
    }
}