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

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: #1a1a1a;
    background-image: url('../images/bg-header.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 25px 0 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.header .container {
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 15px;
    text-shadow: 
        0 0 20px rgba(255, 0, 0, 0.8),
        0 0 40px rgba(255, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: logo-glow 3s ease-in-out infinite alternate;
}

@keyframes logo-glow {
    from {
        text-shadow: 
            0 0 20px rgba(255, 0, 0, 0.8),
            0 0 40px rgba(255, 0, 0, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    to {
        text-shadow: 
            0 0 30px rgba(255, 0, 0, 1),
            0 0 60px rgba(255, 0, 0, 0.8),
            2px 2px 8px rgba(0, 0, 0, 0.9);
    }
}

.tagline {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: text-fade-in 2s ease-out;
}

@keyframes text-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    color: #ff0000;
    font-weight: 900;
    font-size: 1.4em;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        transparent 20%, 
        rgba(180, 180, 180, 0.08) 30%, 
        rgba(200, 200, 200, 0.12) 40%, 
        rgba(220, 220, 220, 0.15) 50%, 
        rgba(200, 200, 200, 0.12) 60%, 
        rgba(180, 180, 180, 0.08) 70%, 
        transparent 80%, 
        transparent 100%);
    animation: light-sweep 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Suporte para navegadores que não suportam background-clip */
@supports not (-webkit-background-clip: text) {
    .highlight {
        background: none;
        -webkit-text-fill-color: initial;
        color: #ff0000;
        animation: text-glow 3s ease-in-out infinite;
    }
}




@keyframes light-sweep {
    0% {
        right: -200%;
    }
    50% {
        right: 100%;
    }
    100% {
        right: -200%;
    }
}

@keyframes text-glow {
    0%, 100% {
        color: #ff0000;
        text-shadow: 
            0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 15px #ff0000;
    }
    50% {
        color: #ff6666;
        text-shadow: 
            0 0 10px #ff6666,
            0 0 20px #ff6666,
            0 0 30px #ff6666;
    }
}

/* Hero Section */
.hero {
    padding: 0px 0 30px 0;
    background-color: #1a1a1a;
    background-image: 
        linear-gradient(rgba(26, 25, 25, 0.7), rgba(24, 24, 24, 0.8)),
        url('../images/bg-header.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.video-container {
    margin-bottom: 25px;
    border: 3px solid #ff0000;
    border-radius: 15px;
    overflow: hidden;
    background: #222;
    position: relative;
    cursor: pointer;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Video Overlay - Hidden by default */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 70%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

/* Show overlay on hover or when video is paused */
.video-container:hover .video-overlay,
.video-container.paused .video-overlay,
.video-container.show-controls .video-overlay {
    opacity: 1;
    pointer-events: all;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.play-pause-btn,
.volume-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.play-pause-btn:hover,
.volume-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Hide pause icon by default, show play */
.play-pause-btn .fa-pause {
    display: none;
}

/* When playing, hide play and show pause */
.video-container.playing .play-pause-btn .fa-play {
    display: none;
}

.video-container.playing .play-pause-btn .fa-pause {
    display: block;
}

/* Volume button states */
.volume-btn .fa-volume-mute {
    display: none;
}

.video-container.muted .volume-btn .fa-volume-up {
    display: none;
}

.video-container.muted .volume-btn .fa-volume-mute {
    display: block;
}

/* Progress Container */
.progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #ff0000;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-container:hover {
    height: 8px;
    margin: -1px 0;
}

/* Video Time */
.video-time {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.video-time .current-time::after {
    content: " / ";
    opacity: 0.7;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .video-controls {
        bottom: 10px;
        left: 10px;
        right: 10px;
        gap: 10px;
    }
    
    .play-pause-btn,
    .volume-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .video-time {
        font-size: 11px;
        min-width: 70px;
    }
    
    .progress-container {
        height: 8px;
    }
    
    .progress-container:hover {
        height: 10px;
        margin: -1px 0;
    }
}

/* Clean video appearance - no controls visible by default */
.video-container video::-webkit-media-controls {
    display: none !important;
}

.video-container video::-webkit-media-controls-panel {
    display: none !important;
}

.video-container video::-webkit-media-controls-play-button {
    display: none !important;
}

.video-container video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* Video.js specific styles */
.video-js {
    width: 100% !important;
    height: 400px !important;
    border-radius: 15px;
    overflow: hidden;
}

.video-js .vjs-tech {
    object-fit: cover;
}

.video-js .vjs-control-bar {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    border-radius: 0 0 15px 15px;
}

.video-js .vjs-big-play-button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 76px;
    font-size: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.video-js .vjs-big-play-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: scale(1.1);
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
    font-size: 24px;
}

/* Hide all Video.js controls completely - MAXIMUM SPECIFICITY */
.video-container .video-js .vjs-control-bar,
.video-container .video-js .vjs-fullscreen-control,
.video-container .video-js .vjs-play-control,
.video-container .video-js .vjs-volume-panel,
.video-container .video-js .vjs-current-time,
.video-container .video-js .vjs-time-divider,
.video-container .video-js .vjs-duration,
.video-container .video-js .vjs-progress-control,
.video-container .video-js .vjs-remaining-time,
.video-container .video-js .vjs-playback-rate,
.video-container .video-js .vjs-chapters-button,
.video-container .video-js .vjs-descriptions-button,
.video-container .video-js .vjs-captions-button,
.video-container .video-js .vjs-audio-button,
.video-container .video-js .vjs-picture-in-picture-control,
.video-js.vjs-default-skin .vjs-control-bar,
.video-js.vjs-default-skin .vjs-fullscreen-control,
.video-js.vjs-default-skin .vjs-play-control,
.video-js.vjs-default-skin .vjs-volume-panel,
.video-js.vjs-default-skin .vjs-current-time,
.video-js.vjs-default-skin .vjs-time-divider,
.video-js.vjs-default-skin .vjs-duration,
.video-js.vjs-default-skin .vjs-progress-control,
.video-js.vjs-default-skin .vjs-remaining-time,
.video-js.vjs-default-skin .vjs-playback-rate,
.video-js.vjs-default-skin .vjs-chapters-button,
.video-js.vjs-default-skin .vjs-descriptions-button,
.video-js.vjs-default-skin .vjs-captions-button,
.video-js.vjs-default-skin .vjs-audio-button,
.video-js.vjs-default-skin .vjs-picture-in-picture-control {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Prevent fullscreen on double-tap/click */
.video-container .video-js .vjs-tech,
.video-js.vjs-default-skin .vjs-tech {
    pointer-events: auto !important;
}

/* Indicator for when user interaction is needed */
.video-container.needs-interaction::before {
    content: "▶ Toque para reproduzir";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    pointer-events: none;
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* Botão de Mute/Unmute - MÁXIMA ESPECIFICIDADE */
.video-container .mute-toggle-button,
.video-container #mute-toggle-btn,
#mute-toggle-btn.mute-toggle-button {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    bottom: auto !important;
    left: auto !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 15px 20px !important;
    color: white !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    z-index: 10000 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
}

.video-container .mute-toggle-button:hover,
.video-container #mute-toggle-btn:hover,
#mute-toggle-btn.mute-toggle-button:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

.video-container .mute-toggle-button:active,
.video-container #mute-toggle-btn:active,
#mute-toggle-btn.mute-toggle-button:active {
    transform: translateY(0) !important;
}

.mute-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.mute-text {
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

/* Estados do botão - MÁXIMA ESPECIFICIDADE */
.video-container .mute-toggle-button.muted,
.video-container #mute-toggle-btn.muted,
#mute-toggle-btn.mute-toggle-button.muted {
    background: rgba(220, 53, 69, 0.8) !important;
}

.video-container .mute-toggle-button.muted:hover,
.video-container #mute-toggle-btn.muted:hover,
#mute-toggle-btn.mute-toggle-button.muted:hover {
    background: rgba(220, 53, 69, 1) !important;
}

/* Posicionamento relativo do container */
.video-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Video.js responsive adjustments */
@media (max-width: 768px) {
    .video-js {
        height: 250px !important;
    }
    
    .video-js .vjs-big-play-button {
        width: 60px;
        height: 60px;
        line-height: 56px;
        font-size: 18px;
    }
    
    /* Extra mobile protection against fullscreen */
    .video-js .vjs-fullscreen-control,
    .video-js .vjs-picture-in-picture-control {
        display: none !important;
    }
    
    /* Ajustes do botão de mute para mobile - MÁXIMA ESPECIFICIDADE */
    .video-container .mute-toggle-button,
    .video-container #mute-toggle-btn,
    #mute-toggle-btn.mute-toggle-button {
        top: 15px !important;
        right: 15px !important;
        padding: 12px 16px !important;
        font-size: 14px !important;
    }
    
    .mute-icon {
        width: 20px;
        height: 20px;
    }
    
    .mute-text {
        display: none; /* Oculta texto em mobile para economizar espaço */
    }
}

@media (max-width: 480px) {
    .video-js {
        height: 200px !important;
    }
}

.video-placeholder {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #333, #555);
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.video-placeholder:hover {
    background: linear-gradient(45deg, #444, #666);
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.video-placeholder p {
    color: #ccc;
    font-size: 1rem;
}

.hero-text {
    text-align: center;
    margin-bottom: 30px;
}

.hero-text h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: bold;
}

.red-text {
    color: #ff0000;
    font-weight: bold;
}

.white-text {
    color: #fff;
}

.subtitle {
    font-size: 1.1rem;
    color: #ff0000;
    font-weight: bold;
    margin-top: 10px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #ff0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    width: 100%;
    margin: 10px 0;
}

.cta-button:hover {
    background: linear-gradient(45deg, #cc0000, #990000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.main-cta {
    font-size: 1.1rem;
    padding: 18px 30px;
    animation: glow 2s ease-in-out infinite alternate;
}

.secondary {
    background: linear-gradient(45deg, #333, #555);
    border-color: #666;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.secondary:hover {
    background: linear-gradient(45deg, #555, #777);
}

/* Models Grid */
.models-grid {
    padding: 40px 0;
    background: #111;
}

.models-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.model-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.model-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.1);
}

.verified-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #1da1f2;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.model-info {
    padding: 15px;
}

.model-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.username {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #ccc;
}

.stats span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.stats i {
    color: #ff0000;
}

/* Telegram Buttons */
.telegram-btn {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #0088cc, #0066aa);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #0099dd, #0077bb);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
    border-color: #00aaff;
}

/* Models CTA Section */
.models-cta-section {
    margin-top: 40px;
    padding: 0 20px;
}

.models-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: redButtonPulse 2s infinite;
}

.models-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.6);
    background: linear-gradient(135deg, #ff3333, #ff0000);
    border-color: rgba(255, 255, 255, 0.2);
}

.models-cta-button i {
    font-size: 1.4rem;
}

.models-cta-button .fa-fire {
    color: #ffaa00;
    animation: fireFlicker 1.5s infinite alternate;
}

.models-cta-button .fa-arrow-right {
    transition: transform 0.3s ease;
}

.models-cta-button:hover .fa-arrow-right {
    transform: translateX(5px);
}

@keyframes fireFlicker {
    0% {
        color: #ffaa00;
        text-shadow: 0 0 5px #ffaa00;
    }
    100% {
        color: #ff6600;
        text-shadow: 0 0 10px #ff6600, 0 0 15px #ff6600;
    }
}

.telegram-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 136, 204, 0.3);
}

.telegram-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
    animation: telegram-pulse 2s infinite;
}

.telegram-btn::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;
}

.telegram-btn:hover::before {
    left: 100%;
}

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

/* Features Section */
.features {
    padding: 40px 0;
    background-color: #1a1a1a;
    background-image: 
        linear-gradient(rgba(26, 25, 25, 0.7), rgba(24, 24, 24, 0.8)),
        url('../images/bg-features-section.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.feature-card:last-child {
    margin-bottom: 0;
}

.feature-card:hover {
    border-color: #ff0000;
    transform: translateY(-3px);
}

.feature-image {
    height: 150px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 20px;
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ff0000;
}

.feature-content p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 30px 0;
    background-color: #1a1a1a;
    background-image: 
        linear-gradient(rgba(26, 25, 25, 0.7), rgba(24, 24, 24, 0.8)),
        url('../images/bg-features-section.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff0000;
}

.benefit-item i {
    color: #ff0000;
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
}

.benefit-item span {
    color: #ccc;
    line-height: 1.5;
}

.benefit-item strong {
    color: #fff;
}

/* Offer Section */
.offer {
    padding: 40px 0;
    background-color: #1a1a1a;
    background-image: 
        linear-gradient(rgba(26, 25, 25, 0.7), rgba(24, 24, 24, 0.8)),
        url('../images/bg-offer-section.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.offer-header {
    margin-bottom: 30px;
    position: relative;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.15);
    color: #ff3333;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    transition: all 0.2s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.offer-badge i {
    font-size: 1.1rem;
    color: #ff3333;
}

.offer-badge span {
    font-weight: 700;
}

.offer-header h3 {
    font-size: 2.4rem;
    color: #ff3333;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(255, 0, 0, 0.5);
}

.offer-header i {
    font-size: 2rem;
    color: #ff3333;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.offer-header p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.offer-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.countdown-section {
    margin: 32px 0;
    text-align: center;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.countdown {
    margin: 24px 0;
    position: relative;
    display: inline-block;
}

#countdown-timer {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 2px;
}

#countdown-timer:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.offer-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 32px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.highlight-item i {
    font-size: 1.25rem;
    color: #ff4444;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.highlight-item span {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.highlight-item strong {
    color: #ffffff;
    font-weight: 600;
}

.cta-section {
    margin-top: 40px;
    text-align: center;
}

.cta-section .cta-button {
    background: linear-gradient(135deg, #ff4444, #ff2222);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(255, 68, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 280px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(255, 68, 68, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ff5555, #ff3333);
}

.cta-section .cta-button:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.cta-subtext {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
    line-height: 1.2;
}

@keyframes redButtonPulse {
    0% {
        box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
    }
    100% {
        box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    }
}

@keyframes redButtonGlow {
    0% {
        box-shadow: 0 10px 30px rgba(255, 0, 0, 0.6);
    }
    100% {
        box-shadow: 0 12px 35px rgba(255, 0, 0, 0.8);
    }
}

@media (min-width: 768px) {
    .offer-highlights {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }
    
    .highlight-item {
        flex: 1;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .highlight-item:hover {
        transform: translateY(-5px);
    }
    
    .models-cta-button {
        font-size: 1.1rem;
        padding: 18px 25px;
        gap: 12px;
    }
    
    .models-cta-button i {
        font-size: 1.2rem;
    }
}

/* Removed all excessive animations for clean design */

/* Footer */
.footer {
    background: #111;
    padding: 40px 0 20px;
}

.brand-section {
    text-align: center;
    margin-bottom: 30px;
}

.brand-name {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 20px;
    font-weight: bold;
}

.brand-features {
    margin-bottom: 25px;
}

.brand-features p {
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.brand-features i {
    color: #ff0000;
}



.footer-models {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-model {
    display: flex;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    min-height: 120px;
}

.footer-model img {
    width: 120px;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.footer-model-info {
    padding: 15px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-model-info h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #fff;
    font-weight: 600;
}

.footer-model-info p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-stats {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: #ccc;
    flex-wrap: wrap;
}

.footer-stats span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.footer-stats i {
    color: #ff0000;
}

.verified {
    color: #1da1f2;
    font-size: 0.8rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3); }
    to { box-shadow: 0 4px 25px rgba(255, 0, 0, 0.6); }
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    .models-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-models {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
    }
    

}

/* Media Queries para responsividade - Clean Design */
@media (max-width: 768px) {
    .offer {
        margin: 30px 12px;
        padding: 40px 12px;
        border-radius: 16px;
        background-attachment: scroll; /* Melhora performance em mobile */
    }
    

    
    .offer-header h3 {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }
    
    .offer-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .offer-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .countdown-section {
        margin: 24px 0;
    }
    
    .countdown-label {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    #countdown-timer {
        font-size: 2rem;
        padding: 16px 24px;
        border-radius: 14px;
    }
    
    .offer-highlights {
        max-width: 100%;
        gap: 10px;
        margin: 24px 0;
    }
    
    .highlight-item {
        padding: 14px 16px;
        border-radius: 10px;
        gap: 14px;
    }
    
    .highlight-item i {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .highlight-item span {
        font-size: 0.85rem;
    }
    
    .cta-section {
        margin-top: 32px;
    }
    
    .cta-section .cta-button {
        padding: 18px 32px;
        font-size: 1rem;
        border-radius: 14px;
        min-width: 260px;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-subtext {
        font-size: 0.8rem;
    }
    
    /* Otimização das imagens dos modelos para tablet */
    .model-image {
        height: 260px;
    }
    
    /* Otimização do footer-models para tablet */
    .footer-model {
        min-height: 100px;
    }
    
    .footer-model img {
        width: 100px;
    }
}

@media (min-width: 1024px) {
    .models-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-models {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        display: flex;
        align-items: center;
    }
    
    .feature-image {
        width: 40%;
        height: 200px;
    }
    
    .feature-content {
        width: 60%;
    }
    
    /* Otimização das imagens dos modelos para desktop */
    .model-image {
        height: 320px;
    }
}

/* Mobile-first optimizations */
@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Otimizações específicas da seção Offer para mobile pequeno */
    .offer {
        margin: 20px 8px;
        padding: 30px 8px;
        border-radius: 12px;
    }
    

    
    .offer-header h3 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .offer-subtitle {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .offer-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .countdown-section {
        margin: 20px 0;
    }
    
    .countdown-label {
        font-size: 0.75rem;
        margin-bottom: 14px;
    }
    
    #countdown-timer {
        font-size: 1.8rem;
        padding: 14px 20px;
        border-radius: 12px;
    }
    
    .offer-highlights {
        margin: 20px 0;
        gap: 8px;
        max-width: 100%;
    }
    
    .highlight-item {
        padding: 12px 14px;
        border-radius: 8px;
        gap: 12px;
    }
    
    .highlight-item i {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .highlight-item span {
        font-size: 0.8rem;
    }
    
    .cta-section {
        margin-top: 28px;
    }
    
    .cta-section .cta-button {
        padding: 16px 24px;
        font-size: 0.95rem;
        border-radius: 12px;
        min-width: 240px;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    .cta-subtext {
        font-size: 0.75rem;
    }
    
    .stats {
        font-size: 0.7rem;
    }
    
    .footer-stats {
        font-size: 0.6rem;
        gap: 5px;
    }
    
    /* Otimização das imagens dos modelos para mobile */
    .model-image {
        height: 240px;
    }
    
    /* Otimização do footer-models para mobile */
    .footer-model {
        min-height: 90px;
    }
    
    .footer-model img {
        width: 90px;
    }
    
    .footer-model-info {
        padding: 12px 16px;
    }
    
    .footer-model-info h4 {
        font-size: 1rem;
    }
    
    .footer-stats {
        font-size: 0.7rem;
        gap: 8px;
    }
    }