:root {
    /* Cores Oficiais IPB - Conforme Manual de Identidade Visual */
    /* Verde Oficial IPB: Pantone 350C / CMYK C100 M0 Y80 K65 */
    --ipb-verde-principal: #005933;
    --ipb-verde-escuro: #003d24;
    --ipb-verde-medio: #007a4d;
    --ipb-verde-claro: #00a366;

    /* Cinza Oficial IPB: CMYK C0 M0 Y0 K70 */
    --ipb-cinza-institucional: #4D4D4D;
    --ipb-cinza-escuro: #333333;
    --ipb-cinza-medio: #6B6B6B;
    --ipb-cinza-claro: #f8fafc;

    /* Cores Complementares */
    --ipb-branco: #ffffff;
    --ipb-preto: #1a1a1a;

    /* Cores de Apoio (baseadas no verde oficial) */
    --ipb-verde-suave: #e6f2ed;
    --ipb-dourado-institucional: #b8860b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--ipb-cinza-escuro);
    background: var(--ipb-branco);
    overflow-x: hidden;
}

/* ============================================
   ACESSIBILIDADE
   ============================================ */

/* Skip Link - Acessibilidade para navegação por teclado */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--ipb-verde-principal);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--ipb-verde-claro);
    outline-offset: 2px;
}

/* Indicadores de Foco Visíveis */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--ipb-verde-principal);
    outline-offset: 2px;
}

/* Remover outline apenas quando usar mouse (não teclado) */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
    outline: none;
}

/* ============================================
   LAYOUT GERAL
   ============================================ */

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

.main-grid-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Header Dinâmico */
.header {
    background: linear-gradient(135deg, var(--ipb-verde-principal) 0%, var(--ipb-verde-escuro) 100%);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 89, 51, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 89, 51, 0.95);
    backdrop-filter: blur(20px);
}

.top-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin: 0 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar a:hover {
    color: var(--ipb-verde-suave);
    transform: translateY(-1px);
}

.main-header {
    padding: 20px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInLeft 1s ease;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Legacy logo-icon styles - mantido para compatibilidade */
.logo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ipb-verde-escuro) 0%, var(--ipb-verde-principal) 50%, var(--ipb-verde-claro) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.header-contact {
    text-align: right;
    font-size: 0.9rem;
    opacity: 0.95;
    animation: fadeInRight 1s ease;
}

/* Navigation Moderna */
.navigation {
    background: var(--ipb-verde-medio);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-nav {
    display: flex;
    list-style: none;
}

.main-nav > li > a {
    display: block;
    padding: 18px 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-nav > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--ipb-verde-suave);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav > li > a:hover::before,
.main-nav > li.active > a::before {
    width: 80%;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: var(--ipb-verde-suave);
}

/* Hero Section Espetacular */
.hero {
    background: linear-gradient(135deg, var(--ipb-verde-principal) 0%, var(--ipb-verde-medio) 50%, var(--ipb-verde-escuro) 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 130px;
}

.hero::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 1000 1000"><defs><radialGradient id="grad1"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23grad1)"/><circle cx="800" cy="800" r="200" fill="url(%23grad1)"/></svg>');
    animation: float 20s infinite ease-in-out;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatUp 15s infinite linear;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1.5s ease;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: slideInDown 1s ease;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeIn 1s ease 0.5s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--ipb-verde-medio);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 122, 77, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 163, 102, 0.6);
    background: var(--ipb-dourado-institucional);
}

/* Seções Modernas */
.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--ipb-cinza-claro);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--ipb-verde-principal);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--ipb-verde-medio), var(--ipb-dourado-institucional));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--ipb-cinza-medio);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Cards Modernos */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 89, 51, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--ipb-verde-medio), var(--ipb-dourado-institucional));
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 89, 51, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--ipb-verde-suave) 0%, var(--ipb-verde-medio) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Orientações de imagem */
.card-image-horizontal {
    height: 250px;
}

.card-image-vertical {
    height: 350px;
}

.card-image-vertical img {
    object-fit: cover;
    object-position: center top;
}

.card-image-quadrada {
    height: 300px;
}

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

.card:hover .card-image::before {
    transform: translateX(100%);
}

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ipb-verde-principal);
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-meta {
    font-size: 0.9rem;
    color: var(--ipb-cinza-medio);
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-excerpt {
    font-size: 1rem;
    color: var(--ipb-cinza-escuro);
    line-height: 1.7;
}

/* Sidebar Moderna */
.sidebar-section {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 89, 51, 0.1);
    position: relative;
    overflow: hidden;
}

.sidebar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ipb-verde-medio), var(--ipb-dourado-institucional));
}

.sidebar-section h3 {
    color: var(--ipb-verde-principal);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 89, 51, 0.1);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateX(10px);
    background: rgba(0, 89, 51, 0.05);
    margin: 0 -35px;
    padding: 20px 35px;
    border-radius: 10px;
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    background: linear-gradient(135deg, var(--ipb-verde-principal) 0%, var(--ipb-verde-medio) 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 89, 51, 0.3);
}

.event-title {
    font-weight: 600;
    color: var(--ipb-verde-principal);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.event-location {
    font-size: 0.9rem;
    color: var(--ipb-cinza-medio);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer Moderno */
.footer {
    background: linear-gradient(135deg, var(--ipb-verde-principal) 0%, var(--ipb-verde-escuro) 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::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 1000 300"><path d="M0,100 C300,200 700,50 1000,150 L1000,300 L0,300 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--ipb-verde-suave);
}

.footer-section p,
.footer-section a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--ipb-verde-suave);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

/* Estilos para links rápidos e contato na sidebar */
.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-links a {
    color: var(--ipb-verde-principal);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-links a:hover {
    color: var(--ipb-verde-medio);
    transform: translateX(5px);
}

.sidebar-contact-item {
    margin-bottom: 15px;
}

.sidebar-contact-item:last-child {
    margin-bottom: 0;
}

.sidebar-contact-item strong {
    color: var(--ipb-verde-principal);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.sidebar-contact-item p {
    padding-left: 24px; /* Alinha com o texto do strong */
}

/* Admin Button Moderno */
.admin-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--ipb-verde-medio) 0%, var(--ipb-dourado-institucional) 100%);
    color: white;
    padding: 20px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 122, 77, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 1.3rem;
}

.admin-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(0, 122, 77, 0.6);
}

/* Animações */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInDown { from { opacity: 0; transform: translateY(-100px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shine { 0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); } 100% { transform: translateX(100%) translateY(100%) rotate(45deg); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } }
@keyframes floatUp { 0% { opacity: 1; transform: translateY(100vh) scale(0); } 10% { opacity: 1; transform: scale(1); } 90% { opacity: 1; } 100% { opacity: 0; transform: translateY(-100vh) scale(0); } }
@keyframes pulse { 0% { box-shadow: 0 8px 25px rgba(0, 163, 102, 0.4); } 50% { box-shadow: 0 12px 35px rgba(0, 163, 102, 0.6); } 100% { box-shadow: 0 8px 25px rgba(0, 163, 102, 0.4); } }

/* Responsivo */
@media (max-width: 992px) {
    .main-grid-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .main-header .container { flex-direction: column; gap: 25px; text-align: center; }
    .main-nav { flex-wrap: wrap; justify-content: center; }
    .main-nav > li > a { padding: 15px 18px; font-size: 0.9rem; }
    .hero { padding: 120px 0 80px; margin-top: 160px; }
    .hero h2 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .section-title { font-size: 2.2rem; }
    .cards-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .logo-image { height: 60px; }
    .logo-icon { width: 60px; height: 60px; font-size: 24px; }
    .logo-text h1 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero h2 { font-size: 2rem; }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
}

/* ========================================
   BANNER CAROUSEL STYLES
   ======================================== */

.banner-carousel-section {
    width: 100%;
    height: 600px;
    margin-top: 80px;
    position: relative;
}

.bannerSwiper {
    width: 100%;
    height: 100%;
}

.banner-slide {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 89, 51, 0.5) 0%,
        rgba(0, 89, 51, 0.35) 50%,
        rgba(0, 89, 51, 0.2) 100%
    );
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    text-align: left;
    padding: 40px 0;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: white;
    color: var(--ipb-verde-escuro);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-btn:hover {
    background: var(--ipb-amarelo);
    color: var(--ipb-verde-escuro);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.banner-btn i {
    font-size: 1.2rem;
}

/* Swiper Navigation Buttons */
.bannerSwiper .swiper-button-next,
.bannerSwiper .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.bannerSwiper .swiper-button-next:after,
.bannerSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

.bannerSwiper .swiper-button-next:hover,
.bannerSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Swiper Pagination */
.bannerSwiper .swiper-pagination {
    bottom: 30px;
}

.bannerSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.bannerSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
    background: var(--ipb-amarelo);
}

/* Responsive */
@media (max-width: 1024px) {
    .banner-carousel-section,
    .banner-slide {
        height: 500px;
    }

    .banner-title {
        font-size: 2.8rem;
    }

    .banner-subtitle {
        font-size: 1.3rem;
    }

    .banner-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .banner-carousel-section {
        margin-top: 160px;
    }

    .banner-carousel-section,
    .banner-slide {
        height: 450px;
    }

    .banner-content {
        max-width: 100%;
        text-align: center;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .banner-description {
        font-size: 0.95rem;
    }

    .banner-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .bannerSwiper .swiper-button-next,
    .bannerSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .bannerSwiper .swiper-button-next:after,
    .bannerSwiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner-carousel-section,
    .banner-slide {
        height: 400px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .banner-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .bannerSwiper .swiper-pagination {
        bottom: 15px;
    }

    .bannerSwiper .swiper-button-next,
    .bannerSwiper .swiper-button-prev {
        display: none; /* Oculta setas em telas muito pequenas */
    }
}