:root {
    --primary-gold: #c5a47e;
    --dark-elegant: #1a1a1a;
    --soft-cream: #f9f7f2;
    --eco-green: #4a6741;
    --font-playfair: 'Playfair Display', serif;
    --font-poppins: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-poppins);
    color: var(--dark-elegant);
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.font-serif {
    font-family: var(--font-playfair);
}

.font-poppins {
    font-family: var(--font-poppins);
}

/* Navbar */
.navbar {
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.6rem;
}

/* Hero */
.hero-section {
    padding: 180px 0 80px;
    background-color: var(--soft-cream);
}

.hero-title {
    font-size: calc(2.8rem + 1.2vw);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-img {
    width: 100%;
    border-radius: 30px 30px 150px 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* Cómo Funciona - Estilos Nuevos */
.step-number {
    font-family: var(--font-playfair);
    font-size: 4rem;
    color: rgba(197, 164, 126, 0.2);
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: 0;
}

.step-card {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Pricing */
.price-card {
    background: white;
    padding: 3.5rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.price-card.featured {
    border: 1px solid var(--primary-gold);
    background: #fffdfa;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(197, 164, 126, 0.15);
}

.price-amount {
    font-size: 3.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
}

.btn-custom {
    padding: 12px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gold {
    background: var(--dark-elegant);
    color: white;
    border: none;
}

.btn-gold:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
}

/* Eco Section */
.eco-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(74, 103, 65, 0.1);
    color: var(--eco-green);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer {
    background: var(--dark-elegant);
    color: white;
    padding: 80px 0 40px;
}

/* Catalog Section */
.catalog-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.card-custom {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: white;
}

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

.card-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-custom:hover .card-img-top {
    transform: scale(1.1);
}

.badge-custom {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-elegant);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Agrégalo a tu style.css si no lo tienes */
.card-custom {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.card-custom:hover .card-img-top {
    transform: scale(1.1);
}

.card-img-top {
    transition: transform 0.6s ease;
}

/* Estilos para Socios Estratégicos */
/* Estilos para Socios Estratégicos */
.partner-logo {
    filter: grayscale(100%);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
}

.partner-item {
    transition: transform 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(197, 164, 126, 0.3);
}

.text-gold {
    color: var(--primary-gold);
}

.partner-item h5 {
    letter-spacing: 1px;
    margin-top: 1rem;
}

.partner-name {
    transition: color 0.3s ease;
}

.partner-item:hover .partner-name {
    color: var(--primary-gold);
}

/* Placeholder Pulse Animation */
@keyframes borderPulse {
    0% {
        border-color: #ccc;
        box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.4);
    }

    50% {
        border-color: var(--primary-gold);
        box-shadow: 0 0 0 10px rgba(197, 164, 126, 0.1);
    }

    100% {
        border-color: #ccc;
        box-shadow: 0 0 0 0 rgba(204, 204, 204, 0);
    }
}

.placeholder-circle {
    width: 150px;
    height: 150px;
    border: 2px dashed #ccc;
    transition: all 0.3s ease;
    animation: borderPulse 3s infinite;
}

.partner-item.opacity-50:hover .placeholder-circle {
    background-color: #fff;
    border-style: solid;
    animation: none;
    border-color: var(--primary-gold);
    transform: rotate(90deg);
}

.partner-item.opacity-50:hover i {
    color: var(--primary-gold) !important;
}

/* Promo Toast Float */
.promo-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(197, 164, 126, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 90%;
    max-width: 450px;
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.promo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--dark-elegant) 0%, #333 100%);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-content {
    flex-grow: 1;
    line-height: 1.3;
}

.promo-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-elegant);
    margin-bottom: 2px;
}

.promo-subtitle {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0;
}

.badge-coupon {
    background: rgba(197, 164, 126, 0.15);
    color: var(--primary-gold);
    border: 1px dashed var(--primary-gold);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 150%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.95);
    /* Dark elegant background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    flex: 1;
}

.cookie-text {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-gold);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-gold);
    transition: all 0.3s ease;
}

.cookie-text a:hover {
    color: white;
    border-bottom-style: solid;
}

.btn-cookie-accept {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cookie-accept:hover {
    background: white;
    color: var(--dark-elegant);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.3);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 25px;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        margin: 0;
    }
}


/* Cookie Modal Overlay */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Cookie Modal */
.cookie-modal {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-modal-overlay.show .cookie-modal {
    transform: scale(1);
}

.cookie-modal-header {
    background: var(--dark-elegant);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h5 {
    margin: 0;
    font-size: 1.2rem;
}

.btn-close-white {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-close-white:hover {
    color: white;
}

.cookie-modal-body {
    padding: 25px;
}

.cookie-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cookie-option {
    margin-bottom: 20px;
}

.btn-cookie-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-cookie-outline:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary-gold);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary-gold);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}