/* CORES E VARIÁVEIS BASEADAS NA IMAGEM ORIGINAL */
:root {
    --bg-dark: #000000;
    --bg-card: #0a0a0a;
    --text-white: #ffffff;
    --text-blue: #00a896;
    --text-green: #00c4b0;
    --text-muted: #888888;
    --badge-bg: #04332e;
    --badge-color: #00e5cd;
    --btn-white-bg: #ffffff;
    --btn-white-text: #000000;
    --glass-bg: rgba(20, 25, 24, 0.4);
    --glass-border: rgba(0, 196, 176, 0.1);
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 7px;
}

/* BACKGROUND PONTILHADO (Dotted Grid) */
.dotted-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    pointer-events: none;
}

/* UTILITÁRIOS DE TEXTO */
.text-blue { color: var(--text-blue); }
.text-white { color: var(--text-white); }
.text-green { color: var(--text-green); }
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 13px;
}
.section-title strong { font-weight: 700; }
.center-btn { text-align: center; }

/* BOTÕES E BADGES */
.badge {
    display: inline-block;
    background-color: var(--badge-bg);
    color: var(--badge-color);
    padding: 2px 5px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(77, 240, 255, 0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-white {
    background-color: var(--btn-white-bg);
    color: var(--btn-white-text);
}
.btn-white:hover {
    background-color: #e0e0e0;
}

.btn-green-glow {
    background-color: transparent;
    color: var(--text-green);
    border: 1px solid var(--text-green);
    border-radius: 30px;
    padding: 3px 10px;
}
.btn-green-glow:hover {
    background-color: var(--text-green);
    color: #000;
}

.btn-green-neon {
    background-color: var(--text-green);
    color: #000;
    border-radius: 20px;
    padding: 3px 7px;
    font-size: 0.9rem;
    width: 100%;
}
.btn-green-neon:hover {
    box-shadow: 0 0 15px rgba(0, 196, 176, 0.5);
}

/* BOTÃO WHATSAPP PREMIUM */
a.btn-whatsapp,
a.btn-whatsapp:link,
a.btn-whatsapp:visited {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    letter-spacing: 0.3px;
}
a.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: #ffffff;
}
a.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
    background: linear-gradient(135deg, #2edb6e 0%, #17a88e 100%) !important;
    color: #ffffff !important;
}
a.btn-whatsapp:active {
    transform: translateY(0);
}

/* TOP LOGO */
.top-logo-container {
    text-align: center;
    padding: 10px 0 3px;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 7px 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background-color: var(--badge-bg);
    color: var(--badge-color);
    padding: 3px 7px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid rgba(77, 240, 255, 0.3);
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 7px;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 10px;
}

/* IMAGEM CENTRAL HERO (Com selos) */
.hero-image-container {
    margin-top: 17px;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    max-width: 700px;
    width: 100%;
}

.main-image {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/* VIDEO YOUTUBE RESPONSIVO */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #000;
}
.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-badge {
    position: absolute;
    background: #fff;
    padding: 3px 5px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.floating-badge.top-left {
    top: -7px;
    left: -10px;
}
.floating-badge.top-left img { width: 27px; margin-bottom: 2px; }
.floating-badge.top-left .stars { color: #FFB800; font-size: 0.8rem; }

.floating-badge.bottom-right {
    bottom: -7px;
    right: -7px;
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 2px;
}
.floating-badge.bottom-right img { width: 27px; border-radius: 8px; }

/* 4 VANTAGENS HORIZONTAIS */
.advantages-bar {
    background: rgba(10, 10, 10, 0.8);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 10px 0;
    margin-top: 13px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.advantage-item .icon {
    font-size: 1.5rem;
    color: #fff;
    background: #222;
    padding: 3px;
    border-radius: 8px;
}

.advantage-item h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.advantage-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* SECTION GLOBAL PADRÃO */
section {
    padding: 27px 0;
}

/* PROBLEMAS DO CONCORRENTE */
.problems-grid-8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 5px;
    margin-bottom: 13px;
}
.prob-card {
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 7px;
    border-radius: 12px;
}
.prob-card .icon { font-size: 1.5rem; display: block; margin-bottom: 3px; }
.prob-card h4 { margin-bottom: 2px; font-size: 1rem; }
.prob-card p { font-size: 0.8rem; color: var(--text-muted); }

/* BANNER CARCAÇA / DOBRADIÇAS */
.hinge-banner {
    background: linear-gradient(135deg, #0a151a 0%, #000000 100%);
    border: 1px solid #1a3340;
    border-radius: 20px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 10px 40px rgba(64, 160, 196, 0.1);
}
.hinge-text {
    flex: 1;
}
.hinge-text h2 {
    font-size: 2.2rem;
    margin: 5px 0;
    font-weight: 300;
}
.hinge-text p {
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.6;
}
.hinge-image {
    flex: 1;
    text-align: right;
}
.hinge-image img {
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* COMO PODEMOS AJUDAR (GLASSMORPHISM) */
.glass-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 13px 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}
.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3);
}

.number-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 7px;
}

.glass-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #40a0c4;
}

.glass-card p {
    font-size: 0.9rem;
    color: #ccc;
}

/* COMODIDADES CONCORRENTE */
.amenities-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}
.amenity-card {
    background: #111;
    padding: 8px;
    border-radius: 10px;
    border-left: 3px solid var(--text-green);
}
.amenity-card h4 { margin: 3px 0; }
.amenity-card p { font-size: 0.85rem; color: #888; }

/* ESCOLHA UMA OPÇÃO */
.options-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 13px;
}

.options-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.option-card {
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: 16px;
    padding: 7px;
    text-align: center;
}

.card-img-wrapper {
    margin-bottom: 7px;
    border-radius: 12px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-body p {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 7px;
}

/* CONHEÇA NOSSA LOJA */
.store-images {
    display: flex;
    gap: 3px;
    margin-bottom: 7px;
}
.store-images img {
    flex: 1;
    width: 33.33%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.7;
    transition: 0.3s;
}
.store-images img:hover { opacity: 1; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 3px;
}

/* Hidden sections utility */
.hidden-section { display: none !important; }
.dot {
    width: 8px;
    height: 8px;
    background: #444;
    border-radius: 50%;
}
.dot.active { background: #fff; }

/* FAQ SECTION */
.faq-section {
    padding: 20px 7px;
    background: #050505;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
details {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}
summary {
    padding: 7px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    list-style: none;
    position: relative;
}
summary::-webkit-details-marker {
    display: none;
}
summary::after {
    content: '+';
    position: absolute;
    right: 7px;
    font-size: 1.5rem;
    color: var(--text-green);
    top: 50%;
    transform: translateY(-50%);
}
details[open] summary::after {
    content: '-';
}
.faq-answer {
    padding: 0 7px 7px 7px;
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* MERCHAN BANNER */
.merchan-banner {
    background: linear-gradient(90deg, #050a0d 0%, #0d1a20 50%, #050a0d 100%);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #1a3340;
    border-bottom: 1px solid #1a3340;
}
.merchan-banner h2 {
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
}

/* AVALIAÇÕES GOOGLE */
.reviews-flex {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 13px;
}

.review-summary {
    text-align: center;
    min-width: 200px;
}

.review-cards-wrapper {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 3px;
}

.rev-card {
    background: #111;
    border: 1px solid #333;
    padding: 7px;
    border-radius: 12px;
    min-width: 300px;
}

.rev-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 3px;
    position: relative;
}

.rev-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.rev-info strong { display: block; font-size: 0.9rem; }
.rev-info span { font-size: 0.75rem; color: #888; }
.g-icon { position: absolute; right: 0; top: 0; }
.rev-text { font-size: 0.85rem; color: #ccc; }

/* RESPONSIVIDADE BÁSICA */
@media (max-width: 992px) {
    .advantages-grid, .glass-grid-3, .options-grid-2, .amenities-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-flex { flex-direction: column; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .advantages-grid, .glass-grid-3, .options-grid-2, .amenities-grid-4 {
        grid-template-columns: 1fr;
    }
    .hinge-banner { flex-direction: column; padding: 8px; }
    .hinge-text h2 { font-size: 1.5rem; }
    .hinge-image { text-align: center; }
    .store-images { flex-direction: column; }
    .store-images img { width: 100%; }
    .merchan-banner h2 { font-size: 1.4rem; }
    .floating-badge.top-left { left: 0; }
    .floating-badge.bottom-right { right: 0; }
}
