/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #45b802, #45b802);
    color: #ffffff;
    box-shadow: 0 4px 15px #4fd402;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #e4e4e1
}

.btn-secondary {
    background: #d5c454;
    color: white;
}

.btn-secondary:hover {
    background: #e5ca1a;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #000000;
    color: #000000;
    background: transparent;
}

.btn-outline:hover {
    background: #d5c454;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(49, 49, 49, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}


.tagline {
    font-size: 0.75rem;
    color: #FFC107;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: -5px;
}

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

.nav-link {
    text-decoration: none;
    color: #e0dbdb;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d5c454;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d5c454;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

/* Seções */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #d5c454;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #FFC107, #d5c454);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Serviços */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #d5c454;
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Projetos */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: scale(1.05);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h4 {
    margin-bottom: 0.5rem;
}

.projects-cta {
    text-align: center;
}

/* Diferenciais */
.differentials {
    background: #f8f9fa;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.differential-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.differential-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d5c454, #d5c454);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.differential-card h3 {
    color: #d5c454;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    background-color: #f8f9fa;
}

/* Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d5c454, #d5c454);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    color: #d5c454;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: #404040;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #d5c454;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d5c454;
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.schedule p {
    margin-bottom: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #e0e0e0;
    margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #5de82a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px #4aeb19;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px #d5c454;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px #18fe46;
    }
    50% {
        box-shadow: 0 4px 15px #12d03c;
    }
    100% {
        box-shadow: 0 4px 15px #10a426;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }

    .services-grid,
    .projects-grid,
    .differentials-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-content,
    .differential-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}



/* ===== ESTILOS PARA PÁGINAS DE SERVIÇOS ===== */

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #d5c454;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #e9d23e;
}

.breadcrumb-nav span {
    color: #666;
}

/* Service Hero */
.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 80px 0;
}

.service-hero-content {
    padding: 0 20px;
}

.service-hero-title {
    font-size: 3rem;
    color: #d5c454;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-hero-image img {
    object-fit: cover;
}

/* Service About */
.service-about {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-about-text h2 {
    color: #d5c454;
    margin-bottom: 1.5rem;
}

.service-about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d5c454;
    font-weight: 500;
}

.feature-item svg {
    flex-shrink: 0;
}

.service-about-image {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

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

/* Service Types */
.service-types {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.type-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.type-image {
    height: 250px;
    overflow: hidden;
}

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

.type-card:hover .type-image img {
    transform: scale(1.05);
}

.type-content {
    padding: 2rem;
}

.type-content h3 {
    color: #d5c454;
    margin-bottom: 1rem;
}

.type-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.type-features {
    list-style: none;
    padding: 0;
}

.type-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.type-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d5c454;
    font-weight: bold;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d5c454, #d5c454);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.step-content h3 {
    color: #d5c454;
    margin-bottom: 1rem;
}

.step-content p {
    line-height: 1.6;
}

/* Service Gallery */
.service-gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    color: #e0e0e0;
    margin: 0;
}

/* Service Advantages */
.service-advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d5c454, #d5c454);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.advantage-card h3 {
    color: #d5c454;
    margin-bottom: 1rem;
}

.advantage-card p {
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #7d7c79, #7d7c79);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #d5c454;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #d5c454;
}

.dropdown-menu a::after {
    display: none;
}

/* Logo Link */
.logo a {
    color: inherit;
    text-decoration: none;
}

/* Responsividade para páginas de serviços */
@media (max-width: 768px) {
    .service-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-image {
        height: 300px;
    }
    
    .service-about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
    }
    
    .nav-dropdown .dropdown-menu a {
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 2rem;
    }
    
    .advantage-card,
    .type-card {
        padding: 1.5rem;
    }
    
    .service-about-image,
    .service-hero-image {
        height: 250px;
    }
}


/* Service Link */
.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #d5c454;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #d7c23d;
}

.service-link::after {
    content: ' →';
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(3px);
}


/* ===== DROPDOWN MOBILE STYLES ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link::after {
    content: ' ';
    font-size: 0.8em;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.active > .nav-link::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    min-width: 200px;
    z-index: 1000;
    padding: 0.5rem 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #d5c454;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    display: block;
}

.video{
    width: 50vw;
    height: 40vh;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .nav-dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.2);
        padding: 1rem;
        margin: 0.5rem 0;
        border-radius: 8px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        display: none;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        display: block;
        text-decoration: none;
        font-weight: 500;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #d5c454;
    }
    
    .dropdown-menu li:last-child a {
        border-bottom: none;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: none; /* Disable hover on mobile */
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block !important;
    }
}



/* ===== OTIMIZAÇÕES MOBILE COMPLETAS ===== */

/* Mobile First - Smartphones */
@media (max-width: 480px) {
    /* Container geral */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Header mobile */
    .header {
        padding: 0.75rem 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo p {
        font-size: 0.75rem;
    }
    
    /* Hero section mobile */
    .hero {
        min-height: 70vh;
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 48px;
        width: auto;
        display: inline-block;
    }
    
    /* Seções gerais */
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    /* Cards de serviços mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .service-card img {
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .service-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
        width: 100%;
        display: block;
        text-align: center;
    }
    
    /* Projetos mobile */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .project-card {
        margin-bottom: 1rem;
    }
    
    .project-card img {
        height: 250px;
        object-fit: cover;
    }
    
    .project-card h4 {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .project-card p {
        font-size: 0.9rem;
        padding: 0 1rem 1rem;
    }
    
    /* Diferenciais mobile */
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .differential-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .differential-card .icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .differential-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .differential-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Depoimentos mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .testimonial-card .author {
        font-size: 0.9rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* WhatsApp button mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-float i {
        font-size: 1.8rem;
    }
    
    /* Back to top mobile */
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .back-to-top i {
        font-size: 1.2rem;
    }
}

/* Tablets pequenos */
@media (min-width: 481px) and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Melhorias gerais para touch */
@media (max-width: 768px) {
    /* Aumentar área de toque */
    a, button, .clickable {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Melhorar espaçamento entre elementos clicáveis */
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    /* Otimizar formulários para mobile */
    input, textarea, select {
        font-size: 16px; /* Previne zoom no iOS */
        padding: 1rem;
        border-radius: 8px;
    }
    
    /* Melhorar legibilidade */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Otimizar imagens */
    img {
        height: auto;
    }

    img.image-slide{
        width: 100vw;
        height: 40vh
        ;
    }
    
    /* Melhorar contraste para mobile */
    .text-light {
        color: #f0f0f0;
    }
    
    /* Otimizar animações para mobile */
    * {
        transition-duration: 0.2s;
    }
    
    /* Remover hover effects em touch devices */
    .service-card:hover,
    .project-card:hover,
    .differential-card:hover {
        transform: none;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
        padding: 1.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 2rem 0;
    }
}

/* Muito pequeno (320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card,
    .differential-card,
    .testimonial-card {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}


/* ===== CORREÇÃO DROPDOWN MOBILE ===== */

/* Dropdown mobile específico */
@media (max-width: 768px) {
    /* Esconder dropdown por padrão no mobile */
    .nav-dropdown .dropdown-menu {
        position: static !important;
        display: none !important;
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        margin-top: 0.5rem !important;
        padding: 0.5rem 0 !important;
        width: 100% !important;
        z-index: 1001 !important;
    }
    
    /* Mostrar dropdown quando ativo */
    .nav-dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    /* Estilizar links do dropdown mobile */
    .nav-dropdown .dropdown-menu a {
        color: #ffffff !important;
        padding: 0.75rem 1rem !important;
        display: block !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        transition: all 0.3s ease !important;
        background: transparent !important;
    }
    
    /* Remover borda do último link */
    .nav-dropdown .dropdown-menu a:last-child {
        border-bottom: none !important;
    }
    
    /* Hover dos links do dropdown mobile */
    .nav-dropdown .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #d5c454 !important;
        transform: translateX(5px) !important;
    }
    
    /* Link principal "Serviços" no mobile */
    .nav-dropdown > a {
        color: #ffffff !important;
        position: relative !important;
        text-decoration: none !important;
    }
    
    /* Setinha do dropdown mobile */
    .nav-dropdown > a::after {
        content: "" !important;
        margin-left: 0.5rem !important;
        font-size: 0.8rem !important;
        transition: transform 0.3s ease !important;
        display: inline-block !important;
    }
    
    /* Rotacionar setinha quando ativo */
    .nav-dropdown.active > a::after {
        transform: rotate(180deg) !important;
    }
    
    /* Garantir que o menu mobile tenha fundo verde */
    .nav-menu.active {
        background: #d5c454 !important;
    }
    
    /* Estilizar todos os links do menu mobile */
    .nav-menu.active a {
        color: #ffffff !important;
        padding: 0.75rem 1rem !important;
        display: block !important;
        border-radius: 4px !important;
        margin: 0.25rem 0 !important;
        transition: all 0.3s ease !important;
    }
    
    /* Hover dos links do menu mobile */
    .nav-menu.active a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #d6c347 !important;
    }
}



