/* ========================================
   ESTILOS BASE (DESKTOP POR PADRÃO)
   ======================================== */
/* Reset e Estilos Gerais - Aplicável a Desktop e Mobile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header - Desktop */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 0.1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Desktop */
.hero {
    background: url('imagens/hero2.png') no-repeat center/cover fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    transition: background-image 1s ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Botões - Desktop */
.btn {
    display: inline-block;
    background: #ff4500;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.btn:hover {
    background: #e63900;
    transform: scale(1.05);
}

.review-btn {
    background: #ffd700;
    color: #1e3c72;
    margin: 1rem 0;
}

.review-btn:hover {
    background: #e6c200;
}

/* Seções Gerais - Desktop */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

/* Serviços - Desktop */
.services {
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.service-card i {
    font-size: 3rem;
    color: #ff4500;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1e3c72;
}

.services-description {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.services-description h4 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.services-description ul {
    list-style: none;
    padding-left: 0;
}

.services-description li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.services-description li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ff4500;
    position: absolute;
    left: 0;
}

/* Stats - Desktop */
.stats {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

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

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
}

/* Avaliações - Desktop */
.reviews {
    background: #f8f9fa;
}

.reviews-content {
    text-align: center;
}

.overall-rating {
    font-size: 1.5rem;
    margin: 2rem 0;
    color: #ff4500;
}

.overall-rating i {
    color: #ffd700;
    font-size: 2rem;
    margin: 0 0.2rem;
}

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

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer {
    font-weight: bold;
    color: #1e3c72;
    display: block;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.date {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-top: 0.2rem;
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-top: 0.5rem;
}

/* Sobre - Desktop */
.about {
    background: white;
}

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

.about-text {
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text strong {
    color: #ff4500;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Contato - Desktop */
.contact {
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.contact-item i {
    color: #ff4500;
    margin-right: 1rem;
    width: 20px;
}

.btn-phone,
.btn-wa,
.btn-instagram {
    display: inline-block;
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
    margin-top: 0.5rem;
}

.btn-phone {
    background: #1e3c72;
    color: white;
}

.btn-phone:hover {
    background: #2a5298;
}

.btn-wa {
    background: #25D366;
    color: white;
}

.btn-wa:hover {
    background: #128C7E;
}

.btn-instagram {
    background: #E4405F;
    color: white;
}

.btn-instagram:hover {
    background: #C13584;
}

.map-container {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
}

/* Footer - Desktop */
footer {
    background: #1e3c72;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

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

.social-link {
    color: #ffd700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: white;
}

.social-link i {
    margin-right: 0.5rem;
}

/* Animações Scroll - Aplicável a Desktop e Mobile */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   ESTILOS MOBILE (SOBRESCREVE OS DE DESKTOP)
   ======================================== */
@media (max-width: 768px) {

    /* Header - Mobile */
    header {
        padding: 0.25rem 0;
        /* Altura menor para mobile */
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1e3c72;
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .logo img {
        height: 80px;
        /* Logo menor no mobile */
        width: 80px;
    }

    /* Hero - Mobile */
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        /* Botões menores no mobile */
        font-size: 0.9rem;
    }

    /* Seções - Mobile */
    section {
        padding: 3rem 0;
        /* Padding menor nas seções */
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Serviços - Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card i {
        font-size: 2.5rem;
    }

    .services-description {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .services-description h4 {
        font-size: 1.5rem;
    }

    /* Stats - Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Avaliações - Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviewer-photo {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .overall-rating {
        font-size: 1.2rem;
    }

    .overall-rating i {
        font-size: 1.5rem;
    }

    /* Sobre - Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-image img {
        height: 200px;
    }

    /* Contato - Mobile */
    .contact-item {
        flex-direction: column;
        align-items: center;
    }

    .btn-phone,
    .btn-wa,
    .btn-instagram {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        max-width: 200px;
    }

    .map-container iframe {
        height: 250px;
    }

    /* Footer - Mobile */
    footer {
        padding: 1.5rem 0;
    }

    .social-link {
        font-size: 1rem;
    }
}