/* --- Reseteo Básico y Variables de Color --- */
:root {
    --primary-color: #333;
    --secondary-color: #f4f4f4;
    --highlight-color: #2D86C0;
    --white-color: #fff;
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--white-color);
}

/* --- Estructura y Contenedores --- */
.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
    text-align: center;
}

.container-fluid {
    width: 100%;
    padding: 4rem 2rem;
}

section {
	margin-top: 2rem;
    padding: 4rem 0;
}

/* --- Encabezado y Navegación --- */
.main-header {
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.logo a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
	
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-nav ul a:hover {
    color: var(--highlight-color);
	text-decoration: underline;
}

/* --- Menú Hamburguesa --- */
.hamburger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* --- Sección de Portada (Hero) --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinea contenido a la izquierda */
    color: var(--white-color);
    position: relative;
    padding: 0 2rem;
    z-index: 1;
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/viviana_fondo.png');
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* --- Contenido Hero --- */
.hero-content {
    max-width: 600px;
    margin-left: 50%; /* Empuja desde el centro hacia la derecha */
    padding-right: 2rem;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
	line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
	line-height: 1.3;
}
.hero-content refor { 
	font-family: var(--font-family);
	font-weight: bold;
	color: var(--highlight-color);
}
/* --- Botones --- */
.cta-button {
    display: inline-block;
    background: var(--highlight-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #256a9a;
}

.cta-button-secondary {
    display: inline-block;
    background: var(--white-color);
    color: var(--highlight-color);
    padding: 12px 25px;
    border: 2px solid var(--highlight-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--highlight-color);
    color: var(--white-color);
}

/* --- Sección de Servicios --- */
#servicios h2, #sobre-mi h2, #agendar h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
}

/* --- Sección Sobre Mí --- */
.about-section {
    background-color: var(--secondary-color);
}
.about-section .container {
    max-width: 800px;
    text-align: left;
}


/* --- Calendario de Citas --- */
.calendar-container {
    margin-top: 2rem;
}

.calendar-placeholder {
    background-color: #f9f9f9;
    border: 2px dashed #ccc;
    padding: 4rem;
    border-radius: 10px;
    color: #888;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: var(--white-color);
    margin-left: 15px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--highlight-color);
}

/* --- Media Queries para Responsividad --- */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
      	opacity: 0.3;
        position: absolute;
        top: 68px; /* Ajustar a la altura del header */
        left: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: flex;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav ul li {
        margin: 0;
        text-align: center;
    }

    .main-nav ul a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .social-icons {
        margin-top: 1rem;
    }
    .hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/viviana_fondo2.png');
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
}