* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    color: #fff;
}

/* NAVBAR */
nav {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.logo {
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffa500;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffa500;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #ffa500;
}

.nav-links a.active::after {
    width: 100%;
}

.menu-mobile {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="%23ffa500" stroke-width="2"/><path d="M30 30 L70 30 L70 70 L30 70 Z" fill="none" stroke="%23ffa500" stroke-width="2"/><path d="M40 40 L60 40 L60 60 L40 60 Z" fill="none" stroke="%23ffa500" stroke-width="2"/></svg>');
    background-size: 200px 200px;
    opacity: 0.1;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    color: #ffa500;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.hero h1 span {
    color: #fff;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-highlight {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid #ffa500;
    border-radius: 50px;
    padding: 15px 30px;
    margin: 30px 0;
    display: inline-block;
}

.hero-highlight i {
    color: #ffa500;
    margin-right: 10px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* BOTÕES */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: #ffa500;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.btn:hover {
    background: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffa500;
    color: #ffa500;
    box-shadow: none;
}

.btn-outline:hover {
    background: #ffa500;
    color: #000;
}

.btn-small {
    background: #ffa500;
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-small:hover {
    background: #fff;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* SEÇÕES GERAIS */
section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #ffa500;
    margin-bottom: 15px;
}

.section-title p {
    color: #888;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* LANDING SPOTLIGHT */
.landing-spotlight {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-radius: 30px;
    padding: 60px;
    margin: 40px 0;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.landing-spotlight::before {
    content: 'LP';
    position: absolute;
    right: -50px;
    top: -50px;
    font-size: 200px;
    font-weight: bold;
    color: rgba(255, 165, 0, 0.05);
    transform: rotate(15deg);
}

.landing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.landing-info h3 {
    font-size: 2rem;
    color: #ffa500;
    margin-bottom: 20px;
}

.landing-info h3 i {
    margin-right: 15px;
}

.landing-info p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.landing-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.landing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.landing-features li i {
    color: #ffa500;
    font-size: 1.2rem;
}

.landing-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffa500;
    line-height: 1;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.landing-image {
    position: relative;
}

.landing-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffa500;
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}

/* SERVIÇOS GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #111;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border: 2px solid #ffa500;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.1);
}

.service-card.featured::before {
    content: '⭐ MAIS PROCURADO';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ffa500;
    color: #000;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ffa500;
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: #ffa500;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* PORTFOLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: #ffa500;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.portfolio-overlay p {
    color: #ccc;
    margin-bottom: 15px;
}

.portfolio-overlay .tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.portfolio-overlay .tags span {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* DEPOIMENTOS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ffa500;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateX(10px);
}

.testimonial-card i {
    color: #ffa500;
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: #ffa500;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* CONTATO */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #111;
    border-radius: 20px;
    padding: 50px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffa500;
}

.contact-info p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #ccc;
}

.contact-details li i {
    color: #ffa500;
    font-size: 1.2rem;
    width: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffa500;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
}

.modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    background: #111;
}

.modal-header button {
    padding: 10px 25px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-header button:hover {
    background: #ffa500;
    color: #000;
}

.modal-header .close-btn {
    background: #dc3545;
}

.modal-header .close-btn:hover {
    background: #c82333;
}

.modal-frame {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.modal-frame iframe {
    width: 100%;
    height: 100%;
    border: 2px solid #333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* FOOTER */
footer {
    background: #000;
    padding: 50px 50px 20px;
    border-top: 1px solid #222;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #ffa500;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #888;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffa500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    background: #222;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffa500;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .logo {
        height: 50px;
    }

    .nav-links {
        display: none;
    }

    .menu-mobile {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-outline {
        margin-left: 0;
    }

    .landing-grid {
        grid-template-columns: 1fr;
    }

    .landing-spotlight {
        padding: 30px;
    }

    .landing-features {
        grid-template-columns: 1fr;
    }

    .landing-stats {
        flex-direction: column;
        gap: 20px;
    }

    .service-card.featured {
        transform: scale(1);
    }

    section {
        padding: 60px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

@media (min-width: 1400px) {
    .logo {
        height: 90px;
    }
}