:root {

    /* verde oscuro inicial */
    --color-menu-bg: #13ec13;
    /* verde medio final */
    --color-highlight: #ffcc00;
    /* amarillo institucional */
    --color-bg: #f0f8e8;
    /* fondo muy claro verdoso */
    --color-menu-bg: #004080;
    /* verde menú */
    --color-menu-hover: #ffcc00;
    /* amarillo hover */
    --color-mini-bar-bg: #003300;
    /* verde muy oscuro mini barra */
    --transition-time: 0.3s;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: var(--color-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus {
    outline: 3px solid var(--color-highlight);
    outline-offset: 2px;
}
/* --- MINI BARRA SUPERIOR --- */
.mini-bar {
    background-color: var(--color-mini-bar-bg);
    color: white;
    font-size: 14px;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    user-select: none;
}

.mini-bar .left,
.mini-bar .right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mini-bar a {
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition-time);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.mini-bar a:hover,
.mini-bar a:focus {
    color: var(--color-highlight);
    outline: none;
}

/* Submenu mini barra */
.mini-bar .submenu-mini {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(25, 93, 2, 0.84); /* Fondo verde con leve transparencia */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    min-width: 160px;
    border-radius: 4px;
    display: none;
    flex-direction: column;
    padding: 5px 0;
    z-index: 1300;
}

.mini-bar a[aria-expanded="true"] + .submenu-mini {
    display: flex;
}

.mini-bar .submenu-mini a {
    padding: 8px 15px;
    font-size: 13px;
    color: white;
    transition: background 0.3s ease;
}

.mini-bar .submenu-mini a:hover,
.mini-bar .submenu-mini a:focus {
    background: rgb(234, 220, 24); /* Verde más oscuro al pasar el mouse */
    color: white;
    outline: none;
}

/* Flecha mini barra */
.mini-bar a i.fa-caret-down {
    font-size: 10px;
    transition: transform 0.4s ease, color 0.3s ease;
    transform-origin: center;
}

.mini-bar a[aria-expanded="true"] i.fa-caret-down {
    transform: rotate(180deg) scale(1.2);
    color: var(--color-highlight);
}


/* --- ANIMACIONES --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- ANIMACIONES --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInItem {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- HEADER PRINCIPAL --- */
header {
    background: linear-gradient(to right, rgba(0, 51, 0, 0.85), rgba(0, 85, 0, 0.85));
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    color: white;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1100;
    font-weight: bold; /* ← Esto fuerza negrita para todo el contenido del header */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.6s ease forwards;
}

/* Logo con tagline */
.logo {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    user-select: none;
    opacity: 0;
    animation: fadeInItem 0.6s ease forwards, logoMove 1s ease-in-out 10s infinite;
}


/* Estilo del subtítulo del logo */
.logo span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
    margin-top: 2px;
    color: #ffcc00;
    letter-spacing: 1px;
}

/* Menú escritorio */
.menu-desktop {
    display: none;
    gap: 30px;
    align-items: center;
    font-weight: 500;
    user-select: none;
}

.menu-desktop > div,
.menu-desktop > a {
    position: relative;
    cursor: pointer;
    opacity: 0;
    animation: fadeInItem 0.6s ease forwards;
}

/* Aparición escalonada de ítems */
.menu-desktop > div:nth-child(1),
.menu-desktop > a:nth-child(1) {
    animation-delay: 0.3s;
}
.menu-desktop > div:nth-child(2),
.menu-desktop > a:nth-child(2) {
    animation-delay: 0.45s;
}
.menu-desktop > div:nth-child(3),
.menu-desktop > a:nth-child(3) {
    animation-delay: 0.6s;
}
.menu-desktop > div:nth-child(4),
.menu-desktop > a:nth-child(4) {
    animation-delay: 0.75s;
}
/* puedes seguir agregando más si hay más enlaces */

/* Estilos normales del menú */
.menu-desktop a,
.menu-desktop > div > a {
    color: white;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-time);
}

.menu-desktop a:hover,
.menu-desktop > div > a:hover {
    color: var(--color-highlight);
}

/* Flecha submenu */
.menu-desktop i.fa-caret-down {
    transition: transform var(--transition-time);
    font-size: 14px;
    margin-left: 2px;
}

.menu-desktop > div.open > a i.fa-caret-down {
    transform: rotate(180deg);
}

/* Submenus escritorio */
.submenu-desktop {
    position: absolute;
    top: 40px;
    left: 0;
    background-color: rgba(12, 81, 47, 0.92);
    min-width: 170px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1500;
}

.menu-desktop > div.open .submenu-desktop {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    animation: fadeInItem 0.3s ease;
}

.submenu-desktop a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    color: white;
    transition: background var(--transition-time);
    text-decoration: none;
}

.submenu-desktop a:hover,
.submenu-desktop a:focus {
    background: var(--color-highlight);
    color: var(--color-primary-end);
    outline: none;
}

.menu-desktop > div.open .submenu-desktop,
.menu-desktop > div.open .submenu-desktop:hover,
.menu-desktop > div:hover .submenu-desktop {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    animation: fadeInItem 0.3s ease;
}


/* Botón buscador */
.search-container {
    position: relative;
    margin-left: auto;
    opacity: 0;
    animation: fadeInItem 0.6s ease forwards;
    animation-delay: 1s;
}

.search-container input {
    border-radius: 20px;
    border: none;
    padding: 6px 30px 6px 15px;
    font-size: 14px;
    outline: none;
    transition: box-shadow 0.3s;
}

.search-container input:focus {
    box-shadow: 0 0 5px var(--color-highlight);
}

.search-container i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary-end);
    pointer-events: none;
}

/* Iconos sociales */
.social-icons {
    display: flex;
    gap: 15px;
    font-size: 18px;
    color: white;
    user-select: none;
    opacity: 0;
    animation: fadeInItem 0.6s ease forwards;
    animation-delay: 1.2s;
}

.social-icons a:hover {
    color: var(--color-highlight);
}

  .mini-bar .left .menu-padre {
  position: relative;
  display: inline-block;
}

.submenu-mini {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #248d02;
  border: 1px solid #ccc;
  padding: 5px;
  min-width: 160px;
  z-index: 100;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.mini-bar .left .menu-padre:hover > .submenu-mini {
  display: block;
}

.submenu-mini a {
  display: block;
  padding: 8px 12px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.submenu-mini a:hover,
.submenu-mini a:focus {
  background-color: #d2b214;
  outline: none;
}


/* Menú hamburguesa móvil */
.hamburguesa {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1150;
}

.hamburguesa span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Menú lateral móvil */
nav {
    position: fixed;
    top: 90px;
    right: -280px;
    width: 280px;
    height: calc(100vh - 90px);
    background: linear-gradient(to right, rgba(0, 51, 0, 0.85), rgba(0, 85, 0, 0.85));
    /* verde oscuro semitransparente */
    backdrop-filter: blur(3px);
    /* desenfoque del fondo */
    -webkit-backdrop-filter: blur(6px);
    /* compatibilidad con Safari */
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1100;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.4);
}

nav.active {
    right: 0;
}

nav a {
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
    padding: 8px 5px;
    border-radius: 5px;
    transition: background var(--transition-time);
}

nav a:hover,
nav a:focus {
    background: var(--color-highlight);
    color: var(--color-menu-bg);
    outline: none;
}

/* Submenus móvil */
.submenu-mobile {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 25px;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        max-height 0.4s ease,
        padding 0.4s ease,
        opacity 0.4s ease,
        transform 0.4s ease;
}

.submenu-mobile.open {
    max-height: 500px;
    padding-top: 6px;
    padding-bottom: 6px;
    opacity: 1;
    transform: translateY(0);
}


.submenu-mobile a {
    font-size: 13px;
}

/* Flechas en móvil */
.submenu-parent {
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.submenu-parent i.fa-caret-down {
    transition: transform var(--transition-time);
}

.submenu-parent.open i.fa-caret-down {
    transform: rotate(180deg);
}


.submenu-mobile a::before {
    content: "➤ ";
    color: #ffffff;
    margin-right: 4px;
    font-weight: bold;
}

/* Responsive */
@media (min-width: 768px) {
    .hamburguesa {
        display: none;
    }

    nav {
        display: none;
    }

    .menu-desktop {
        display: flex;
        align-items: center;
    }

    /* Mostrar submenu escritorio al pasar mouse */
    .menu-desktop>div:hover .submenu-desktop {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu-desktop>div:hover>a i.fa-caret-down {
        transform: rotate(180deg);
    }

    /* Mostrar mini barra */
    .mini-bar {
        display: flex;
    }
}

/* Ocultar mini barra en móvil */
@media (max-width: 767px) {
    .mini-bar {
        display: none;
    }

    /* Ajustar top header porque mini barra desaparece */
    header {
        top: 0;
    }

    nav {
        top: 60px;
        /* Solo header altura */
        height: calc(100vh - 60px);
    }
}











/* ======== GLOBAL ======== */
body {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1b1b1b;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #4caf50;
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: #ffca28;
}

/* ======== HERO ======== */
.hero {
    background-color: #f5f5f5;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.hero .badge {
    display: inline-block;
    background-color: #ffca28;
    color: #1b1b1b;
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero .tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero .tab {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #4caf50;
    background-color: #ffffff;
    color: #4caf50;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero .tab.active,
.hero .tab:hover {
    background-color: #4caf50;
    color: #ffffff;
}

.hero .quick {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #ccc6c6;
    border-left: 4px solid #4caf50;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* ======== HERO CARD ======== */
.hero-card {
    flex: 1;
    min-width: 250px;
    background-color: #bef0b4;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-card h3 {
    color: #4caf50;
    margin-bottom: 1rem;
}

.kpis {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.kpi h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #1b1b1b;
}

.kpi p {
    font-size: 0.9rem;
}

/* ======== SECTIONS ======== */
section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #4caf50;
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
    background-color: #c8d0c6;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ======== TABLES ======== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table th, table td {
    border: 1px solid #e0e0e0;
    padding: 0.5rem;
    text-align: left;
}

table th {
    background-color: #4caf50;
    color: #ffffff;
}

/* ======== DETAILS ======== */
details {
    background-color: #f5f5f5;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    cursor: pointer;
}

details summary {
    font-weight: 600;
    color: #4caf50;
}

details[open] {
    background-color: #e8f5e9;
}

/* ======== LISTAS ======== */
.list {
    list-style: none;
    padding-left: 0;
}

.list li::before {
    content: "• ";
    color: #4caf50;
    font-weight: bold;
}

/* ======== PÍLDORAS ======== */
.pill {
    display: inline-block;
    background-color: #ffca28;
    color: #1b1b1b;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 0.3rem;
    margin-top: 0.3rem;
}

/* ======== TEXTOS DESTACADOS ======== */
.quote {
    font-style: italic;
    color: #4caf50;
    border-left: 4px solid #4caf50;
    padding-left: 0.6rem;
    margin: 0.8rem 0;
}

.success {
    color: #388e3c;
    font-weight: 600;
}

.muted {
    color: #777777;
    font-size: 0.85rem;
}

.note {
    background-color: #ffffff;
    padding: 0.8rem;
    border-left: 4px solid #4caf50;
    border-radius: 8px;
    margin-top: 1rem;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 15px;
    }
    .hero-wrap {
        flex-direction: column;
    }
    .kpis {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.5rem;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero .lead {
        font-size: 1rem;
    }
    table th, table td {
        font-size: 0.8rem;
    }
}






.footer-fhm {
    background: linear-gradient(rgba(27, 94, 32, 0.90), rgba(27, 94, 32, 0.90)),
        url('../imagenes/portada\ liceo.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 20px 200px;
    /* Aumentado */
    font-family: 'Segoe UI', sans-serif;
}




.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-brand {
    flex: 1 1 250px;
    text-align: center;
}

.footer-logo {
    max-width: 80px;
    margin-bottom: 10px;
}

.footer-brand h3 {
    margin: 10px 0 5px;
    font-size: 1.4em;
    color: #FFEB3B;
}

.slogan {
    font-style: italic;
    font-size: 0.95em;
    color: #dcedc8;
}

.footer-links,
.footer-contact {
    flex: 1 1 200px;
    text-align: center;
}

.footer-links h4,
.footer-contact h4 {
    color: #FFEB3B;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-links li {
    width: 100%;
    max-width: 220px;
    text-align: center;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    padding: 6px 12px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.footer-links a:hover {
    background-color: #33691e;
    color: #aed581;
}

.footer-contact p {
    margin: 6px 0;
    font-size: 0.95em;
}

.footer-contact i {
    margin-right: 8px;
    color: #aed581;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    color: #c8e6c9;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        flex: 1 1 100%;
    }

    .footer-logo {
        max-width: 60px;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links li {
        max-width: 100%;
    }

    .footer-links a {
        font-size: 1em;
    }
}

.footer-social {
    flex: 1 1 200px;
    text-align: center;
    margin-top: 10px;
}

.footer-social h4 {
    color: #FFEB3B;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 8px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.2em;
    transition: transform 0.3s ease, color 0.3s;
}

.social-icons a:hover {
    color: #aed581;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .footer-social {
        flex: 1 1 100%;
    }
}









/* ======== SECCIÓN ACTIVIDADES ======== */
.actividades {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.actividad-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #2e7d32;
}

.actividad-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.actividad-card .icono {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.actividad-card h3 {
    color: #2e7d32;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.actividad-card p {
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.5;
}



/* ======== CARRUSEL ACTIVIDADES (versión imágenes más pequeñas) ======== */
.carrusel-container {
    position: relative;
    max-width: 650px;   /* tamaño reducido del carrusel */
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carrusel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carrusel-item {
    min-width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* espacio alrededor de la imagen */
    box-sizing: border-box;
}

.carrusel-item img {
    width: 80%;         /* más pequeño que el ancho total */
    max-width: 600px;   /* tamaño máximo */
    border-radius: 12px;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.caption {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(46, 125, 50, 0.85);
    color: #ffffff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Botones más pequeños */
.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.85);
    border: none;
    padding: 0.6rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2e7d32;
    transition: background 0.3s;
}

.carrusel-btn:hover {
    background-color: #ffca28;
    color: #1b1b1b;
}

.carrusel-btn.prev { left: 5px; }
.carrusel-btn.next { right: 5px; }

/* Responsivo */
@media (max-width: 600px) {
    .carrusel-container {
        max-width: 90%;
    }
    .carrusel-item img {
        width: 100%;
    }
    .caption {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }
}
