/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff8f4;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    background-color: #8000FF;
    color: white;
    justify-content: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 30px;
}

header a {
    text-decoration: none;
    color: white;
}

nav {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Imagenes / Tarjetas */
.imagenes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.imagenes li {
    width: 250px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.imagenes img {
    width: 100%;
    height: auto;
    border: solid #8000FF 2px;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    background-color: #8000FF;
    color: white;
    padding: 0.75rem 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background-color: #390564;
}

/* Sobre mí */
.sobre-mi {
    padding: 2rem;
    background-color: #fff1f1;
    text-align: center;
}

.sobre-mi h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.sobre-mi p {
    font-size: 1rem;
    max-width: 600px;
    margin: auto;
}

/* WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 15px 18px;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* Footer */
footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .imagenes {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        display: inline-block;
        margin: 5px;
    }
}