@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #050505; /* Deep Obsidian */
    --primary-light: #0f0f0f;
    --accent: #d4af37; /* Cyber Gold */
    --accent-hover: #f59e0b;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --bg-light: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--primary);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    transform: perspective(500px) rotateX(60deg) translateY(-20%);
    animation: grid-move 20s linear infinite;
    pointer-events: none;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(-20%) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(-20%) translateY(60px); }
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    padding: 1.25rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-tagline {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
    border-left: 1px solid var(--glass-border);
    padding-left: 2rem;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header-logo-img:hover {
    transform: scale(1.1);
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.btn-header {
    padding: 0.75rem 1.75rem;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid var(--accent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-header:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 150px;
    overflow: hidden;
    background: #000;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.9) 100%);
    z-index: 2;
}

.hero .container.hero-audience {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 850px;
    margin-top: 1.5rem;
    line-height: 1.7;
}

.hero-audience span {
    color: var(--gold);
    font-weight: 800;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image-container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero .container.hero-centered {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
}

.unified-hero-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 4rem auto 0;
    gap: 0;
}

.hero-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 2rem;
    gap: 0.5rem;
}

.scarcity-hint {
    margin-top: 1rem;
    color: #ff4b2b;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.hero-image-container {
    perspective: 1000px;
    position: relative;
}

.platform-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 130px;
    background: #ffffff;
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 15px 10px;
    box-shadow: -10px 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
    animation: float-side 4s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition);
}

.platform-float:hover {
    right: 30px;
    box-shadow: -15px 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212, 175, 55, 0.4);
}

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

.platform-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}

.platform-text {
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--gold);
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flyer-img.dynamic-side {
    width: 100%;
    max-width: 700px;
    border-radius: 24px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.1);
    transform: none; /* Straight as requested */
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float-subtle 5s ease-in-out infinite;
}

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

.flyer-img.dynamic-side:hover {
    transform: scale(1.01);
    box-shadow: 0 60px 110px -20px rgba(0, 0, 0, 1), 0 0 60px rgba(212, 175, 55, 0.2);
}

.tech-style {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.tech-style .countdown-box {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 110px;
    position: relative;
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.tech-style .countdown-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.7;
}

.tech-style .countdown-value {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.tech-style .countdown-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: #888;
    margin-top: 0.8rem;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-top-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.organizer-badge {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.date-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.date-badge i {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 4px;
}
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.hero p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: 0;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.btn-primary {
    padding: 1.25rem 3rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4);
}

/* Carousel Styles */
.carousel-section {
    padding: 80px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 50px;
}

.carousel-header h3 {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 10px;
}

.carousel-header p {
    color: var(--text-muted);
}

.carousel-container {
    position: relative;
    max-width: 900px; /* Narrower as requested */
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 20px;
}

.carousel-slide {
    flex: 0 0 300px; /* Smaller slides */
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    background: var(--primary-light);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.1);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-nav button {
    background: #fff;
    border: 1px solid var(--glass-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.carousel-nav button:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

/* Countdown */
.countdown-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94A3B8;
}

/* Trust Section */
.trust-section {
    background: var(--bg-light);
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.6;
    filter: grayscale(1);
}

.trust-item {
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 3px;
    opacity: 0.6;
    transition: var(--transition);
}

.trust-item:hover {
    opacity: 1;
    color: var(--accent);
    transform: scale(1.1);
}

/* Promise Section */
.promise {
    background: var(--primary);
    border-bottom: 1px solid var(--glass-border);
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.promise-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.promise-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.extra-benefits {
    list-style: none;
}

.extra-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--white);
}

.extra-benefits i {
    color: var(--accent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--primary-light);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: rgba(212, 175, 55, 0.05);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.75rem;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.benefit-text {
    font-weight: 500;
    color: var(--white);
}

/* Details Section */
.details {
    background: #09090b; /* Dark block for contrast */
    color: var(--white);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.detail-item {
    padding: 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: var(--glass);
}

.detail-item h3 {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.detail-item p {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Footer Banner */
.footer-banner {
    background: #09090b;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 2.5rem;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-bubble {
    position: absolute;
    top: -45px;
    right: 0;
    background: #ff4b2b;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(255, 75, 43, 0.3);
    animation: float-soft 3s ease-in-out infinite;
}

.float-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ff4b2b;
}

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

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    font-size: 0.95rem;
}

.whatsapp-float:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.whatsapp-float:hover::before {
    left: 100%;
}

/* Cursor Interactivity */
.btn-header, .btn-primary, .btn-whatsapp, .benefit-card, .detail-item, .carousel-slide {
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(197, 160, 89, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

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

.institutional-bar {
    display: flex;
    align-items: center;
    background: #020202;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    height: 110px; /* Increased for better visibility */
    position: relative;
    margin-top: 4rem;
}

.bar-label {
    background: var(--gold-gradient);
    color: #050505;
    font-weight: 900;
    font-size: 0.75rem;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    letter-spacing: 2px;
    box-shadow: 20px 0 40px rgba(0,0,0,0.6);
    z-index: 20;
    position: relative;
}

.institutional-bar .infinite-carousel {
    flex: 1;
    padding: 0;
    background: transparent;
    border: none;
    width: 100%;
}

.institutional-bar .tape-track {
    animation-duration: 45s; /* Smooth linear flow */
}

.institutional-bar .tape-slide {
    width: 260px; /* Wider slide for larger logos */
}

.tape-slide img {
    height: 55px; /* Significantly larger images */
    width: auto;
    filter: none; /* Restored natural colors */
    opacity: 0.9;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tape-slide img:hover {
    opacity: 1;
    transform: scale(1.15) translateY(-5px);
}

.infinite-carousel {
    overflow: hidden;
    padding: 40px 0;
    background: #050505;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.tape-track {
    display: flex;
    width: fit-content;
    animation: scroll-tape 45s linear infinite;
}

.tape-slide {
    width: 400px; /* Wide format as images are 2000x600 */
    flex-shrink: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tape-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: grayscale(0.5) brightness(0.8);
    transition: var(--transition);
}

.tape-slide:hover img {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.05);
}

@keyframes scroll-tape {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 25)); }
}

.urgency-tag {
    background: rgba(255, 75, 43, 0.1);
    color: #ff4b2b;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 800;
    margin-bottom: 2rem;
    border: 1px solid #ff4b2b;
    display: inline-block;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 75, 43, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 75, 43, 0); }
}

.click-hint {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}
@media (max-width: 992px) {
    .hero-conversion-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin-top: 3rem;
    }

    .hero-image-container {
        order: -1;
    }

    .flyer-img.dynamic-side {
        max-width: 500px;
    }

    .hero-cta-side {
        align-items: center;
        text-align: center;
    }

    .tech-style {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-tagline {
        display: none;
    }

    .logo-group {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-audience {
        font-size: 1rem;
    }

    .hero-top-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-cta-side {
        padding: 2.5rem 1.5rem;
    }

    .tech-style {
        gap: 0.8rem;
    }

    .tech-style .countdown-box {
        min-width: 75px;
        padding: 1rem 0.5rem;
    }

    .tech-style .countdown-value {
        font-size: 1.8rem;
    }

    .btn-cta {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .institutional-bar {
        height: 70px;
    }

    .tape-slide img {
        height: 25px;
    }

    .tape-slide {
        width: 160px;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    /* Global Mobile Fixes */
    h1 { font-size: 1.6rem !important; line-height: 1.2 !important; }
    h2 { font-size: 1.4rem !important; }
    h3 { font-size: 1.2rem !important; }
    
    .section-padding { padding: 40px 0; }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem;
    }

    .hero-audience {
        font-size: 0.9rem;
        padding: 0;
    }

    .unified-hero-block {
        margin-top: 2rem;
        width: 100%;
    }

    .hero-image-container {
        width: 100%;
        max-width: 100%;
    }

    .flyer-img.dynamic-side {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 12px;
    }

    .countdown-tech-wrapper {
        margin-top: -1.5rem;
        width: 95%;
    }

    .hero-cta-actions {
        width: 100%;
        padding: 0;
        margin-top: 2rem;
    }

    .btn-cta {
        width: 90% !important;
        padding: 1.2rem;
        font-size: 1rem;
        margin: 0 auto;
    }

    /* Benefits Stacking */
    .benefits-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem;
    }

    .benefit-card {
        width: 100%;
        box-sizing: border-box;
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Details Stacking */
    .details-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Carousel Fix */
    .carousel-container {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .carousel-slide {
        flex: 0 0 100%;
        height: 220px;
    }

    .carousel-nav {
        margin-top: 20px;
        justify-content: center;
    }

    /* WhatsApp & Footer */
    .whatsapp-float {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        justify-content: center;
        padding: 12px;
        font-size: 0.85rem;
    }

    .whatsapp-float:hover {
        transform: translateX(50%) translateY(-5px);
    }

    .footer {
        padding-bottom: 100px; /* Space for fixed WhatsApp */
    }

    .institutional-bar {
        height: 80px;
    }

    .tape-slide {
        width: 180px;
    }

    .tape-slide img {
        height: 35px;
    }
}
