/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e2a3a;
    line-height: 1.5;
    scroll-behavior: smooth;
}

:root {
    --primary: #fa4c03;
    --primary-dark: #05253b;
    --secondary: #f4f7fc;
    --accent: #2c7da0;
    --whatsapp: #25d366;
    --whatsapp-dark: #128C7E;
    --gray-light: #f8fafc;
    --gray-border: #e2e8f0;
    --text-dark: #0f172a;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 12px;/* Aumente este value até o logo chegar onde você quer */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu li a {
    text-decoration: none;
    font-weight: 600;
    color: #1e293b;
    transition: 0.2s;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.btn-whats-header {
    background-color: var(--whatsapp);
    color: white;
    padding: 0.6rem 1.3rem;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-whats-header:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.02);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

.float-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: 0.2s;
    z-index: 1000;
    text-decoration: none;
}

.float-wpp:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.08);
}

/* ===== HERO COM BANNER FULL SCREEN ===== */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    margin-left: 10%;
    color: #0f3582
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-wpp-hero {
    background-color: var(--whatsapp);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
}

.btn-wpp-hero:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-3px);
}

/* ===== SERVIÇOS ===== */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #475569;
}

/* ===== GALERIA DE TRABALHOS (CARDS CLICÁVEIS) ===== */
.gallery-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-border);
}

.gallery-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.gallery-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-service-card .card-info {
    padding: 1.5rem;
    text-align: center;
}

.gallery-service-card .card-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.gallery-service-card .card-info p {
    color: #64748b;
    font-size: 0.9rem;
}

/* ===== SOBRE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    background: var(--gray-light);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid var(--gray-border);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.6;
}

.about-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== CARROSSEL DE COMENTÁRIOS ===== */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.comment-card-carousel {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 0;
    background: white;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-border);
    transition: all 0.3s ease;
    position: relative;
}

@media (max-width: 900px) {
    .comment-card-carousel {
        flex: 0 0 calc(100% - 1rem);
    }
}

.comment-card-carousel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-avatar.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.comment-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.comment-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.comment-rating {
    margin: 0.75rem 0;
    color: #fbbf24;
    font-size: 0.9rem;
}

.comment-text {
    color: #334155;
    line-height: 1.6;
    margin-top: 0.5rem;
    font-style: italic;
}

.comment-whatsapp-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #25d366;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0.7;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: 0.2s;
}

.dot.active {
    background: var(--primary);
    width: 25px;
    border-radius: 10px;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 1000px;
    border-radius: 24px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
    transition: 0.2s;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.modal-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.modal-gallery img:hover {
    transform: scale(1.02);
}

/* ===== CONTATO ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: var(--secondary);
    border-radius: 28px;
    padding: 2rem;
}

.contact-info h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.btn-wpp-large {
    background: var(--whatsapp);
    color: white;
    padding: 1rem;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
    text-decoration: none;
    transition: 0.2s;
}

.btn-wpp-large:hover {
    background: var(--whatsapp-dark);
}

.form-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-border);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.2s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10,61,98,0.1);
}

.submit-form {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem;
    width: 100%;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
}

.submit-form:hover {
    background: var(--primary-dark);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0a1c2a;
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.social-links a {
    color: #cbd5e1;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: 0.2s;
}

.social-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    border-top: 1px solid #2d3e4e;
    padding-top: 1.5rem;
    font-size: 0.85rem;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 900px) {
    
    .hero-banner img{
        content: url('./images/mobile3.png');
    }
    
    .hero-content {
    margin-top: 40px;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;   /* centraliza horizontal */
    text-align: center;    /* centraliza o texto */
}
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        background: white;
        width: 80%;
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 2px 8px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 1.8rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .btn-whats-header {
        display: none;
    }
    
    .nav-menu li a {
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ===== ANIMAÇÕES ===== */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ===== FAQ - PERGUNTAS FREQUENTES ===== */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--gray-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: 0.2s;
    font-family: inherit;
}

.faq-question:hover {
    background-color: var(--gray-light);
    color: var(--primary);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 1.5rem;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--gray-light);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.5rem;
    border-top-color: var(--gray-border);
}

.faq-answer p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-answer i {
    color: var(--primary);
    margin-right: 8px;
}