* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Mantido igual */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo h1 {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo span {
    color: #FFBF00;
    animation: buzz 2s infinite;
}

@keyframes buzz {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFBF00;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - VIDEO 100% RESPONSIVO ✅ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #DDBE8F 0%, #FFBF00 50%, #FFD700 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    background-image: url(img-foto.jpg);
    background-size: cover;
    background-position: center;
    /*background: rgba(255, 255, 255, 0.15);*/
    backdrop-filter: blur(20px);
    border-radius: 30px;
    /*padding: 4rem 3rem;
    border: 1px solid rgba(255, 215, 0, 0.2);*/
    border-left: 1px solid #FFD700;
    border-right: 1px solid #913f1f;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: slideInLeft 1s ease-out;
    text-align: left;
}

.hero-content .bg-hero {
    background: linear-gradient(135deg, #FFD700, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.2), #913f1f); 
    padding: 2rem 0 2rem 1rem;
    border-radius: 30px;
    position: relative;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content h2 {
    /*font-size: clamp(2.5rem, 5vw, 4.5rem);*/
    font-size: clamp(2.3rem, 5vw, 1.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #000000, #913f1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 3rem;
    font-weight: 300;
    color: #000;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button.primary {
    background: linear-gradient(45deg, #000000, #913f1f);
    color: #FFD700 !important;
}

.cta-button.secondary {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white !important;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* VIDEO TOPO 100% RESPONSIVO ✅ */
.hero-video-container {
    position: relative;
    animation: slideInRight 1s ease-out;
    height: 60vh; /* Altura base para responsivo */
    min-height: 430px;
    background: linear-gradient(135deg, #913f1f, #FFD700, #913f1f);
    border-radius: 25px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.hero-video {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    object-position: center;
    position: relative;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FF0000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse-play 2s infinite;
    z-index: 3;
}

.play-overlay:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse-play {
    0% { 
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% { 
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.volume-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0.7;
}

.volume-toggle:hover {
    background: white;
    transform: scale(1.1);
}

.volume-toggle.muted i::before {
    content: "🔇";
}

/* Serviços Section */
.servicos {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.servico-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #FFD700;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #FFBF00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.servico-card h3 {
    color: #913f1f;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.servico-card p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.servico-preco {
    display: inline-block;
    background: linear-gradient(45deg, #000, #913f1f);
    color: #FFD700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Vídeos Section */
.videos {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 120px 0;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-player-wrapper {
    position: relative;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    margin-bottom: 3rem;
}

#videoPlayer {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-video {
    background: linear-gradient(45deg, #FFD700, #FFBF00);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-video:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.video-info {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-title {
    color: #913f1f;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.video-counter {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Seções gerais */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #913f1f;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '🐝';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.produto-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.produto-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

/* IFRAME YOUTUBE RESPONSIVO E FUNCIONANDO ✅ */
.youtube-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto-info {
    padding: 2rem;
    text-align: center;
}

.produto-info h3 {
    color: #913f1f;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.preco {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFBF00);
    color: #000;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.contato {
    background: linear-gradient(135deg, #DDBE8F 0%, #FFBF00 100%);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contato-info h3 {
    color: #000;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contato-info i {
    color: #FFD700;
    margin-right: 0.5rem;
}

.contato-item {
    margin-bottom: 2rem;
}

.contato-item strong {
    color: #913f1f;
}

.contato-item a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contato-item a:hover {
    color: #913f1f;
    transform: translateX(5px);
}

.contato-item .fa-whatsapp {
    font-size: 1.6rem;
    background: #19a675;
    border-radius: 50%;
}

.contato-item .fa-envelope {
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 3px #FFD700;
}

.contato-item a:hover .fa-envelope {
    color: #FFD700;
    text-shadow: 1px 1px 3px #913f1f;
}

.contato-item .fa-youtube {
    font-size: 1.3rem;
}

.whatsapp-link {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white !important;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.youtube-link {
    background: linear-gradient(45deg, #FF0000, #CC0000);
    color: white !important;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.youtube-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

/* FORMULÁRIO WHATSAPP ✅ */
.contato-form {
    background: rgba(255,255,255,0.9);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid #DDBE8F;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.contato-form button {
    width: 100%;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contato-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.footer {
    background: #000;
    color: #FFD700;
    text-align: center;
    padding: 2rem 0 1.7rem;
}

.footer i {
    color: #FFBF00;
}

footer div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

footer .ads {
    font-size: 12px;
    margin-top: -10px;
    letter-spacing: 1px;
    color: grey;
    margin-right: 5px;
}

footer div img {
    width: 64px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0,0,0,0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
        /*padding: 2.5rem 2rem;*/
        height: 61vh;
    }

    .bg-hero {
        height: 61vh;
    }

    .hero-content h2 {
        font-size: clamp(1.3rem, 2vw, 1rem);
    }

    .bg-hero p {
        display: none;
    }

    .cta-button {
        display: none;
    }
    
    .hero-video-container {
        order: 1;
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
   /*.hero-content {
        padding: 2rem 1.5rem;
    }*/
    
    .hero-video-container {
        height: 50vh;
        min-height: 390px;
    }

    .hero-video {
        object-fit: cover;
    }

    .contato-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 390px) {
    .youtube-container {
        padding-bottom: 64.25%
    }
}

