:root{
    --verde-ceiba: #5E5F34;
    --rojo-achiote: #9E332E;
    --amarillo-sol: #EC9F46;
    --rosa-palo: #F3CAC9;
    --gris-hueso: #E8DCD1;
    --blanco-sacbe: #F9F2EB;

    --botones: var(--amarillo-sol);
}

body{
    background-color:#F9F2EB;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
}

.navbar{
    background-color: var(--rojo-achiote);
    padding: 15px;
    border-radius: 0 0 20px 20px;
    display: flex;
}

.navbar ul{
    list-style: none;
    display: flex;
    background: #F9F2EB;
    border-radius: 20px;
    padding: 5px 20px;
    margin: 0;
    align-items: center;
}

.navbar a{
    text-decoration: none;
    color: var(--verde-ceiba);
    margin: 0 15px;
    font-weight: bold;
}

.nav-logo {
    max-height: 90px; 
    width: auto;
    object-fit: contain;
}


.content-wrapper{
    gap: 30px;
    padding: 30px;
}

.sidebar {
    background-color: var(--amarillo-sol);
    margin-top: 30px;
    padding: 40px;
    border-radius: 35px;
    color: var(--verde-ceiba);
    font-size: 1rem;
}

.sidebar h1 {
    font-family: 'Special Elite', cursive !important;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--verde-ceiba);
    display: block;
}

.sidebar .scientific-name {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 20px;
    display: block;
    color: #5E5F34;
}

.img-principal {
    padding-top: 10px;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.image-wrapper {
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-box {
    background-color: #5E5F34;
    color: #E8DCD1;
    padding: 10px;
    border-radius: 25px;
    font-size: 0.8rem;
}

.info-box h6 {
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.info-icon {
    max-width: 80px;
    height: auto;
    display: block;
    margin: auto;
}

.icon-container {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.btn-action {
    border: none;
    border-radius: 50px; /* <--- Cambia este valor a 50px o más para hacerlo totalmente redondo */
    padding: 12px;
    background-color: var(--rojo-achiote);
    color: white;
    font-weight: bolder;
    transition: background 0.3s ease;
}

.btn-action:hover {
    background-color: #7a2622;
    color: white;
}
