/* Reset y estilos generales */
:root {
    --color-principal: #FF7F3F;
    --principal-claro: #FFAA71;
    --principal-oscuro: #E56A28;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-color: #222222;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-principal);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 127, 63, 0.25);
}

.btn:hover {
    background-color: var(--principal-oscuro);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 127, 63, 0.35);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-principal);
    color: var(--color-principal);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--color-principal);
    color: var(--white);
}

.accent {
    color: var(--color-principal);
}

.accent-text {
    color: var(--color-principal);
    font-weight: 600;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: var(--color-principal);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
}

.logo-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--color-principal);
    border-radius: 50%;
    margin-left: 5px;
}

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

.navigation li {
    margin-left: 30px;
}

.navigation a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.navigation a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-principal);
    transition: width 0.3s ease;
}

.navigation a:hover:after {
    width: 100%;
}

.navigation a:hover {
    color: var(--color-principal);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 2px 0;
    transition: all 0.3s ease;
}

.current-section {
    padding: 10px 20px;
    color: var(--color-principal);
    text-decoration: none;
    font-weight: bold;
    border: 2px solid var(--color-principal);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.current-section:hover {
    background-color: var(--color-principal);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.2);
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-art {
    border-radius: 20px;
    background-color: var(--principal-oscuro);
    width: 80%;
    height: 80%;
    object-fit: cover;
    object-position: center;
}

/* Footer */
.footer {
    padding: 70px 0 30px;
    background-color: var(--dark-gray);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.social-item {
    display: inline-block;
    padding: 10px 20px;
    color: var(--color-principal);
    text-decoration: none;
    font-weight: bold;
    border: 2px solid var(--color-principal);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-item:hover {
    background-color: var(--color-principal);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navigation.active {
        display: block;
    }
    
    .navigation ul {
        flex-direction: column;
    }
    
    .navigation li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image {
        padding: 40px 5%;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .container {
        width: 95%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}