/* Estilos específicos para la página principal */
@import 'common.css';

body {
    background: linear-gradient(to right, #f0f0f0, #e0f7fa);
    color: #333;
}

/* Encabezado específico */
header {
    background-color: #00796B;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: slideDown 1s ease forwards;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1.2s ease forwards;
}

header p {
    font-size: 1.2rem;
    animation: fadeInUp 1.4s ease forwards;
}

/* Presentación */
main {
    flex: 1;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.presentacion {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: left;
    animation: fadeInScale 1s ease forwards;
}

.presentacion h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #00796B;
    animation: slideInLeft 1.2s ease forwards;
}

.presentacion ul {
    list-style: none;
    padding-left: 1rem;
    margin: 1rem 0;
    animation: fadeInUp 1.5s ease forwards;
}

.presentacion ul li {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    position: relative;
    animation: fadeInUp 1.6s ease forwards;
}

.presentacion ul li::before {
    content: "•";
    color: #00796B;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
    top: 0;
}

/* Botones específicos */
.acciones {
    text-align: center;
}

.boton {
    display: inline-block;
    background-color: #009688;
    color: white;
    padding: 1rem 2rem;
    margin: 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.4s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.8s ease forwards;
    box-shadow: 0 4px 6px rgba(0, 150, 136, 0.4);
}

.boton:hover {
    background-color: #00796B;
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 8px 12px rgba(0, 150, 136, 0.7);
}
