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

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000 0%, #a20908 100%);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */

/*header */
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: #a20908;
    text-decoration: none;
    background: linear-gradient(45deg, #a20908, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ffff00;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #ffff00, #a20908);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    padding-top: 100px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #000 0%, #a20908 100%);
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffff00, #ffffff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 0, 0.8), 0 0 40px rgba(162, 9, 8, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: white;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #ffff00, #a20908);
    margin: 2rem auto;
    border-radius: 2px;
}

/* Delivery Section */
.delivery-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #a20908 0%, #ff4444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.delivery-content {
    max-width: 1200px;
    text-align: center;
    width: 100%;
}

.section-icon {
    font-size: 4rem;
    color: #ffff00;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    border: 3px solid #ffff00;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffff00;
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-features {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item i {
    font-size: 2rem;
    color: #ffff00;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-item p {
    color: white;
}

.section-btn {
    background: linear-gradient(45deg, #ffff00, #ffd700);
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
}

.section-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.4);
}

/* Pickup Section */
.pickup-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.pickup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.pickup-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffff00;
}

.pickup-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
    color: white;
}

.about-text {
    padding: 2rem 0;
    border-left: 4px solid #ffff00;
    padding-left: 2rem;
    margin: 2rem 0;
}

.about-text h4 {
    color: #ffff00;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: white;
}

.pickup-visual {
    position: relative;
    height: 400px;
}

.pickup-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #a20908, #ff0000);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.logo-background {
    background: url("sua-imagem.jpg") no-repeat center center; 
    background-size: cover;
    opacity: 0.4; /* controla a transparência da imagem */ 
    z-index: -1; /* fica atrás do conteúdo */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.1;
    font-weight: 900;
    color: white;
    z-index: 1;
}

.pickup-image i {
    z-index: 2;
}

/* Video Section */
.video-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffff00 0%, #ff6600 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.video-content {
    max-width: 1200px;
    text-align: center;
    width: 100%;
}

.video-section .section-icon {
    border-color: #000;
    color: #000;
}

.video-section .section-title {
    color: #000;
}

.video-section .section-description {
    color: #000;
    opacity: 0.8;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #000;
    margin: 2rem auto 0;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(0,0,0,0.5);
}

.video-play-content {
    text-align: center;
    color: white;
}

.video-play-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.video-play-content p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-play-content span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-top: 3px solid #ffff00;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffff00;
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom i {
    margin: 0 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .pickup-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pickup-text h3 {
        font-size: 2rem;
    }
    
    .section-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-text {
        padding-left: 1rem;
    }
    
    .video-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .delivery-content,
    .pickup-content,
    .video-content {
        padding: 2rem 1rem;
    }
    
    .pickup-content {
        gap: 2rem;
    }
    
    .pickup-visual {
        height: 300px;
    }
}