/* 
   SpyGram Insight — Style Sheet
   Estilo Visual: Premium Investigativo
   Cores: Azul-marinho (#0B192C), Dourado suave (#D4AF35), Creme (#F9F6EE)
   Tipografia: Elegante e sofisticada (Serif/Sans-serif clássico offline)
*/

:root {
    --primary-color: #0B192C;
    --secondary-color: #D4AF35;
    --bg-color: #F9F6EE;
    --text-color: #0B192C;
    --text-light: #5A6A85;
    --white: #FFFFFF;
    --border-color: rgba(11, 25, 44, 0.1);
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Helvetica Neue', 'Arial', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.max-w-3xl {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.main-header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    color: var(--white);
    font-size: 22px;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu .btn-cta-nav {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.nav-menu .btn-cta-nav:hover {
    background-color: #C59B27;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    color: var(--white);
    text-align: center;
}

.badge {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 6px 15px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: #C59B27;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 13px 35px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    color: var(--secondary-color);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* About Section */
.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(11, 25, 44, 0.15);
    border: 1px solid var(--secondary-color);
}

/* History Section */
.history-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.history-section h2 {
    color: var(--white);
}

.history-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 50px;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.history-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 6px;
    transition: transform 0.3s;
}

.history-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.history-card h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.history-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* Methodology Section */
.methodology-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(11, 25, 44, 0.15);
    border: 1px solid var(--secondary-color);
}

.method-steps {
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-num {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: bold;
    line-height: 1;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
    font-size: 15px;
}

/* How It Works */
.how-it-works {
    background-color: rgba(11, 25, 44, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.step-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.step-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Areas Section */
.area-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 6px;
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(11, 25, 44, 0.05);
    transition: transform 0.3s;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.area-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Benefits Section */
.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    color: var(--text-light);
}

.benefits-list li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
    top: -2px;
}

.benefits-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(11, 25, 44, 0.15);
    border: 1px solid var(--secondary-color);
}

/* Legal Commitment Section */
.legal-commitment-section {
    background-color: #050E1A;
    color: var(--white);
    padding: 80px 0;
}

.legal-box {
    border: 2px solid var(--secondary-color);
    padding: 50px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.02);
}

.legal-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.legal-box h3 {
    color: var(--secondary-color);
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.legal-box > p {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.legal-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 14px;
    border-left: 3px solid #EF233C;
}

.legal-footer {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 0 !important;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.member-img-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--secondary-color);
}

.team-member h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-member .desc {
    color: var(--text-light);
    font-size: 14px;
}

/* Cases Section */
.cases-section {
    background-color: rgba(11, 25, 44, 0.02);
}

.case-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.case-tag {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.case-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.case-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.case-card p strong {
    color: var(--primary-color);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 50px auto 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.02);
}

.contact-box h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 40px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
}

.contact-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 25px;
    margin-bottom: 0 !important;
}

/* Footer */
.main-footer {
    background-color: #050E1A;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-grid h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-grid a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: #020710;
    padding: 30px 0;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-warning {
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.4;
}

/* Responsive design */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .grid-3, .history-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
