﻿/* Estilos Base */
@charset "UTF-8";

:root {
    --primary-color: #00468c;
    --secondary-color: #002b5c;
    --accent-color: #4ca6ff;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: var(--light-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-height: 96px;
    width: auto;
}

/* Navegação */
.navbar {
    padding: 0.5rem 0;
    background-color: var(--dark-color) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background-color: var(--dark-color);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Conteúdo Principal */
.main-content {
    padding: 40px 0;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Carrossel */
.carousel {
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    object-fit: cover;
    height: 400px;
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* Cards */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.card-header {
    padding: 0.75rem 1.25rem;
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
}

.card-body {
    padding: 1.5rem;
}

/* Formulários */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 70, 140, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Marquee */
.marqueen-container {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.marqueenR {
    height: 80px;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.marqueenR ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.marqueenR li {
    flex: 0 0 auto;
    width: 160px;
    height: 56px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.marqueenR li:hover {
    transform: scale(1.05);
}

.marqueenR li img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.marqueenR li:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Alertas */
.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
    color: var(--success-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    color: var(--danger-color);
}

/* Rodapé */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #000000 100%);
    color: white;
    padding: 40px 0 20px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.social-icons li {
    margin: 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Utilidades */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.rounded {
    border-radius: 8px !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

/* Botão personalizado */
.xbutton {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin: 0.25rem;
    border: none;
    cursor: pointer;
}

.xbutton.green {
    color: #fff;
    background: linear-gradient(to bottom, #a5cd4e 0%, #6b8f1a 100%);
}

.xbutton.green:hover {
    box-shadow: 0 0 10px rgba(107, 143, 26, 0.5);
    transform: translateY(-2px);
}

.xbutton.green:active {
    transform: translateY(0);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
    list-style: none;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    left: 25px;
    margin-left: -1.5px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-badge {
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    color: #fff;
    background: var(--primary-color);
}

.timeline-panel {
    position: relative;
    background: #fff;
    border-radius: 0.25rem;
    padding: 20px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.timeline-heading {
    margin-bottom: 15px;
}

.timeline-title {
    margin-top: 0;
    color: inherit;
}

#parceirosList {
    transition: transform 0.5s ease-in-out;
    margin: 0;
    padding: 0;
}
.parceiro-item {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-img, .card-img-bottom, .card-img-top {
    width: 50% !important;
    display: block;
    margin: auto;
}
.btopo{
	height: 329px; 
	object-fit: cover;
}
/* Responsividade */
@media (max-width: 992px) {
    .navbar-collapse {
        padding-top: 1rem;
    }
    
    .marqueenR li {
        width: 140px;
        height: 50px;
    }
    
    .carousel-item img {
        height: 350px;
    }
	.btopo{
		height: 100px; 
		object-fit: cover;
	}
}

@media (max-width: 768px) {
    .logo-rodape {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .endereco-rodape {
        text-align: center;
    }
    
    .marqueenR li {
        width: 120px;
        height: 45px;
    }
    
    .carousel-item img {
        height: 300px;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
	.btopo{
		height: 100px; 
		object-fit: cover;
	}
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 250px;
    }
    
    .marqueenR li {
        width: 100px;
        height: 40px;
    }
	.btopo{
		height: 100px; 
		object-fit: cover;
	}
}