/* Estilos Globais */
:root {
    --primary-color: #00A8E1;
    --secondary-color: #FF9900;
    --dark-color: #232F3E;
}

/* Tarja de Aviso */
.price-warning {
    background-color: #dc3545;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.price-warning i {
    color: #fff;
    font-size: 1.1rem;
}

.price-warning a {
    color: #fff;
    transition: opacity 0.2s;
}

.price-warning a:hover {
    color: #fff;
    opacity: 0.8;
    text-decoration: underline !important;
}

/* Navbar */
.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background-color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero img {
    width: 100%;
    height: auto;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.card-img-top {
    padding: 1rem;
}

/* Botões */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Features */
.features i {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* FAQ Section */
.faq {
    background-color: #f8f9fa;
}

.faq-image-container {
    position: relative;
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.faq-image-container:hover {
    transform: translateY(-10px);
}

.faq-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 15px;
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    font-weight: 500;
}

.accordion-item {
    border: none;
    background-color: white;
    border-radius: 10px !important;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    background-color: white;
    border-radius: 10px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-body {
    padding: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Outros Modelos Section */
.other-models .card {
    background: white;
    padding: 1rem;
}

.other-models img {
    max-width: 200px;
    margin: 0 auto;
}

.other-models .price {
    min-height: 60px;
}

.comparison-table {
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
}

.table-responsive {
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    border-radius: 10px;
}

/* Produtos em Destaque */
.produto-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.produto-card img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

.produto-card h3 {
    color: var(--dark-color);
    font-weight: 600;
}

.produto-card p {
    color: #666;
    font-size: 0.95rem;
    min-height: 48px;
}

.produto-card .btn {
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        text-align: center;
        min-height: 60vh;
    }
    
    .features {
        text-align: center;
    }
    
    .faq-image-container {
        margin-bottom: 2rem;
    }
    
    .accordion-button {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .other-models img {
        max-width: 150px;
    }
    
    .other-models .card {
        padding: 0.5rem;
    }
    
    .comparison-table {
        padding: 1rem;
    }
    
    .produto-card {
        padding: 1rem !important;
    }
    
    .produto-card img {
        max-width: 150px;
    }
    
    .produto-card p {
        min-height: auto;
        margin-bottom: 1rem !important;
    }
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}
