body{
    font-family:'Poppins',sans-serif;
    background:#f4f6f9;
}

.navbar-custom {
    background-color: #b5ceb2;
    padding: 12px 30px;
}

html{
    scroll-behavior: smooth;
}

/* Logo */
.logo-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Texto del título */
.titulo-nav {
    font-size: 22px;
    font-weight: 700;
    color: #1d4d3d;
    white-space: nowrap;
}

.nav-item {
    font-size: 18px;
    margin-right: 10px;
}

/* Links */
.navbar-nav .nav-link {
    font-weight: 600;
    color: #1d4d3d !important;
    margin: 0 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: #709b76;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Dropdown */
.dropdown-menu {
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item:hover {
    background-color: #e9f6ef;
}

/* Mejor icono hamburguesa */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: brightness(0.2);
}


/* CONTENEDOR */

.container{
    max-width:1600px;
}

/* TARJETA PRINCIPAL DEL FORO */

.foro-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    margin-bottom:30px;
}

/* IMAGEN SUPERIOR */

.foro-banner{
    width:100%;
    height:260px;
    object-fit:contain;
}

/* CONTENIDO DEL FORO */

.foro-body{
    padding:30px;
}

.foro-body h2{
    font-weight:600;
    color:#1e4d3a;
    margin-bottom:10px;
}

/* SEMILLERO */

.foro-sem{
    color:#6c757d;
    font-size:14px;
    margin-bottom:15px;
}

/* DESCRIPCION */

.foro-desc{
    color:#444;
    line-height:1.7;
    font-size:15px;
}

/* BOTON PDF */

.btn-secondary{
    margin-top:15px;
    border-radius:8px;
}

/* TITULO COMENTARIOS */

.titulo-comentarios{
    font-weight:600;
    margin-top:30px;
    margin-bottom:20px;
}

/* TARJETAS DE COMENTARIOS */

.comentario{
    background:white;
    border-radius:10px;
    padding:18px;
    margin-bottom:15px;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

.comentario strong{
    color:#333;
}

.comentario small{
    color:#888;
    font-size:12px;
}

.comentario p{
    margin-top:8px;
    font-size:14px;
    color:#444;
}

.paginacion-comentarios{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:20px;
}

.pagina-activa{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0d6efd;
    color:white;
    border-radius:8px;
    font-weight:600;
}

.btn-pagina{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#f5f5f5;
    color:#333;
    border-radius:8px;
    transition:.3s;
}

.btn-pagina:hover{
    background:#0d6efd;
    color:white;
}
/* FORMULARIO */

.form-card{
    background:white;
    padding:25px;
    border-radius:12px;
    margin-top:30px;
    box-shadow:0 6px 15px rgba(0,0,0,0.08);
}

/* INPUTS */

.form-control{
    border-radius:8px;
    border:1px solid #ddd;
}

.form-control:focus{
    border-color:#6c9a8b;
    box-shadow:none;
}

/* BOTON */

.btn-success{
    background:#6e9a6c;
    border:none;
    border-radius:8px;
    padding:8px 20px;
}

.btn-success:hover{
    background:#517a6c;
}

/* FOOTER */
.contenido-inferior {
    background-color: #b5ceb2;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 -5px 10px #d4d3d3;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col.izquierda h4,
.footer-col.izquierda p {
    text-align: left;
    color: #1b5e20;
    font-size: 16px;
}

.footer-col.izquierda img {
    width: 100px;
    margin-top: 15px;
}

.footer-col.derecha {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-col.derecha h4 {
    color: #1b5e20;
    font-size: 16px;
}

.redes-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.redes-footer a img {
    width: 42px;
    height: 42px;
    transition: transform 0.3s ease;
}

.redes-footer a img:hover {
    transform: scale(1.2);
}