/* ===== ESTILOS BASE (Suas classes personalizadas) ===== */
.cor-principal {
    color: #212b3f !important;
}

.cor-secundaria {
    color: #b0ccff;
}

.cor-destaque {
    color: #4A6DA1;
}

.cor-texto {
    color: #555;
}

.mb-extra {
    margin-bottom: 150px !important; 
}

.my-extra {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
}

.border-radius {
    border-radius: 20px !important;
}

.background-color {
    background-color: #f2f2f2;
}

.background-color-secundaria {
    background-color: #e6ecf5;
}

.font-size-h1 {
    font-size: x-large;
}

.font-size-h2 {
    font-size: large;
}

.font-size-p {
    font-size: 1rem;
}

.font-weight {
    font-weight: 600;
}

/* ===== ESTILOS ADICIONAIS RESPONSIVOS ===== */

/* Header e Navegação */
.navbar {
    transition: all 0.3s ease;
    min-height: 60px;
}

.logo-height {
    height: 230px;
    transition: height 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    transition: color 0.3s ease;
    position: relative;
    padding: 0.3rem 0.8rem !important;
}

.nav-link:hover {
    color: #4A6DA1 !important;
}

.nav-link.active {
    color: #4A6DA1 !important;
    font-weight: 700;
}

/* Botão de contato */
.btn-contato {
    background-color: #b0ccff !important;
    border: none !important;
    color: #212b3f !important;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 0.3rem 1rem !important;
}

.btn-contato:hover {
    background-color: #9bb5e8 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(176, 204, 255, 0.4);
}

/* Main content */
.main-content {
    padding-top: 80px;
}

/* Seções */
section {
    scroll-margin-top: 80px;
}

/* Cards de produtos */
.product-card {
    border: none;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-radius: 20px !important;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card .card-img-top {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 1.5rem;
}

/* Carrossel */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #212b3f;
    border-radius: 50%;
    padding: 20px;
    background-size: 50%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Footer */
.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4A6DA1 !important;
}

.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #4A6DA1 !important;
    transform: translateX(5px);
}

.copyright-text {
    color: #777;
    font-size: 0.85rem;
}

/* ===== MEDIA QUERIES PARA RESPONSIVIDADE ===== */

/* Tablets e dispositivos menores */
@media (max-width: 991.98px) {
    .logo-height {
        height: 55px;
    }
    
    .main-content {
        padding-top: 70px;
    }
    
    .mb-extra {
        margin-bottom: 100px !important;
    }
    
    .my-extra {
        margin-top: 100px !important;
        margin-bottom: 100px !important;
    }
    
    section {
        scroll-margin-top: 70px;
    }
    
    .navbar {
        min-height: 55px;
    }
}

/* Dispositivos móveis */
@media (max-width: 767.98px) {
    .logo-height {
        height: 50px;
    }
    
    .main-content {
        padding-top: 65px;
    }
    
    .mb-extra {
        margin-bottom: 70px !important;
    }
    
    .my-extra {
        margin-top: 70px !important;
        margin-bottom: 70px !important;
    }
    
    .font-size-h1 {
        font-size: 1.5rem;
    }
    
    .font-size-h2 {
        font-size: 1.2rem;
    }
    
    .font-size-p {
        font-size: 0.95rem;
    }
    
    section {
        scroll-margin-top: 65px;
    }
    
    .navbar {
        min-height: 50px;
    }
    
    .nav-link {
        font-size: 0.9rem !important;
        padding: 0.5rem 0 !important;
    }
    
    /* Ajustes do carrossel */
    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 12px;
    }
    
    /* Cards em mobile */
    .product-card .card-img-top {
        height: 250px !important;
    }
    
    /* Footer */
    footer {
        text-align: center;
    }
    
    .social-link {
        justify-content: center;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 575.98px) {
    .logo-height {
        height: 45px;
    }
    
    .main-content {
        padding-top: 60px;
    }
    
    .btn-contato {
        padding: 0.25rem 0.8rem !important;
        font-size: 0.8rem;
    }
    
    .product-card .card-img-top {
        height: 220px !important;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    section {
        scroll-margin-top: 60px;
    }
    
    .navbar {
        min-height: 45px;
    }
}