/* 
   Grupo Martinelli - Custom Styles
   Cores: Azul Escuro (#003366), Vermelho (#E31B23), Branco (#FFFFFF)
*/

:root {
    --primary-blue: #003366;
    --primary-red: #E31B23;
    --light-bg: #F8F9FA;
    --text-dark: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header & Nav */
header {
    transition: all 0.3s ease;
}

.navbar-brand .logo {
    height: auto;
    max-height: 80px; /* Aumentado para melhor visualização */
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-weight: 600;
    color: var(--primary-blue) !important;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-blue);
    height: 100vh;
    min-height: 600px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-placeholder {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    padding: 100px 40px;
    border-radius: 20px;
}

.btn-danger {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    padding: 12px 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-danger:hover {
    background-color: #c41219;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 27, 35, 0.3);
}

/* Categories */
.category-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.category-item i {
    color: var(--primary-red) !important;
}

/* Store Cards */
.store-card {
    min-height: 250px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.btn-outline-danger {
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-outline-danger:hover {
    background-color: var(--primary-red);
    color: white;
}

/* CTA Cards */
.cta-card {
    background-color: #f0f4f8;
    border-left: 5px solid var(--primary-red);
}

.cta-card:last-child {
    border-left-color: var(--primary-blue);
}

/* Info Bar */
.square-red {
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: #003366 !important;
}

.logo {
    mix-blend-mode: multiply;
}

.logo-footer {
    mix-blend-mode: screen;
    height: auto;
    max-height: 120px !important;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}



.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Classes de Animação */
.animate-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* MVS Cards Hover Effect */
.mvs-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
