/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.navbar {
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-logo h1 {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ccc;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-button {
    background-color: #1a365d;
    color: white;
    padding: 15px 30px;
    border: 2px solid #1a365d;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background-color: transparent;
    border-color: #1a365d;
}

.arrow {
    font-size: 1.2rem;
}

.hero-shield {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.6));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

/* About Section */
.about {
    background-color: white;
    padding: 80px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content {
    max-width: 600px;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #ccc;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #333;
}

.mission-vision {
    margin-top: 30px;
}

.mission, .vision {
    margin-bottom: 20px;
}

.mission h4, .vision h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.mission p, .vision p {
    color: #666;
    line-height: 1.6;
}

.values-panel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Solutions Section */
.solutions {
    background-color: white;
    padding: 80px 0;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.safe-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solutions-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.solutions-content {
    max-width: 500px;
}

.title-underline-blue {
    width: 60px;
    height: 3px;
    background-color: #1a365d;
    margin-bottom: 30px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.solution-icon {
    width: 50px;
    height: 50px;
    background-color: #1a365d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.solution-icon i {
    color: white;
    font-size: 1.5rem;
}

.solution-icon:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

.solution-text h5 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.solution-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Comparison Table */
.comparison {
    background-color: #f0f4f8;
    padding: 80px 0;
}

.garantias-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2d3748;
    padding: 1rem;
    max-width: 100%;
    margin: 0 auto;
    background-color: white;
}

.garantias-header {
    text-align: center;
    margin-bottom: 2rem;
}

.garantias-header h1 {
    font-size: 2rem;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr;
    background: #101820;
}

.header-cell {
    padding: 1rem 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.header-cell:first-child {
    background: rgba(0,0,0,0.2);
    text-align: left;
}

.header-cell:last-child {
    border-right: none;
}

.table-row {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background-color: #f7fafc;
}

.table-row:last-child {
    border-bottom: none;
}

.criteria-cell {
    padding: 1rem 0.75rem;
    font-weight: 600;
    background-color: #f8fafc;
    border-right: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 0.9rem;
}

.value-cell {
    padding: 1rem 0.75rem;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    font-weight: 500;
    font-size: 0.9rem;
}

.value-cell:last-child {
    border-right: none;
}

/* Destacar melhores opções - DESABILITADO PARA MOBILE */
.best-option {
    background-color: white;
    color: #2d3748;
    font-weight: normal;
    position: relative;
}

.best-option::before {
    display: none;
}

/* Destacar opções medianas - DESABILITADO PARA MOBILE */
.medium-option {
    background-color: white;
    color: #2d3748;
}

/* Destacar opções ruins - DESABILITADO PARA MOBILE */
.poor-option {
    background-color: white;
    color: #2d3748;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badge-excellent {
    background: #c6f6d5;
    color: #22543d;
}

.badge-good {
    background: #fed7d7;
    color: #c53030;
}

.badge-medium {
    background: #feebc8;
    color: #744210;
}


/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
}

.footer-shield {
    display: flex;
    justify-content: center;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.footer-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-section p {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    color: white;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
        justify-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .hero-logo {
        width: 250px;
        height: 250px;
    }
    
    .cta-button {
        margin: 0 auto;
        display: block;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solutions-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .solution-item {
        margin-bottom: 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .social-icons {
        display: none;
    }
    
    /* Tabela mobile - Layout em lista simples */
    .garantias-container {
        padding: 1rem;
    }
    
    .garantias-header h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .comparison-table {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        overflow: hidden;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        display: block;
        margin-bottom: 0;
        border-bottom: 2px solid #f1f5f9;
    }
    
    .table-row:last-child {
        border-bottom: none;
    }
    
    .criteria-cell {
        background: #1a365d;
        color: white;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
        font-weight: 600;
        border: none;
    }
    
    .value-cell {
        display: block;
        padding: 1.2rem 1.5rem;
        border: none;
        border-bottom: 1px solid #e2e8f0;
        background: white;
        position: relative;
        overflow: visible;
        min-height: 50px;
    }
    
    .value-cell.poor-option,
    .value-cell.medium-option,
    .value-cell.best-option {
        background: white !important;
        color: #2d3748 !important;
        border-left: none !important;
    }
    
    .value-cell:last-child {
        border-bottom: none;
    }
    
    .value-cell::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: #1a365d;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.5rem;
    }
    
    .value-cell .badge {
        display: inline-block;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .value-cell:not(:has(.badge)) {
        font-size: 0.95rem;
        color: #2d3748;
        font-weight: 500;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 10px;
        gap: 20px;
        justify-items: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.85rem;
        margin: 0 auto;
        display: block;
    }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .about-container,
    .solutions-container {
        padding: 0 10px;
        gap: 20px;
    }
    
    .footer-container {
        padding: 0 10px;
    }
    
    /* Tabela mobile pequena - Layout simplificado */
    .garantias-container {
        padding: 0.5rem;
    }
    
    .garantias-header h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .criteria-cell {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .value-cell {
        padding: 1rem 1rem;
        min-height: 45px;
        overflow: visible;
    }
    
    .value-cell.poor-option,
    .value-cell.medium-option,
    .value-cell.best-option {
        background: white !important;
        color: #2d3748 !important;
        border-left: none !important;
    }
    
    .value-cell::before {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .value-cell .badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.75rem;
        border-radius: 12px;
    }
    
    .value-cell:not(:has(.badge)) {
        font-size: 0.9rem;
    }
}