:root {
    --primary-color: #1c2e42; /* R28 G46 B66 */
    --secondary-color: #b96f54; /* R185 G111 B84 */
    --light-color: #f5f5f5;
    --dark-color: #333;
    --white-color: #FFFCEA; /* R255 G253 B234 */
    --gray-color: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

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

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white-color);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-text {
    flex: 1;
    text-align: left;
    padding-right: 40px;
}

.logo-container {
    flex-shrink: 0;
}


.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #a05c44;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Correção para o logo cortado no mobile */
@media screen and (max-width: 768px) {
    /* Ajustes para o hero section no mobile */
    .hero {
        height: auto;
        padding: 0 0 40px 0;
        margin: 0;
        overflow: hidden;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    /* Correção para o logo - definindo um tamanho fixo */
    .logo-container {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: visible;
        text-align: center;
    }
    
    .logo-img {
        max-width: 100%;
        width: auto; /* Permite que a largura se ajuste automaticamente */
        height: auto;
        margin: 0 auto;
        display: block;
        object-fit: contain; /* Mantém a proporção da imagem */
    }
    
    /* Container principal */
    .hero .container {
        padding: 20px; /* Adiciona algum padding para evitar que o conteúdo toque as bordas */
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Centraliza texto e botões */
    .hero-text {
        padding: 0;
        margin-top: 20px;
        text-align: center;
    }
    
    /* Ajusta o botão de contato */
    .contact-btn {
        margin: 0 auto;
        display: inline-flex;
        justify-content: center;
    }
}
/* Correção para remover a faixa branca entre o logo e o texto */
@media screen and (max-width: 768px) {
    /* Configurações para a seção hero */
    .hero {
        height: auto;
        padding: 0;
        margin: 0;
        background-color: var(--primary-color);
    }
    
    /* Container principal sem margens */
    .hero .container {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    /* Conteúdo em coluna sem espaços */
    .hero-content {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
    }
    
    /* Container do logo */
    .logo-container {
        width: 100%;
        padding: 0;
        margin: 0;
        line-height: 0; /* Remove espaço vertical abaixo da imagem */
        font-size: 0; /* Remove espaço de texto */
        display: block;
    }
    
    /* Imagem do logo */
    .logo-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0;
        padding: 0;
        vertical-align: bottom; /* Remove espaço abaixo da imagem */
    }
    
    /* Seção de texto */
    .hero-text {
        padding: 20px;
        margin: 0;
        text-align: center;
        color: var(--white-color);
        line-height: 1.6; /* Restaura o line-height do texto */
        font-size: 16px; /* Restaura o tamanho da fonte */
    }
    
    /* Botão de contato */
    .contact-btn {
        margin: 20px auto 0;
        display: inline-flex;
        justify-content: center;
    }
}
/* Ajustes para o logo no desktop */
@media screen and (min-width: 769px) {
    /* Ajusta o tamanho e proporção do logo no desktop */
    .logo-container {
        max-width: 400px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-img {
        max-width: 350px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    /* Ajusta o layout da seção hero para melhor equilíbrio */
    .hero-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }
    
    .hero-text {
        flex: 1;
        max-width: 600px;
    }
}

/* Media query para telas maiores */
@media screen and (min-width: 1200px) {
    .logo-img {
        max-width: 400px;
    }
}


/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


/* Estilos para as categorias de serviços */
/* Estilos para as categorias de serviços */
.service-category {
    margin-bottom: 60px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.category-title h3 {
    font-size: 28px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title h3 i {
    color: var(--secondary-color);
}

/* About Section */
.about {
    background-color: var(--gray-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    text-align: center;
}

.about-img img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

/* Services Section */
.services {
    background-color: var(--white-color);
}

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

.service-card {
    background-color: var(--gray-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 48px;
    color: var(--secondary-color);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
    text-align: center;
}

/* Commitment Section */
.commitment {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}

.commitment p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
}

/* Contact Section */
.contact {
    background-color: var(--gray-color);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 24px;
    color: var(--secondary-color);
    width: 24px;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
}

.footer-logo span {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

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

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 20px;
    color: var(--primary-color);
}

.social-links a:hover i {
    color: var(--white-color);
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    animation: none;
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 30px;
    color: var(--white-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Botão de contato */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #a05c44;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn i {
    font-size: 20px;
    color: var(--white-color);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        margin-top: 30px;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}