/* --- Importação da Fonte --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* --- Reset e Configurações Globais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #F7941D;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.25rem;
}

section {
    padding: 60px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

/* --- Botões --- */
.cta-button {
    display: inline-block;
    background-color: #F7941D;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #F7941D;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    border: 2px solid #F7941D;
    cursor: pointer;
}

.secondary-button:hover {
    background-color: #F7941D;
    color: #ffffff;
}

/* --- 1. Cabeçalho (Header) --- */
header {
    background-color: #ffffff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

header .logo img {
    height: 40px; /* Ajuste a altura da sua logo */
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: #333333;
    font-weight: 700;
}

/* --- 2a. Seção Hero --- */
#inicio {
    padding-top: 140px; /* Altura do header + espaço */
    background-color: #ffffff;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

/* --- 2b. Seção Serviços --- */
#servicos {
    background-color: #f4f4f4;
}

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

.servico-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.servico-card i {
    font-size: 2.5rem;
    color: #F7941D;
    margin-bottom: 20px;
}

/* --- 2c. Seção Sobre Nós --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 15px;
}

/* --- 2d. Seção Blog --- */
#blog {
    background-color: #f4f4f4;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3, .blog-card p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.blog-card h3 {
    padding-top: 20px;
}

/* --- 3. Rodapé (Footer) --- */
footer {
    background-color: #333333;
    color: #ffffff;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-form {
    flex: 1.5;
}

.footer-form h2 {
    text-align: left;
    margin-bottom: 20px;
}

.footer-form form {
    display: flex;
    flex-direction: column;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #444;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #ccc;
}

.footer-form .cta-button {
    align-self: flex-start;
}

.footer-info {
    flex: 1;
}

.footer-info h3 {
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    width: 20px;
    text-align: center;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.5rem;
    margin-right: 15px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #555;
    font-size: 0.9rem;
}

/* --- Responsividade (Media Queries) --- */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }

    /* --- Menu Mobile (Simples) --- */
    header nav {
        display: none; /* Em um projeto real, aqui entraria JS para um menu hamburger */
    }

    .hero-content,
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }
    .hero-image {
        order: 1;
    }

    .about-text {
        order: 2;
    }
    .about-image {
        order: 1;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Botões Flutuantes --- */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espaço entre os botões */
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #ffffff;
    background-color: #F7941D; /* Cor laranja padrão da marca */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Cor específica do WhatsApp */
.float-btn.whatsapp-btn {
    background-color: #25D366;
}

/* Ocultar o botão "Voltar ao Topo" por padrão */
.float-btn.top-btn {
    display: none;
}