@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background-color: #fafbfc;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 0;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #111111 0%, #1a252f 100%);
    color: #fff;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 90px 0;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hero .logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero .logo span {
    color: #e74c3c;
}

.hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 17px;
    margin-bottom: 40px;
    opacity: 0.85;
}

.hero-text p:first-of-type {
    margin-bottom: 16px;
}

.hero-trust {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e74c3c;
    opacity: 1;
    margin-bottom: 28px !important;
    font-weight: 600;
}

/* BOTÕES WHATSAPP */
.btn-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebd59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp-large {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-whatsapp-large:hover {
    background-color: #1ebd59;
    transform: scale(1.03);
}

/* ABOUT SECTION */
.about {
    background-color: #fff;
    text-align: center;
    border-bottom: 1px solid #f0f3f4;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
}

/* PRODUCTS SHOWCASE */
.products {
    background-color: #f8f9fa;
}

.products h2 {
    text-align: center;
    font-size: 32px;
}

.products .subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.product-img-box {
    background: #fff;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #f1f2f6;
    padding: 15px;
}

.product-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.08);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.product-info p {
    font-size: 14px;
    color: #666;
}

.product-note {
    font-size: 12.5px !important;
    color: #999 !important;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

/* SEDAS DE VIDRO - BLOCO DE DESTAQUE */
.featured-sedas {
    background: linear-gradient(135deg, #1a252f 0%, #111111 100%);
    color: #fff;
}

.featured-sedas-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 90px 0;
}

.featured-sedas-image {
    flex: 1;
}

.featured-sedas-image img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.featured-sedas-text {
    flex: 1;
}

.featured-sedas-text .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e74c3c;
    margin-bottom: 16px;
}

.featured-sedas-text h2 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.featured-sedas-text p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 32px;
}

/* CUSTOMIZATION */
.customization {
    background-color: #fff;
}

.customization h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.customization .section-desc {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: #fdfdfd;
    border: 2px solid #f1f2f6;
    padding: 40px;
    border-radius: 12px;
}

.benefit-item h4 {
    font-size: 20px;
    color: #1a252f;
    margin-bottom: 25px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
    display: inline-block;
}

.benefit-item ul {
    list-style: none;
}

.benefit-item ul li {
    margin-bottom: 16px;
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.benefit-item ul li::before {
    content: "➔";
    position: absolute;
    left: 0;
    color: #e74c3c;
}

.customization-cta {
    text-align: center;
    margin-top: 50px;
}

.customization-cta .btn-whatsapp {
    background-color: #1a252f;
    box-shadow: 0 4px 15px rgba(26, 37, 47, 0.25);
}

.customization-cta .btn-whatsapp:hover {
    background-color: #0f1419;
    box-shadow: 0 6px 20px rgba(26, 37, 47, 0.35);
}

/* FAQ */
.faq {
    background-color: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-item h4 {
    font-size: 17px;
    color: #1a252f;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 14.5px;
    color: #666;
}

/* LOJA MULTIMARCAS (KBHS) */
.multimarcas {
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #f0f3f4;
}

.multimarcas .eyebrow-dark {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e74c3c;
    margin-bottom: 16px;
}

.multimarcas h2 {
    font-size: 32px;
    max-width: 720px;
    margin: 0 auto 20px auto;
}

.multimarcas .section-desc {
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 16px;
    text-align: center;
}

.multimarcas-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.multimarcas-stats strong {
    display: block;
    font-size: 30px;
    color: #e74c3c;
    line-height: 1;
    margin-bottom: 6px;
}

.multimarcas-stats span {
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.keyword-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 780px;
    margin: 0 auto 44px auto;
}

.keyword-chips span {
    background-color: #f1f2f6;
    color: #1a252f;
    padding: 9px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.multimarcas-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-kbhs {
    background-color: #1a252f;
    box-shadow: 0 4px 15px rgba(26, 37, 47, 0.25);
}

.btn-kbhs:hover {
    background-color: #0f1419;
    box-shadow: 0 6px 20px rgba(26, 37, 47, 0.35);
    transform: scale(1.03);
}

.multimarcas-note {
    margin-top: 16px;
    font-size: 13px;
    color: #999;
}

/* CTA WHATSAPP */
.cta-whatsapp-section {
    background: linear-gradient(135deg, #1a252f 0%, #111111 100%);
    color: #fff;
    text-align: center;
}

.cta-whatsapp-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-whatsapp-section p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 16px auto;
    opacity: 0.85;
}

.cta-trust {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #25d366;
    opacity: 1;
    font-weight: 700;
    margin-bottom: 30px !important;
}

/* FOOTER */
footer {
    background-color: #0f1419;
    color: #5d6d7e;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
    border-top: 1px solid #1a252f;
}

.footer-links {
    margin-top: 8px;
}

.footer-links a {
    color: #8a97a3;
    text-decoration: none;
}

.footer-links a:hover {
    color: #e74c3c;
}

/* WHATSAPP FLUTUANTE */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background-color: #25d366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.wa-float:hover {
    transform: scale(1.08);
}

.wa-float svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

/* MOBILE RESPONSIVE */
@media(max-width: 900px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
        padding: 50px 0;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero-image {
        order: -1;
        margin-bottom: 20px;
    }
    .container {
        padding: 40px 0;
    }
    .btn-whatsapp-large {
        font-size: 16px;
        padding: 16px 25px;
    }
    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }
    .wa-float svg {
        width: 26px;
        height: 26px;
    }
    .featured-sedas-layout {
        flex-direction: column;
        text-align: center;
        padding: 50px 0;
    }
    .featured-sedas-text h2 {
        font-size: 26px;
    }
    .multimarcas h2 {
        font-size: 24px;
    }
    .multimarcas-stats {
        gap: 32px;
    }
}