/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 80px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #666;
}

/* Carrossel */
#carousel-container {
    margin-top: 90px;
    width: 100%;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #fff;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-control:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #fff;
}

/* Seções */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #333;
    margin: 15px auto 0;
}

.section p {
    margin-bottom: 20px;
    font-size: 20px;
}

/* Representadas */
.representadas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.representada-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.representada-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.representada-item h3 {
    font-size: 25px;
    margin-bottom: 15px;
    color: #222;
}

.representada-item p {
    font-size: 18px;
    color: #555;
}

.representada-item.highlight {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s;
}


/* Contato */
#contato {
    background-color: #f9f9f9;
}

.contato-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contato-icon {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contato-icon img {
    width: 100%;
    height: 100%;
}

.contato-texto a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.contato-texto a:hover {
    color: #666;
}


/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

footer p {
    font-size: 14px;
    color: #777;
}

/* Responsividade */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    #carousel-container {
        margin-top: 140px;
    }
    
    .carousel-item {
        height: 300px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .representadas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
    
    .carousel-item {
        height: 200px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .section h2 {
        font-size: 28px;
    }
}
