/* ===== DESIGN SYSTEM: INDUSTRIAL ELEGANTE PREMIUM ===== */
/* Colors: Black (#000000), Yellow (#f4c70f), White (#ffffff) */
/* Fonts: Bebas Neue (titles), Montserrat (subtitles), Inter (body) */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #000000;
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}


@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== NAVIGATION ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}



.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.navbar-logo-img {
    max-height: 50px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.navbar.scrolled {
    background-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}
/*
.navbar-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #f4c70f;
    letter-spacing: 0.05em;
}
*/

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.navbar-logo-img {
    max-height: 50px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.navbar-menu {
    display: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f4c70f;
}

/* ===== NAVBAR BADGE MOBILE ===== */
.navbar-badge-mobile {
    display: none;
    background-color: #000000;
    color: #f4c70f;
    padding: 0.5rem 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    white-space: nowrap;
}

/* Mostrar apenas em mobile (até 767px) */
@media (max-width: 767px) {
    .navbar-badge-mobile {
        display: block;
    }
}

/* Esconder em tablet e desktop (768px+) */
@media (min-width: 768px) {
    .navbar-badge-mobile {
        display: none !important;
    }
}

/* ===== BADGE HERO RESPONSIVO ===== */
.badge-hero {
    display: block !important;
    margin-bottom: 2rem;
}

/* Esconder em mobile */
@media (max-width: 767px) {
    .badge-hero {
        display: none !important;
    }
}

/* Mostrar em tablet e desktop */
@media (min-width: 768px) {
    .badge-hero {
        display: inline-block !important;
        margin-bottom: 2rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

.badge {
    display: inline-block;
    background-color: #000000;
    color: #f4c70f;
    padding: 0.75rem 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge2 {
    display: inline-block;
    background-color: #f4c70f;
    color: #000000;
    padding: 0.75rem 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-box {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-left: 4px solid #f4c70f;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #f4c70f;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #ffffff;
}

/* Event Highlight Box */
.event-highlight {
    background-color: #f4c70f;
    color: #000000;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 8px solid #000000;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.highlight-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.highlight-row:last-child {
    margin-bottom: 0;
}

.icon {
    width: 2rem;
    height: 2rem;
    color: #000000;
    flex-shrink: 0;
}

.highlight-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.highlight-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.chevron-down {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

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

/* ===== BUTTONS ===== */
.btn {
    padding: 1rem 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-primary {
    background-color: #000000;
    color: #f4c70f;
    border-color: #f4c70f;
}

.btn-primary:hover {
    background-color: #f4c70f;
    color: #000000;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
}

.btn-full {
    width: 100%;
}

/* ===== SECTIONS ===== */
.section {
    position: relative;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }
}

.section-white {
    background-color: #ffffff;
}

.section-black {
    background-color: #000000;
    color: #ffffff;
}

.section-gray {
    background-color: #f9f9f9;
}

.section-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #f4c70f;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 4rem;
    }
}

.section-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CARDS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.card {
    padding: 1.5rem;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-yellow {
    background-color: #f4c70f;
    color: #000000;
}

.card-black {
    background-color: #000000;
    color: #f4c70f;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-text {
    font-size: 0.875rem;
}

.card-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.product-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card.product-highlight {
    border: 4px solid #f4c70f;
}

.product-image {
    width: 100%;
    height: 160px;
    background-color: rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-badge {
    display: inline-block;
    background-color: rgba(244, 199, 15, 0.1);
    color: #f4c70f;
    padding: 0.25rem 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-info {
    font-size: 0.75rem;
    color: #666666;
    margin-bottom: 1rem;
}

.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f4c70f;
    margin-bottom: 1rem;
}

.product-price-large {
    font-size: 2rem;
}

/* ===== TWO COLUMN LAYOUT ===== */

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .two-column {
        grid-template-columns: 1fr 1fr;
    }
}

/*
.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .two-column {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
    
    .two-column > div {
        display: flex;
        flex-direction: column;
    }
}
*/
/* ===== UNITS LIST ===== */
.units-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.unit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #f0f0f0;
    padding: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.section-black .unit-item {
    background-color: rgba(255, 255, 255, 0.05);
}

.icon-small {
    width: 1.5rem;
    height: 1.5rem;
    color: #f4c70f;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.unit-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.unit-info {
    font-size: 0.875rem;
    color: #666666;
}

.section-black .unit-info {
    color: #cccccc;
}

/* ===== MAP PLACEHOLDER ===== */
/*
.map-placeholder {
    background-color: #000000;
    color: #f4c70f;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
*/
.map-placeholder {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 4px solid #f4c70f;
    overflow: hidden;
    background-color: transparent;
    max-height: 500px;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-white .map-placeholder {
    background-color: #000000;
}

.section-black .map-placeholder {
    background-color: rgba(255, 255, 255, 0.05);
    color: #f4c70f;
}

.map-content {
    text-align: center;
}

.map-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.map-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-info {
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.map-dots {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
}

/* ===== BENEFITS ===== */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.icon-large {
    width: 2.5rem;
    height: 2.5rem;
    color: #f4c70f;
    flex-shrink: 0;
}

.benefit-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.benefit-text {
    font-size: 0.95rem;
    color: #d0d0d0;
}

/* ===== WAREHOUSE IMAGE ===== */
.warehouse-image {
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    min-height: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background-color: #f4c70f;
    color: #000000;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    border-left: 8px solid #000000;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.highlight-subtext {
    font-size: 0.875rem;
    font-weight: 600;
}

/* ===== DEPOSIT INFO ===== */
.deposit-info {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 4px;
    border: 2px solid #f4c70f;
}

.deposit-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.deposit-address {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.deposit-hours {
    font-size: 0.875rem;
    color: #b0b0b0;
}

/* ===== EVENT CARDS ===== */
.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-card {
    background-color: #000000;
    color: #f4c70f;
    padding: 2rem;
    text-align: center;
    border-left: 8px solid #f4c70f;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.icon-event {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

.event-card-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-card-label {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    min-height: 250px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 4px solid #f4c70f;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.gallery-placeholder {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder-content {
    text-align: center;
    color: #f4c70f;
}

.gallery-plus {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-placeholder-content p {
    font-weight: 600;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ===== BUTTON ICONS ===== */
/* ===== BUTTON ICONS ===== */
.btn-icon {
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
    transition: all 0.3s ease;
}

/* Cor amarela no estado normal */
.btn-primary .btn-icon,
.btn-primary .btn-icon g,
.btn-primary .btn-icon path {
    fill: #f4c70f !important;
    stroke: #f4c70f !important;
}

/* Cor preta no hover */
.btn-primary:hover .btn-icon,
.btn-primary:hover .btn-icon g,
.btn-primary:hover .btn-icon path {
    fill: #000000 !important;
    stroke: #000000 !important;
}

.btn-icon {
    margin-right: 0.75rem; /* Aumenta o espaço */
}

/* ===== FINAL HIGHLIGHT ===== */
.final-highlight {
    background-color: #f4c70f;
    color: #000000;
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.final-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.final-highlight-date {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.final-highlight-location {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.final-highlight-city {
    font-size: 1rem;
    font-weight: 600;
}

/* ===== STICKY CTA ===== */
.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    padding: 1rem;
    z-index: 40;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

@media (min-width: 1024px) {
    .cta-sticky {
        display: none;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 2rem 0;
    border-top: 4px solid #f4c70f;
    text-align: center;
}

.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-text {
    font-size: 0.875rem;
    color: #b0b0b0;
    margin-bottom: 0.25rem;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* ===== BUTTON ANIMATIONS ===== */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 199, 15, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(244, 199, 15, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 199, 15, 0);
        transform: scale(1);
    }
}

@keyframes float-up {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Aplicar animação nos botões CTA principais */
.btn-primary {
    animation: float-up 3s ease-in-out infinite;
}

/* Efeito de brilho ao passar o mouse */
.btn-primary:hover {
    animation: pulse-glow 0.6s ease-out;
    box-shadow: 0 15px 35px rgba(244, 199, 15, 0.4);
}

/* ===== SUBSECTION TITLE ===== */
.subsection-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-black .subsection-title {
    color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .hero {
        padding-top: 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-cards {
        grid-template-columns: 1fr;
    }
}
