/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo general */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background: #4CAF50;
    padding: 15px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilo del logo */
header .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo {
    width: 120px; /* Tamaño máximo del logo */
    height: auto;
    object-fit: contain;
}

/* Header Navigation */
header nav ul {
    list-style: none;
    padding-top: 10px;
}

header nav ul li {
    display: inline;
    margin: 0 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #DFF4D1;
}

.hero {
    height: 100vh;
    background: url('assets/img/banner.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}


.hero h1 {
    font-size: 4em;
    margin: 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5em;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}


.about {
    padding: 50px;
    background: #fff;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4CAF50;
    font-weight: 600;
}

.about p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-me {
    padding: 50px;
    background: #f9f9f9;
    text-align: center;
}

.about-me h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4CAF50;
    font-weight: 600;
}

.about-me p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact {
    padding: 50px;
    background: #4CAF50;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2em;
    margin: 10px 0;
}

.contact a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

.btn-login {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 12px 25px;
    margin-top: 20px;
    font-size: 1em;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #45a049;
}


footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 1em;
}
