/* CSS da página HOME */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Layout geral */
.page-wrapper {
    width: 100%;
}

.main-content {
    width: 100%;
}

.page-footer {
    width: 100%;
}

/* Header/Navbar */
.navbar {
    background: linear-gradient(135deg, #7486ec, #e8e9f3);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4a90e2, #7bb3f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-content {
    text-align: center;
    color: white;
    font-weight: bold;
}

.logo-symbol {
    font-size: 24px;
    margin-bottom: 2px;
}

.logo-text {
    font-size: 12px;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #4a90e2;
}

.login-btn {
    background: linear-gradient(45deg, #7bb3f0, #4a90e2);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

/* Carousel */
.home-hero {
    width: 100%;
    margin-top: 0;

.carousel-container {
    position: relative;
    width: 100%;
    min-height: 320px;
    /* altura em função da largura, mantêm proporção da arte */
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* mostra o banner inteiro sem cortar */
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.carousel-title {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.carousel-subtitle {
    font-size: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 3;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

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

.carousel-dot.active {
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu li a {
        font-size: 16px;
    }

    .carousel-title {
        font-size: 32px;
    }

    .carousel-subtitle {
        font-size: 18px;
    }

    .carousel-nav {
        font-size: 24px;
        padding: 10px 15px;
    }
}