:root {
    --primary: #c5a059;
    --primary-light: #e6d5b8;
    --secondary: #4a4a4a;
    --text: #5d524d;
    --bg-light: #fdfaf7;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.title-gold {
    font-family: 'Libre Baskerville', serif !important;
    color: #c5a059 !important; /* Muted Gold/Bronze */
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('IMG_3383-38.jpg') center/cover;
    color: white;
    position: relative;
    margin-bottom: 50px;
}

.hero-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-logo {
    max-width: 400px;
    width: 90%;
    margin-top: 40px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.hero p {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Packages Section */
.section-title {
    text-align: center;
    margin: 100px 0 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: #c5a059;
    margin-bottom: 15px;
    font-family: 'Libre Baskerville', serif;
    letter-spacing: -1px;
}

.section-title .divider {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 100px;
}

.package-card {
    flex: 0 1 380px; /* Increased from 350px */
    background: var(--white);
    padding: 50px 30px; /* Reduced side padding from 40px */
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.package-card.featured {
    border: 2px solid #c5a059;
    background: #fffdf9;
}

.package-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header {
    text-align: center;
    margin-bottom: 40px;
}

.package-icon {
    width: 200px;
    height: 140px;
    margin: 0 auto 10px;
    background-image: url('package_icons_v2.png');
    background-size: 500% 100%;
    background-repeat: no-repeat;
    display: block;
    mix-blend-mode: multiply;
}

.icon-civil { 
    background-image: url('civil.png');
    background-size: contain;
    background-position: center;
}
.icon-cristal { 
    background-image: url('cristal.png');
    background-size: contain;
    background-position: center;
}
.icon-plata { 
    background-image: url('plata.png');
    background-size: contain;
    background-position: center;
}
.icon-oro { 
    background-image: url('oro.png');
    background-size: contain;
    background-position: center;
}
.icon-diamante { 
    background-image: url('diamante.png');
    background-size: contain;
    background-position: center;
}

.package-name {
    font-size: 1.8rem;
    color: #2d2a29;
    margin: 10px 0 15px;
    font-weight: 700;
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-price {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.package-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f8f8f8;
    font-size: 0.9rem; /* Slightly reduced from 0.95rem */
    display: flex;
    align-items: flex-start;
}

.package-features li:before {
    content: '✦';
    color: var(--primary);
    margin-right: 12px;
    font-size: 0.8rem;
    margin-top: 4px;
}

/* Extras Section */
.extras-section {
    background: #fdfaf7;
    padding: 100px 0;
    border-top: 1px solid #eee;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.extra-item {
    background: white;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.extra-name {
    font-weight: 500;
    color: var(--secondary);
}

.extra-price {
    color: var(--primary);
    font-weight: 700;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    will-change: transform, filter, box-shadow;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Info Section */
.info-section {
    padding: 100px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.info-content {
    padding: 20px;
}

.info-card {
    margin-bottom: 30px;
}

.info-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.info-list {
    list-style: none;
}

.info-list li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.info-list li:before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 2rem;
    line-height: 1;
    top: -4px;
}

/* Footer */
footer {
    background: #2d2a29;
    color: white;
    padding: 100px 0 40px;
    text-align: center;
}

.footer-logo-img {
    max-width: 300px;
    width: 80%;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-contact {
    margin-bottom: 40px;
    opacity: 0.8;
    font-size: 1.1rem;
}

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

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition);
    opacity: 0.7;
}

.social-links a:hover {
    color: var(--primary-light);
    opacity: 1;
    transform: translateY(-5px);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        height: 60vh;
    }
    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
        margin-bottom: 30px;
    }
    .hero-content {
        padding: 30px 20px;
    }
    .hero p {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .section-title {
        margin: 60px 0 40px;
    }
    .package-card {
        flex: 0 1 100%;
        padding: 40px 25px;
    }
    .package-card.featured {
        transform: scale(1);
    }
    .package-name {
        font-size: 1.5rem;
    }
    .package-price {
        font-size: 1.8rem;
    }
    .extras-grid {
        grid-template-columns: 1fr;
    }
    .extra-item {
        padding: 15px 20px;
    }
    .info-section {
        padding: 60px 0;
    }
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .gallery-grid img {
        height: 300px !important;
    }
    footer {
        padding: 60px 0 30px;
    }
    .footer-contact {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 250px;
    }
    .package-header {
        margin-bottom: 20px;
    }
    .package-icon {
        width: 150px;
        height: 100px;
    }
}
