/* Estilos gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar personalizada */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Cards de produtos */
.card {
    transition: transform 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Formulários */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Footer */
footer {
    margin-top: auto;
}

/* Seção de cidades atendidas */
.city-card {
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.city-card:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
}

.city-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.city-card h5 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* Hero section melhorada */
.hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.hero .btn {
    margin: 0.25rem;
}

/* Cards de serviços animados */
.card-body i {
    transition: transform 0.3s ease;
}

.card:hover .card-body i {
    transform: scale(1.1);
}

/* Seção de marcas */
.brand-card {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Melhorias nos ícones */
.fa, .fas, .fab, .far {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Loading para ícones que ainda não carregaram */
.fa::before {
    content: "";
}

/* Garantir que os ícones apareçam */
i.fas, i.fab, i.far, i.fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", FontAwesome !important;
    font-weight: 900;
}

/* Ícones de redes sociais */
.fab {
    font-weight: 400 !important;
}

/* Cards hover melhorado */
.card {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #007bff;
}

/* Badges melhorados */
.badge {
    font-size: 0.85em;
    padding: 0.5em 0.75em;
}

/* Botões melhorados */
.btn {
    transition: all 0.3s ease;
    border-radius: 6px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Tabelas melhoradas */
.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

/* Alertas melhorados */
.alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Modal melhorado */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Progressbar melhorada */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #f1f3f4;
}

.progress-bar {
    border-radius: 4px;
}

/* Responsividade */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .city-card {
        margin-bottom: 1rem;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        margin-bottom: 0.5rem;
    }
    
    .table-responsive {
        font-size: 0.85rem;
    }
} 

/* Estilos para a seção de informações da MMG Eletrônica */
.city-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.city-grid .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.city-grid .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.contact-info .btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.contact-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.address-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #dee2e6;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,123,255,0.3);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .city-grid {
        justify-content: center;
    }
    
    .city-grid .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .contact-info .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .cta-section .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
} 

/* Estilos para a seção Hero com Design Profissional */
.hero-section {
    background: linear-gradient(135deg, #002f4e 0%, #004d7a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.brand-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.brand-item img {
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.brand-item:hover img {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.hero-section .btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.hero-section .btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.6);
    background: linear-gradient(135deg, #ff8f00 0%, #ff6f00 100%);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .hero-section .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-section .h3 {
        font-size: 1.5rem;
    }
    
    .brand-item {
        margin-bottom: 1rem;
    }
    
    .brand-item img {
        height: 80px !important;
    }
    
    .hero-section .btn-warning {
        font-size: 1rem;
        padding: 0.75rem 2rem !important;
    }
} 

/* MMG ELETRÔNICA - Hero Section Design */
.mmg-hero-section {
    background: linear-gradient(135deg, #002f4e 0%, #004d7a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mmg-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.mmg-hero-container {
    position: relative;
    z-index: 2;
}

.mmg-main-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.mmg-subtitle {
    font-size: 2rem;
    margin: 0 0 50px 0;
    font-weight: normal;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0.95;
}

.mmg-brands-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.mmg-brand-item {
    text-align: center;
    flex: 0 0 auto;
}

.mmg-brand-image {
    width: 140px;
    height: 140px;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mmg-brand-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.mmg-brand-item:hover .mmg-brand-image::before {
    transform: translateX(100%);
}

.mmg-brand-item:hover .mmg-brand-image {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.mmg-brand-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.mmg-technicians-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.mmg-technician-item {
    text-align: center;
    flex: 0 0 auto;
}

.mmg-technician-image {
    width: 220px;
    height: 220px;
    background: linear-gradient(145deg, #e9ecef, #dee2e6);
    border-radius: 25px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255,255,255,0.4);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    position: relative;
}

.mmg-technician-item:hover .mmg-technician-image {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.7);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.mmg-technician-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.mmg-contact-button {
    text-align: center;
    margin-bottom: 40px;
}

.mmg-btn-contato {
    background: linear-gradient(135deg, #ff8f00 0%, #ff6f00 100%);
    color: white;
    border: none;
    padding: 25px 80px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255,143,0,0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.mmg-btn-contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.mmg-btn-contato:hover::before {
    left: 100%;
}

.mmg-btn-contato:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,143,0,0.6);
    background: linear-gradient(135deg, #ff6f00 0%, #e65100 100%);
    color: white;
}

.mmg-footer {
    background: #000;
    height: 80px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .mmg-main-title {
        font-size: 2.5rem;
    }
    
    .mmg-subtitle {
        font-size: 1.5rem;
    }
    
    .mmg-brands-row {
        gap: 20px;
    }
    
    .mmg-brand-image {
        width: 100px;
        height: 100px;
    }
    
    .mmg-technicians-row {
        gap: 30px;
    }
    
    .mmg-technician-image {
        width: 160px;
        height: 160px;
    }
    
    .mmg-btn-contato {
        padding: 20px 50px;
        font-size: 1.2rem;
    }
} 