:root {
    --primary-color: #f7cac9;
    --secondary-color: #dec2cb;
    --accent-color: #d4af37;
    --text-color: #4a4a4a;
    --bg-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    scroll-behavior: smooth;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.9);
}

.hero-content {
    text-align: center;
    padding: 3rem;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #047857;
    /* Emerald Green */
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.6);
    background: #059669;
    /* Slightly lighter emerald on hover */
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #047857;
    border-radius: 2px;
}

.calendar-container {
    padding: 2rem;
    margin-top: 2rem;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
}

.input-wrapper {
    display: flex;
    align-items: stretch;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fdfdfd;
    overflow: hidden;
}

.input-prefix {
    padding: 0 1rem;
    background: #f0f0f0;
    color: #666;
    border-right: 1px solid #ddd;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.9rem;
    user-select: none;
}

.input-wrapper .form-input {
    border: none;
    border-radius: 0;
}

.form-button-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: #fafafa;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    font-size: 1.8rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(247, 202, 201, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}

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

footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #888;
}

/* Responsividad */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 4rem 1rem;
    }

    .hero-content {
        padding: 2rem 1.25rem;
        width: calc(100% - 30px);
        margin: 0 auto;
    }

    .hero-logo {
        max-width: 200px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .calendar-container {
        padding: 1.25rem;
        margin-top: 1rem;
    }

    .booking-form {
        gap: 1rem;
    }

    .btn-primary {
        width: 100%;
        padding: 0.9rem 0.5rem;
        font-size: 0.85rem;
        gap: 8px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 180px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .btn-primary {
        font-size: 0.85rem;
        padding: 0.8rem 0.5rem;
    }

    .hero-logo {
        max-width: 160px;
    }
}