/* Contenedor principal del Home */
.home-layout .module-content {
    background: transparent;
    border: none;
}

/* Tarjetas de Grupos (Categorías) */
.home-layout .box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
}

/* Ocultar elementos que ensucian el diseño oficial */
.account-masthead, .footer-content {
    background-color: #f8f9fa;
}

/* Hacer la sección del buscador más grande e imponente (Estilo Australia) */
.hero {
    background-color: #1a2a3a; /* Un azul oscuro institucional */
    /* Aquí luego pondremos una foto genial de Galápagos o biodiversidad: 
       background-image: url('/custom/fondo-megafauna.jpg'); */
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}

/* Estilizar el título principal */
.hero .heading {
    color: white;
    font-size: 3em;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Hacer la caja de búsqueda más limpia y redondeada */
.hero .module-search .search-input {
    border-radius: 30px 0 0 30px;
    padding: 25px 20px;
    font-size: 1.2em;
    border: none;
}

.hero .module-search .btn {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
    background-color: #00b4d8; /* Color de acento */
    border: none;
}

/* Esconder elementos secundarios molestos del Hero */
.hero .action {
    display: none;
}


/* Tarjetas de Grupos y Datasets (Estilo Moderno) */
.box {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e1e4e8;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}

.box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #00b4d8;
}

/* Ajuste para que el texto no se pegue a los bordes */
.home-layout .module-content {
    padding: 40px 0;
}

/* Títulos de secciones */
.module-heading {
    border-bottom: 2px solid #00b4d8;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
