* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

:root {
    --dark: #303030;
    --orange: #bb470e;
    --light: #fafbff;
}

/* Header */
header {
    background: var(--dark);
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
}

.logo img {
    padding-top: 10px;
    width: 271px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6600;
}

/* Menu Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: 
    linear-gradient(135deg, rgba(48, 48, 48, 0.85), rgba(187, 71, 14, 0.75)),
    url('img/bg-hero.jpg') center/cover;
    color: white;
    padding: 125px 2rem 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    white-space: pre-line;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.btn-primary:hover {
    background: transparent;
    color: #ff6600;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(187,71,14,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark);
}

/* Services Section */
.services {
    padding: 80px 2rem;
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid var(--orange);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* VIDEOS SECTION */
.videos {
    padding: 80px 2rem;
    background: var(--dark);
    color: white;
}

.videos h2 {
    color: #fafbff;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.video-item {
    height: 250px;
    background: #1a1a1a;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid transparent;
}

.video-item i {
    color: #bfbfbf;
    z-index: 2;
}

.video-item:hover {
    transform: scale(1.05);
    border-color: var(--orange);
}

.video-item:hover i {
    color: #fafbff;
    z-index: 2;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(187,71,14,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 2;
    transition: all 0.3s;
}

.video-item:hover::before {
    background: var(--orange);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item::after {
    content: attr(data-title);
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    width: auto;
}

/* VIDEO MODAL */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    height: 450px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: rgba(0,0,0,0.8);
    padding: 1rem 2rem;
    border-radius: 50px;
    align-items: center;
}

.video-btn {
    background: var(--orange);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-btn:hover {
    background: #ff6600;
    transform: scale(1.1);
}

.video-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.close-video {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.close-video:hover {
    background: var(--orange);
    transform: rotate(90deg);
}

/* Gallery */
.gallery {
    padding: 80px 2rem;
    background: var(--dark);
    color: white;
}

.gallery h2 {
    color: #fafbff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
}

.ft-img {
    text-align: center;  opacity: 0.8;
    display: none;
}

/* FOTOS REALISTAS PARA CADA SERVIÇO */
.gallery-item:nth-child(1) {
    background-image: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #2980b9 100%);
}
.gallery-item:nth-child(2) {
    background-image: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #a93226 100%);
}
.gallery-item:nth-child(3) {
    background-image: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d68910 100%);
}
.gallery-item:nth-child(4) {
    background-image: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #229954 100%);
}
.gallery-item:nth-child(5) {
    background-image: linear-gradient(135deg, #9b59b6 0%, #8e44ad 50%, #7d3c98 100%);
}
.gallery-item:nth-child(6) {
    background-image: linear-gradient(135deg, #1abc9c 0%, #16a085 50%, #138d75 100%);
}

.gallery-item::before {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(187,71,14,0.95);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 80px 2rem;
    background: var(--light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    background: var(--orange);
    color: white;
    width: 50px;
    height: 50px;
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem;
}

footer a {
    text-decoration: none;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark);
    transition: right 0.3s ease;
    z-index: 2000;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: rotate(90deg);
}

.mobile-menu ul {
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 1.2rem 0;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #ff6600;
    padding-left: 1rem;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1500;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

#zap {
    display: flex;
}

/* Responsive */
@media (max-width: 960px) {
    nav {
        padding: 0 2rem;
    }
    .whatsapp-btn {
        display: none;
    }
    #zap {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 100px 1rem 60px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .video-container {
        width: 95%;
        height: 60vh;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hambúrguer Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 540px) {
    .logo img {
        width: 82%;
    }
    .videos-grid {
        margin-top: -2rem;
    }
    .ft-desk {
        display: none;
    }
    .ft-img {
        display: block;
    }
    .contact-content {
        margin-top: 1.5rem;
    }
}
