/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables */
:root {
    --font-serif: 'Dancing Script', cursive;
    --font-sans: 'Inter', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --font-handwritten: 'Satisfy', cursive;

    --background: #ffffff;
    --foreground: #030213;
    --card: #ffffff;
    --card-foreground: #030213;
    --primary: #030213;
    --primary-foreground: #ffffff;
    --secondary: #f3f3f5;
    --secondary-foreground: #030213;
    --muted: #ececf0;
    --muted-foreground: #717182;
    --accent: #e9ebef;
    --accent-foreground: #030213;
    --border: rgba(0, 0, 0, 0.1);
    --input-background: #f3f3f5;
    --radius: 0.625rem;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Base Typography */
body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: var(--text-2xl);
}

h2 {
    font-size: var(--text-xl);
}

h3 {
    font-size: var(--text-lg);
}

h4 {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 500;
    line-height: 1.5;
}

p {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
}

/* Typography Utility Classes */
.font-serif {
    font-family: var(--font-serif) !important;
}

.font-sans {
    font-family: var(--font-sans) !important;
}

.font-script {
    font-family: var(--font-script) !important;
}

.font-handwritten {
    font-family: var(--font-handwritten) !important;
}

.heading-display {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

.heading-script {
    font-family: var(--font-script);
    font-weight: 400;
    line-height: 1.3;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-6);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: rgba(3, 2, 19, 0.9);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: var(--accent);
}

.btn-dark {
    background-color: var(--foreground);
    color: var(--background);
}

.btn-dark:hover {
    background-color: rgba(3, 2, 19, 0.9);
}

.btn-light {
    background-color: var(--primary-foreground);
    color: var(--primary);
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.btn-sm {
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
}

.btn-block {
    width: 100%;
}

/* Cards */
.card {
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.card-header {
    padding: var(--space-6);
    border-bottom: 1px solid var(--border);
}

.card-header h3 {
    margin-bottom: var(--space-2);
}

.card-header p {
    color: var(--muted-foreground);
}

.card-content {
    padding: var(--space-6);
}

/* Forms */
.form-group {
    margin-bottom: var(--space-4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

label {
    display: block;
    margin-bottom: var(--space-1);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: var(--space-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--input-background);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    transition: border-color 0.2s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(3, 2, 19, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Fixed Agendar Button */
.fixed-agendar-btn {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 50;
}

.fixed-agendar-btn button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-agendar-btn button:hover {
    background-color: rgba(3, 2, 19, 0.9);
    box-shadow: var(--shadow-xl);
    transform: scale(1.1);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
}

.logo-img {
    height: 32px;
    width: auto;
}

@media (min-width: 640px) {
    .logo-img {
        height: 40px;
    }
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav a {
    color: var(--foreground);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    transition: color 0.2s ease;
}

@media (min-width: 1024px) {
    .desktop-nav a {
        font-size: var(--text-base);
    }
}

.desktop-nav a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2);
    background: none;
    border: none;
    border-radius: var(--radius);
    color: var(--foreground);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background-color: var(--accent);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 256px;
    height: 100vh;
    background-color: var(--background);
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    z-index: 50;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-content {
    padding: var(--space-8) var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.mobile-menu-logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.mobile-menu-logo img {
    height: 48px;
    width: auto;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mobile-menu a {
    padding: var(--space-2) var(--space-4);
    color: var(--foreground);
    text-decoration: none;
    font-family: var(--font-sans);
    border-radius: var(--radius);
    transition: background-color 0.2s ease;
}

.mobile-menu a:hover {
    background-color: var(--accent);
}

.mobile-menu a.primary-link {
    color: var(--primary);
}

.mobile-menu hr {
    border: none;
    height: 1px;
    background-color: var(--border);
    margin: var(--space-2) 0;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top: 0px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}


.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 91dvh;
    object-fit: cover;
}

.carousel-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 1024px;
    width: 90%;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    font-family: var(--font-handwritten);
    font-size: var(--text-sm);
    margin-bottom: var(--space-6);
}

.logo-hero {
    margin-bottom: var(--space-6);
}

.logo-hero img {
    height: 64px;
    width: auto;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .logo-hero img {
        height: 80px;
    }
}

@media (min-width: 768px) {
    .logo-hero img {
        height: 96px;
    }
}

@media (min-width: 1024px) {
    .logo-hero img {
        height: 128px;
    }
}

.slide-content h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

@media (min-width: 640px) {
    .slide-content h2 {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-6);
    }
}

@media (min-width: 768px) {
    .slide-content h2 {
        font-size: var(--text-4xl);
    }
}

@media (min-width: 1024px) {
    .slide-content h2 {
        font-size: var(--text-5xl);
    }
}

.slide-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
    opacity: 0.9;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .slide-content p {
        font-size: var(--text-xl);
        margin-bottom: var(--space-8);
    }
}

@media (min-width: 768px) {
    .slide-content p {
        font-size: var(--text-2xl);
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: var(--space-4);
        justify-content: center;
    }
}

.hero-buttons .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons .btn {
        width: auto;
    }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.slider-prev {
    left: var(--space-4);
}

.slider-next {
    right: var(--space-4);
}

.slider-indicators {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: var(--space-3);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.25);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.75);
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.slider-progress-bar {
    height: 100%;
    background-color: white;
    transition: width 0.1s ease-linear;
}

/* Section Styles */
section {}

@media (min-width: 640px) {
    section {}
}

@media (min-width: 1024px) {
    section {}
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: var(--space-16);
    }
}



.section-header p {
    font-size: var(--text-base);
    color: var(--muted-foreground);
    margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
    .section-header p {
        font-size: var(--text-lg);
    }
}

.section-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
}

@media (min-width: 640px) {
    .section-buttons {
        flex-direction: row;
        gap: var(--space-4);
        justify-content: center;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: transparent;
}

.gallery-desktop {
    display: none;
}

@media (min-width: 640px) {
    .gallery-desktop {
        display: block;
    }
}

.gallery-masonry {
    columns: 1;
    column-gap: var(--space-4);
}

@media (min-width: 640px) {
    .gallery-masonry {
        columns: 2;
    }
}

@media (min-width: 1024px) {
    .gallery-masonry {
        columns: 3;
    }
}

@media (min-width: 1280px) {
    .gallery-masonry {
        columns: 4;
    }
}

.gallery-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: var(--space-4);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    right: var(--space-4);
    color: white;
}

.gallery-text p {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
}

/* Mobile Gallery */
.gallery-mobile {
    display: block;
}

@media (min-width: 640px) {
    .gallery-mobile {
        display: none;
    }
}

.gallery-featured {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    cursor: pointer;
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-xl);
}

.gallery-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-featured:active img {
    transform: scale(0.95);
}

.gallery-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.gallery-featured-content {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    right: var(--space-6);
    color: white;
}

.gallery-featured-content h3 {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.gallery-featured-action {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.gallery-featured-action span {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
}

.gallery-featured-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-3);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    font-family: var(--font-handwritten);
    font-size: var(--text-xs);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.gallery-mosaic-large {
    grid-column: 1 / -1;
    aspect-ratio: 3/2;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-mosaic-small {
    aspect-ratio: 1;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-mosaic-large:active img,
.gallery-mosaic-small:active img {
    transform: scale(0.95);
}

.gallery-mosaic-overlay {
    position: absolute;
    bottom: var(--space-3);
    left: var(--space-3);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-mosaic-large:active .gallery-mosaic-overlay,
.gallery-mosaic-small:active .gallery-mosaic-overlay {
    opacity: 1;
}

.gallery-mosaic-overlay p {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-mosaic-large .gallery-mosaic-overlay p {
    font-size: var(--text-sm);
}

.gallery-mosaic-small .gallery-mosaic-overlay p {
    font-size: var(--text-xs);
}

.gallery-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.gallery-grid-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid-item:active img {
    transform: scale(0.95);
}

.gallery-more {
    position: relative;
    aspect-ratio: 3/2;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    margin-bottom: var(--space-8);
}

.gallery-more img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-more:active img {
    transform: scale(0.95);
}

.gallery-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-more-content {
    text-align: center;
    color: white;
}

.gallery-more-content i {
    width: 32px;
    height: 32px;
    margin: 0 auto var(--space-2);
}

.gallery-more-content p {
    font-family: var(--font-sans);
    font-weight: 500;
    margin-bottom: var(--space-1);
}

.gallery-more-content span {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    opacity: 0.8;
}

.gallery-view-all {
    text-align: center;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 100;
    display: none;
    flex-direction: column;
}

.lightbox.open {
    display: flex;
}

.lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    padding: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

@media (min-width: 640px) {
    .lightbox-header {
        padding: var(--space-6);
    }
}

.lightbox-info h3 {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    margin-bottom: var(--space-1);
}

@media (min-width: 640px) {
    .lightbox-info h3 {
        font-size: var(--text-xl);
    }
}

.lightbox-info p {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    opacity: 0.8;
}

.lightbox-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius);
    transition: background-color 0.2s ease;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: var(--space-4);
}

.lightbox-next {
    right: var(--space-4);
}

.lightbox-indicators {
    position: absolute;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
}

.lightbox-dots {
    display: flex;
    gap: var(--space-2);
}

.lightbox-hint {
    position: absolute;
    bottom: var(--space-16);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
}

/* Packages Section */
.packages-section {
    background-color: rgba(236, 236, 240, 0.3);
}

.packages-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-16);
}

.package-card {
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    position: relative;
}

.package-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary), var(--shadow-2xl);
}

.package-popular-badge {
    background-color: var(--primary);
    color: var(--primary-foreground);
    text-align: center;
    padding: var(--space-3);
    font-family: var(--font-handwritten);
    font-size: var(--text-sm);
}

/* Desktop Package Layout */
@media (min-width: 1024px) {
    .package-card {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        min-height: 700px;
    }

    .package-card.popular .package-popular-badge {
        grid-column: 1 / -1;
    }
}

.package-image {
    position: relative;
    overflow: hidden;
}

@media (max-width: 1023px) {
    .package-image {
        height: 256px;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .package-image {
        height: 320px;
    }
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.package-image-content {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    color: white;
}

.package-image-content .heading-script {
    font-size: var(--text-2xl);
}

@media (min-width: 1280px) {
    .package-image-content .heading-script {
        font-size: var(--text-3xl);
    }
}

.package-price-badge {
    font-size: var(--text-sm);
    background-color: rgba(0, 0, 0, 0.5);
    padding: var(--space-2);
    border-radius: var(--radius);
    margin-top: var(--space-2);
    font-family: var(--font-sans);
}

.package-content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .package-content {
        padding: var(--space-8);
        justify-content: center;
    }
}

@media (min-width: 1280px) {
    .package-content {
        padding: 2.5rem;
    }
}

.package-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.package-header h3 {
    font-size: var(--text-xl);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

@media (min-width: 1280px) {
    .package-header h3 {
        font-size: var(--text-2xl);
    }
}

.package-name {
    font-size: var(--text-4xl);
    color: var(--primary);
    margin-bottom: var(--space-4);
}

@media (min-width: 1280px) {
    .package-name {
        font-size: var(--text-5xl);
    }
}

.package-header p {
    font-size: var(--text-lg);
    color: var(--muted-foreground);
    margin-bottom: var(--space-6);
}

.package-price-note {
    background-color: rgba(236, 236, 240, 0.5);
    padding: var(--space-2) var(--space-4);
    border-radius: 9999px;
    display: inline-block;
    font-family: var(--font-handwritten);
    font-style: italic;
    color: var(--muted-foreground);
    font-size: var(--text-sm);
    margin-bottom: var(--space-6);
}

.package-features {
    margin-bottom: var(--space-8);
}

.package-features h4 {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.feature-list {
    list-style: none;
    display: grid;
    gap: var(--space-2);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-2);
    border-radius: var(--radius);
}

.feature-list i {
    width: 16px;
    height: 16px;
    color: var(--foreground);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list span {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
}

.package-additional {
    background-color: rgba(236, 236, 240, 0.3);
    padding: var(--space-8);
    margin-bottom: var(--space-8);
}

@media (min-width: 1024px) {
    .package-additional {
        padding: 2.5rem;
    }
}

.package-additional h4 {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
}

.package-additional .feature-list li {
    padding: var(--space-3);
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.package-tabs {
    margin-bottom: var(--space-8);
}

.tab-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: var(--space-6);
    background-color: var(--muted);
    border-radius: var(--radius);
    padding: var(--space-1);
}

.tab-btn {
    padding: var(--space-2) var(--space-4);
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    cursor: pointer;
    border-radius: calc(var(--radius) - 2px);
    transition: all 0.2s ease;
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h4 {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.menu-options {
    display: grid;
    gap: var(--space-2);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3);
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.menu-item span {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
}

.menu-item .price {
    font-weight: 500;
    color: var(--primary);
}

.menu-more {
    text-align: center;
    padding: var(--space-2);
    font-size: var(--text-sm);
    color: var(--muted-foreground);
    font-family: var(--font-sans);
}

.package-actions {
    margin-top: auto;
    display: grid;
    gap: var(--space-3);
}

/* Mobile Package Layout */
@media (max-width: 1023px) {
    .package-content {
        padding: var(--space-6);
    }

    @media (min-width: 640px) {
        .package-content {
            padding: var(--space-8);
        }

        .package-features .feature-list {
            grid-template-columns: 1fr 1fr;
        }
    }
}

/* Specifications Section */
.specs-section {
    background-color: transparent;
}

.specs-grid {
    max-width: 1200px;
    margin: 0 auto var(--space-16);
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

@media (min-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.spec-card {
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-6);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.spec-card:hover {
    box-shadow: var(--shadow-lg);
}

.spec-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(3, 2, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.spec-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.spec-content h3 {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.spec-content ul {
    list-style: none;
    text-align: left;
}

.spec-content li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.spec-content li i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.spec-content li span {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
}

.info-cards {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .info-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.info-card {
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.info-card-header {
    padding: var(--space-6);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.info-card-header i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.info-card-header h3 {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
}

.info-card-content {
    padding: var(--space-6);
}

.info-item {
    margin-bottom: var(--space-4);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item p {
    margin-bottom: var(--space-2);
}

.info-item p:last-child {
    margin-bottom: 0;
}

.info-item strong {
    font-weight: 500;
}

.info-card hr {
    border: none;
    height: 1px;
    background-color: var(--border);
    margin: var(--space-4) 0;
}

.info-item ul {
    list-style: none;
    margin-top: var(--space-2);
}

.info-item li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-1);
}

.info-item li i {
    width: 12px;
    height: 12px;
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    background-color: rgba(236, 236, 240, 0.3);
}

.contact-grid {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}

.contact-form {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .contact-form {
        gap: var(--space-6);
    }
}

.selected-package {
    padding: var(--space-3);
    background-color: var(--muted);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
}

.contact-info {
    display: grid;
    gap: var(--space-6);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item div p {
    margin-bottom: var(--space-2);
}

.contact-item div p:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    font-weight: 500;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-item span:last-child {
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: var(--space-8) 0;
}

@media (min-width: 640px) {
    .footer {
        padding: var(--space-12) 0;
    }
}

.footer-content {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .footer-content {
        gap: var(--space-8);
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.footer-main {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .footer-main {
        grid-column: 1;
    }
}

.footer-logo {
    margin-bottom: var(--space-4);
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-main p {
    opacity: 0.8;
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
}

@media (min-width: 640px) {
    .footer-main p {
        font-size: var(--text-base);
    }
}

.footer-social {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--primary-foreground);
}

.footer-social i {
    width: 20px;
    height: 20px;
}

.footer-contact h4,
.footer-hours h4 {
    margin-bottom: var(--space-3);
    font-family: var(--font-serif);
    font-size: var(--text-base);
}

@media (min-width: 640px) {

    .footer-contact h4,
    .footer-hours h4 {
        margin-bottom: var(--space-4);
        font-size: var(--text-lg);
    }
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
    opacity: 0.8;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
}

@media (min-width: 640px) {
    .footer-contact-item {
        font-size: var(--text-base);
    }
}

.footer-contact-item i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-hours {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .footer-hours {
        grid-column: 3;
    }
}

.footer-hours p {
    opacity: 0.8;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    margin-bottom: var(--space-1);
}

@media (min-width: 640px) {
    .footer-hours p {
        font-size: var(--text-base);
        margin-bottom: var(--space-2);
    }
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: var(--space-6) 0;
}

@media (min-width: 640px) {
    .footer-divider {
        margin: var(--space-8) 0;
    }
}

.footer-bottom {
    text-align: center;
    opacity: 0.8;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Selection Styles */
::selection {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

/* Print Styles */
@media print {

    .fixed-agendar-btn,
    .mobile-menu,
    .slider-nav,
    .slider-indicators,
    .slider-progress {
        display: none !important;
    }
}

/*ESTILOS PROPIOS*/

.tituloSlide {
    font-size: 42px !important;
}

.subtituloSlide {
    font-size: 21px !important;

}

.icono {
    font-size: 16px !important;
}

button {
    font-size: 12.5px !important;
    border-radius: 6px !important;
}

.headerCustom {
    position: sticky;
    top: 0;
    z-index: 40;
    background-color: rgba(255, 255, 255, 0.95);
}

.packCard {
    border-radius: 15px;
    box-shadow: 6px 4px 10px 5px rgba(0, 0, 0, 0.1);
}

.package-image-overlay {
    border-radius: 15px 0px 0px 15px;
}

.package-additional {
    margin-bottom: 0px !important;
    height: 100%;
}

.feature-list li {
    font-size: 12px !important;
}

.navLink.active {
    color: white !important;
    background-color: black !important;
    border-radius: 100px;
    text-align: center;
}
.imageCard{
    border-radius: 15px 0px 0px 15px;
    
}
.nav-link {
    color: black !important;
}

.nav-item {
    width: 50%;
}
.paquetesContainer{

}
@media screen and (max-width: 768px) {
    .imageCard{
        border-radius: 15px;
    }
    .package-image-overlay{
        border-radius: 15px;
    }
    .paquetesContainer{
        width: 90%;
    }
}
.navCustom {
    width: 100%;
    background-color: #ebebeb;
    border-radius: 100px;
}

.spec-card {
    font-size: 12px !important;
}

.specs-grid {
    width: 80%;
}

.info-cards {
    width: 80%;
}

.card-header{
    padding: 18px !important;
}
p, label, input{
    font-size: 12px !important;
}

input{
    padding: 8px !important;
}
.form-group{
    margin-bottom: 0px !important;
}
.hidden {
    display: none;
}
