/* 
   SHOMER SEGURANÇA - STYLE.CSS
    */

:root {
    --primary: #0a1628;
    --primary-light: #132240;
    --accent: #c8962e;
    --accent-hover: #b8862a;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --dark: #0d1b2a;
    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;
    --font: 'Inter', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 2px solid var(--accent);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.topbar-left a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    transition: var(--transition);
}
.topbar-left a:hover { color: var(--accent); }
.topbar-left i { margin-right: 6px; }
.topbar-right a {
    color: var(--white);
    margin-left: 12px;
    font-size: 16px;
    transition: var(--transition);
}
.topbar-right a:hover { color: var(--accent); }

/* ===== HEADER / NAV ===== */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img { height: 55px; }

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}
.nav-list > li { position: relative; }
.nav-list a {
    text-decoration: none;
    color: var(--primary);
    padding: 10px 15px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    border-radius: 6px;
}
.nav-list > li > a:hover { background: var(--gray-100); color: var(--accent); }

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 0;
}
.dropdown-menu a:hover { background: var(--gray-100); color: var(--accent); }

.btn-nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
}
.btn-nav-cta:hover { background: var(--accent-hover) !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}
.hero-slider {
    position: relative;
    height: 100%;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    max-width: 650px;
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.hero-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: var(--accent); border-color: var(--accent); }

.hero-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    transform: translateY(-50%);
    pointer-events: none;
}
.hero-arrow {
    pointer-events: all;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    width: 50px; height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,150,46,0.3); }
.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
}
.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.highlight { color: var(--accent); }

/* ===== MASCOTE SECTION ===== */
.section-mascote { background: var(--gray-100); }
.mascote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.mascote-text h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--primary); }
.mascote-text p { margin-bottom: 20px; color: var(--gray-600); }
.mascote-image img { max-width: 100%; height: auto; }

/* ===== SERVIÇOS GRID ===== */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.servico-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}
.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.servico-img {
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}
.servico-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.servico-card:hover .servico-img img { transform: scale(1.05); }
.servico-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.1rem;
    color: var(--primary);
}
.servico-card p {
    padding: 0 20px 15px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}
.servico-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
    border-top: 1px solid var(--gray-200);
}

/* ===== STATS ===== */
.section-stats {
    background: var(--primary);
    color: var(--white);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}
.stat-number { font-size: 2.8rem; font-weight: 900; margin-bottom: 5px; }
.stat-label { font-size: 1rem; opacity: 0.85; }

/* ===== SEGMENTOS ===== */
.segmentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.segmento-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}
.segmento-item:hover { border-color: var(--accent); transform: translateY(-4px); }
.segmento-item i { font-size: 2rem; color: var(--accent); }
.segmento-item span { font-weight: 500; font-size: 14px; color: var(--gray-800); }
.segmentos-cta { text-align: center; }

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
    display: block;
    height: 220px;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 25px; }
.blog-date { font-size: 13px; color: var(--accent); font-weight: 500; }
.blog-card-body h3 { margin: 10px 0; font-size: 1.15rem; }
.blog-card-body h3 a { color: var(--primary); text-decoration: none; transition: var(--transition); }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { color: var(--gray-600); font-size: 14px; margin-bottom: 15px; }
.blog-readmore { color: var(--accent); font-weight: 600; text-decoration: none; font-size: 14px; }
.blog-readmore:hover { color: var(--accent-hover); }
.blog-cta { text-align: center; }

/* ===== CTA SECTION ===== */
.section-cta { background: var(--gray-100); }
.cta-box {
    text-align: center;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}
.cta-box h2 { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.cta-box p { color: var(--gray-600); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    color: var(--white);
}
.page-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,22,40,0.85), rgba(10,22,40,0.5));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; }
.page-hero-content p { font-size: 1.15rem; opacity: 0.9; max-width: 600px; }

/* ===== PAGE CONTENT (Serviços) ===== */
.page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.page-text h3 { font-size: 1.4rem; color: var(--accent); margin: 30px 0 15px; }
.page-text p { margin-bottom: 20px; color: var(--gray-600); }
.page-text ul { list-style: none; margin-bottom: 20px; }
.page-text ul li { padding: 10px 0; padding-left: 25px; position: relative; color: var(--gray-600); }
.page-text ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    position: absolute; left: 0;
}
.page-image img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); }
.page-content-single { max-width: 850px; margin: 0 auto; }

/* ===== FORM ===== */
.form { max-width: 650px; }
.form-page .form { max-width: 700px; margin: 0 auto; }
.form-center { margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--primary); font-size: 14px; }
.required { color: #dc3545; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,150,46,0.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    transition: var(--transition);
}
.checkbox-item:hover { border-color: var(--accent); }
.checkbox-item input { width: auto; }
.form-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--gray-100);
    border-radius: 12px;
}
.form-success i { font-size: 4rem; color: #28a745; margin-bottom: 20px; }
.form-success h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--primary); }
.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

/* ===== COTAÇÃO PAGE ===== */
.cotacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.cotacao-info h2 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; }
.cotacao-info p { color: var(--gray-600); margin-bottom: 15px; }
.cotacao-img { max-width: 100%; margin: 30px 0; border-radius: 12px; }
.cotacao-info h3 { margin: 30px 0 15px; font-size: 1.3rem; }

/* ===== BLOG FULL ===== */
.blog-card-full {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-bottom: 30px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}
.blog-card-full .blog-card-img { height: 100%; min-height: 220px; }

/* ===== POST ===== */
.post-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
}
.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray-600);
}
.post-author { color: var(--accent); font-weight: 600; }
.post-main h1 { font-size: 2.2rem; margin-bottom: 25px; color: var(--primary); }
.post-featured-img { width: 100%; border-radius: 12px; margin-bottom: 30px; }
.post-content { line-height: 1.9; color: var(--gray-800); }
.post-content h2, .post-content h3 { margin: 30px 0 15px; color: var(--primary); }
.post-content p { margin-bottom: 20px; }
.post-sidebar { position: sticky; top: 100px; align-self: start; }
.post-sidebar h3 { margin-bottom: 20px; color: var(--primary); }
.post-recent-list { list-style: none; margin-bottom: 30px; }
.post-recent-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}
.post-recent-list a { text-decoration: none; color: inherit; }
.recent-title { display: block; font-weight: 500; color: var(--primary); margin-bottom: 3px; }
.recent-date { font-size: 13px; color: var(--gray-600); }
.sidebar-cta {
    padding: 25px;
    background: var(--gray-100);
    border-radius: 12px;
    text-align: center;
}
.sidebar-cta h3 { margin-bottom: 10px; }
.sidebar-cta p { font-size: 14px; color: var(--gray-600); margin-bottom: 20px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 60px; height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo { height: 50px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; opacity: 0.8; margin-bottom: 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); }

.footer h4 { font-size: 1rem; margin-bottom: 20px; color: var(--accent); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.8;
}
.footer-contact i { width: 20px; color: var(--accent); margin-right: 8px; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-lg);
    }
    .nav.open { display: block; }
    .nav-list {
        flex-direction: column;
        padding: 20px;
    }
    .nav-list > li { width: 100%; }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    .dropdown.open .dropdown-menu { display: block; }

    .hero { height: 70vh; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 1rem; }

    .mascote-grid,
    .cotacao-grid,
    .page-content { grid-template-columns: 1fr; }
    .mascote-image { display: none; }

    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
    .section { padding: 50px 0; }
    .section-header h2 { font-size: 1.7rem; }

    .form-row { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr; }

    .blog-card-full { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .post-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 30px; }

    .topbar-left a { display: block; margin-bottom: 5px; }
    .topbar-inner { flex-direction: column; align-items: flex-start; }

    .servicos-grid { grid-template-columns: 1fr; }
    .segmentos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.5rem; }
    .btn-lg { padding: 14px 28px; font-size: 15px; }
    .hero { height: 60vh; }
}