/* Styles spécifiques à la page d'accueil */

/* === GLASSMORPHISM HERO SECTION === */
.hero-glass-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #fdfbf7 0%, 
        #f9f1e6 25%, 
        #f2e2cc 50%, 
        #e8d0a9 75%, 
        #dbb885 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* === GLASS BACKGROUND ELEMENTS === */
.glass-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.glass-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.glass-shape-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.glass-shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.glass-shape-3 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 30%;
    animation-delay: -10s;
}

.glass-shape-4 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-20px) translateX(-15px) rotate(180deg);
        opacity: 0.5;
    }
    75% { 
        transform: translateY(10px) translateX(-30px) rotate(270deg);
        opacity: 0.8;
    }
}

/* === CLEAN MINIMAL CONTAINER === */
.hero-content-glass {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 3rem 2rem;
    box-shadow: none;
    animation: contentFadeIn 1.2s ease-out forwards;
    position: relative;
    overflow: visible;
}

/* Suppression des éléments décoratifs problématiques */

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* === TYPOGRAPHY === */
.hero-title-glass {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: #8f6b3a;
    letter-spacing: -0.01em;
    position: relative;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-subtitle-glass {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    color: #c89850;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    animation: subtitleSlide 1.2s ease-out 0.3s both;
}

@keyframes subtitleSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description-glass p {
    color: #8f6b3a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    animation: descriptionFade 1.5s ease-out 0.6s both;
    font-weight: 500;
}

@keyframes descriptionFade {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === MODERN BUTTONS === */
.glass-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #c89850;
    border-radius: 12px;
    color: #745631;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: buttonSlide 1.8s ease-out 0.9s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.glass-button:hover::before {
    left: 100%;
}

.glass-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #c89850;
    transition: all 0.4s ease;
    z-index: -1;
}

.glass-button:hover::before {
    width: 100%;
}

.glass-button:hover {
    color: white;
    transform: translateY(-2px);
}

.glass-button-primary {
    background: #c89850;
    border: 2px solid #c89850;
    color: white;
    font-weight: 700;
}

.glass-button-primary::before {
    background: #b08142;
}

.glass-button-primary:hover {
    background: #b08142;
    border-color: #b08142;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(176, 129, 66, 0.3);
}

.glass-button-secondary {
    background: transparent;
    border: 2px solid #8f6b3a;
    color: #8f6b3a;
}

.glass-button-secondary::before {
    background: #8f6b3a;
}

.glass-button-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(143, 107, 58, 0.25);
}

@keyframes buttonSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === GLASS HERO STYLES OVERRIDES === */

.hero-section .bg-bronze-50::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-section .bg-bronze-50:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.hero-section .bg-bronze-50:hover::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15), 0 10px 15px -5px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .w-12 {
    transition: all 0.4s ease;
}

.feature-card:hover .w-12 {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: #8B5A2B; /* Couleur bronze plus foncée au survol */
}

/* Styles améliorés pour la section témoignages */
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15), 0 10px 15px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card .w-12 {
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover .w-12 {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px -3px rgba(0, 0, 0, 0.2);
    background-color: #f0e6d9; /* Couleur bronze plus claire au survol */
}

.testimonial-card .w-12::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card:hover .w-12::after {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

.testimonial-card h4 {
    transition: all 0.3s ease;
}

.testimonial-card:hover h4 {
    color: #5D4037;
}

.testimonial-card p.text-gray-600 {
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover p.text-gray-600 {
    transform: scale(1.02);
}

.testimonial-card p.text-gray-600::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 3rem;
    color: rgba(121, 85, 72, 0.1);
    font-family: serif;
    transition: all 0.3s ease;
}

.testimonial-card:hover p.text-gray-600::before {
    transform: translateY(-5px);
    color: rgba(121, 85, 72, 0.2);
}

.testimonial-card .text-yellow-400 {
    transition: all 0.3s ease;
}

.testimonial-card:hover .text-yellow-400 {
    transform: scale(1.1);
    filter: drop-shadow(0 0 3px rgba(255, 191, 0, 0.3));
}

.testimonial-card:hover .fas.fa-star {
    animation: starPulse 1.5s infinite alternate;
    animation-delay: calc(var(--star-index, 0) * 0.1s);
}

.testimonial-card .fas.fa-star:nth-child(1) { --star-index: 1; }
.testimonial-card .fas.fa-star:nth-child(2) { --star-index: 2; }
.testimonial-card .fas.fa-star:nth-child(3) { --star-index: 3; }
.testimonial-card .fas.fa-star:nth-child(4) { --star-index: 4; }
.testimonial-card .fas.fa-star:nth-child(5) { --star-index: 5; }

@keyframes starPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Styles améliorés pour la section tarifs */
.pricing-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.03) rotateY(-2deg);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2), 0 15px 20px -10px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card .absolute {
    transition: all 0.4s ease;
}

.pricing-card:hover .absolute {
    transform: scale(1.1) translateX(-5px);
    box-shadow: 0 5px 15px -3px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.pricing-card:hover h3 {
    color: #5D4037; /* Couleur marron foncée au survol */
    transform: scale(1.05);
}

.pricing-card h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5D4037, #A1887F);
    transition: width 0.4s ease;
}

.pricing-card:hover h3::after {
    width: 100%;
}

.pricing-card .text-4xl {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.000);
    position: relative;
}

.pricing-card:hover .text-4xl {
    transform: scale(1.15);
    color: #5D4037;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-card .fa-check {
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover .fa-check {
    transform: scale(1.3) rotate(5deg);
    color: #4CAF50; /* Vert plus vif au survol */
}

.pricing-card li {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pricing-card li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(121, 85, 72, 0.05);
    z-index: -1;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.pricing-card li:hover::before {
    width: 100%;
}

.pricing-card li:hover .text-gray-600 {
    transform: translateX(5px);
}

.pricing-card .text-gray-600 {
    transition: all 0.3s ease;
}

.pricing-card .cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.000);
}

.pricing-card .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: all 0.6s ease;
    z-index: -1;
}

.pricing-card .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.25);
    background-color: #6D4C41; /* Marron plus foncé au survol */
}

.pricing-card .cta-button:hover::before {
    left: 100%;
}

.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Styles pour les post-it de comptes rendus */
.postit-card {
    cursor: pointer;
    will-change: transform;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block; /* Assure que la carte prend toute la largeur disponible */
    text-decoration: none; /* Supprime le soulignement des liens */
    color: inherit; /* Conserve la couleur du texte */
}

.postit-card > div {
    height: 100%; /* Assure que la div interne prend toute la hauteur */
    overflow: hidden; /* Empêche tout débordement */
}

.postit-card:hover {
    z-index: 10;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15), 0 10px 15px -5px rgba(0, 0, 0, 0.1);
    text-decoration: none; /* S'assure qu'il n'y a pas de soulignement au survol */
}

.postit-card:active > div {
    transform: scale(0.98) !important; /* Effet de clic */
    transition: transform 0.1s ease;
}

.postit-card .fa-thumbtack {
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.postit-card:hover .fa-thumbtack {
    transform: rotate(0deg);
}

.postit-image-container {
    position: relative;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin: 0; /* Supprime toute marge qui pourrait causer des problèmes */
}

.postit-card img {
    transition: all 0.5s ease;
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0; /* Supprime toute marge qui pourrait causer des problèmes */
}

.postit-card:hover img {
    transform: scale(1.03);
}

/* Ajoute un indicateur visuel pour montrer que les cartes sont cliquables */
.postit-card:after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}

.postit-card:hover:after {
    opacity: 1;
}

/* Styles améliorés pour la section "Comment ça marche" */
#comment-ca-marche .w-16 {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.000);
    overflow: hidden;
    z-index: 1;
}

#comment-ca-marche .w-16::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

#comment-ca-marche .w-16:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.2);
}

#comment-ca-marche .w-16:hover::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#comment-ca-marche .flex-col {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.000);
}

#comment-ca-marche .flex-col:hover {
    transform: translateY(-10px);
}

#comment-ca-marche .flex-col:hover h3 {
    color: #5D4037;
}

#comment-ca-marche .fas.fa-chevron-right {
    transition: all 0.3s ease;
}

#comment-ca-marche:hover .fas.fa-chevron-right {
    animation: arrowPulse 1.5s infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

#comment-ca-marche .cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#comment-ca-marche .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transition: all 0.6s ease;
    z-index: -1;
}

#comment-ca-marche .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.25);
}

#comment-ca-marche .cta-button:hover::before {
    left: 100%;
}

/* Styles améliorés pour la section CTA finale */
.bg-bronze-600 {
    position: relative;
    overflow: hidden;
}

.bg-bronze-600::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.05) 25%, 
        rgba(255,255,255,0.1) 50%, 
        rgba(255,255,255,0.05) 75%, 
        rgba(255,255,255,0) 100%);
    z-index: 1;
    transition: transform 10s linear;
    transform: translateX(0);
}

.bg-bronze-600:hover::before {
    transform: translateX(50%);
}

.bg-bronze-600 h2 {
    position: relative;
    transition: all 0.4s ease;
    z-index: 2;
}

.bg-bronze-600:hover h2 {
    transform: scale(1.03);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.bg-bronze-600 p {
    position: relative;
    transition: all 0.4s ease;
    z-index: 2;
}

.bg-bronze-600:hover p {
    transform: translateY(-3px);
}

.bg-bronze-600 .cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.000);
    z-index: 2;
}

.bg-bronze-600 .cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.bg-bronze-600 .cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.95);
    color: #5D4037;
}

.bg-bronze-600 .cta-button:hover::after {
    opacity: 1;
    animation: pulse 2s infinite;
}

/* Animations pour les sections au scroll */
.scroll-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.scroll-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation pour les post-it au chargement de la page */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.postit-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.postit-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.postit-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* Styles pour le bouton de défilement */
.scroll-down-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-down-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* === PROMO BADGE === */
.hero-promo-glass {
    animation: promoFade 2.1s ease-out 1.2s both;
}

.promo-badge-glass {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f9f1e6, #f2e2cc);
    border: 1px solid #dbb885;
    border-radius: 10px;
    color: #8f6b3a;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(116, 86, 49, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-badge-glass:hover {
    background: linear-gradient(135deg, #f2e2cc, #e8d0a9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(116, 86, 49, 0.15);
    border-color: #c89850;
}

.promo-badge-glass i {
    color: #c89850;
    margin-right: 0.5rem;
    animation: giftBounce 2s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes promoFade {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SCROLL BUTTON === */
.scroll-down-glass {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scrollAppear 2.4s ease-out 1.5s both;
}

.scroll-icon-glass {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.scroll-icon-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.12),
        inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

@keyframes scrollAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-content-glass {
        padding: 2.5rem 2rem;
        margin: 1rem;
    }
    
    .hero-actions-glass {
        flex-direction: column;
    }
    
    .glass-button {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .glass-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content-glass {
        padding: 2rem 1.5rem;
    }
}