/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background: #FCBC3E;
    border-bottom: 5px solid #FF8C00;
}

/* Fixar a navbar no topo da página */
.navbar {
	display: flex;
    top: 0; /* Fixa no topo */
    left: 0;
    right: 0;
    background-color: #FCBC3E; /* Fundo branco */
    z-index: 1000; /* Garante que a navbar fique acima de outros conteúdos */
    padding: 10px 0; /* Ajuste de espaçamento vertical */
    display: flex;
    justify-content: center; /* Centraliza os itens da navbar */
    align-items: center;
    width: 100%;
}

/* Ajuste para o logo */
.navbar .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    justify-content: center;
}

.navbar .logo-img {
    width: 120px; /* Ajuste o tamanho do logo conforme necessário */
	margin-left: 20px;
    margin-right: 20px; /* Espaço entre o logo e o título */
}

/* Distribuir os links da navbar uniformemente */
.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: space-evenly; /* Centraliza os links */
	flex-grow: 1; /* Isso faz com que a lista de links ocupe todo o espaço disponível */
    width: 100%; /* Garante que ocupe toda a largura disponível */
    margin-left: auto; /* Empurra os links para a direita */
    margin-right: 20px; /* Distância da borda direita */
}

.navbar .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar .nav-links li a:hover {
    color: #FF4500;
}

.fa-solid {
    font-size: 77px; /* Adjust size of the icon */
    margin-bottom: 20px; /* Space between the icon and text */
    color: #fff; /* White color for the icon */
    transition: color 0.3s ease-in-out; /* Smooth hover effect */
}

.fa-solid:hover {
    color: #FF4500; /* Icon color on hover */
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #FF8C00, #FFD700);
    color: white;
    text-align: center;
    padding: 20px;
  /* Evita que a navbar sobreponha a Hero */
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.hero .btn-primary {
    background: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.hero .btn-primary:hover {
    background: #FF4500;
}

/* About Section */
.about {
    background: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about .btn-secondary {
    background: #FF4500;
    color: white;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.about .btn-secondary:hover {
    background: #333;
}


/* Services Section */
/*
.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.card .btn-link {
    color: #FF4500;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.card .btn-link:hover {
    color: #333;
}
*/

/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.card .btn-link {
    color: #FF4500;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.card .btn-link:hover {
    color: #333;
}

/* Footer Section */
footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0 0 10px 0;
}

footer .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .social-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #FF8C00;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Ajuste o layout para coluna em telas menores */
        align-items: flex-start; /* Alinha tudo à esquerda */
    }

    .navbar .logo {
        font-size: 1.6rem;
        justify-content: flex-start; /* Garante que o logo e o texto fiquem ao lado esquerdo */
        width: 100%; /* Garante que o conteúdo ocupe a largura total */
    }

    .navbar .logo-img {
        width: 80px; /* Ajuste do tamanho do logo para dispositivos móveis */
        margin-right: 10px;
    }

    .navbar .nav-links {
        flex-direction: column;
        align-items: flex-start; /* Garante que os links fiquem alinhados à esquerda */
        gap: 10px;
        margin-top: 15px;
    }
}

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
		margin-top: 120px;
        font-size: 2rem;
    }

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

    .about {
        padding: 40px 20px;
    }

    .services {
        padding: 40px 20px;
    }

    .service-cards {
        flex-direction: column;
        gap: 15px;
    }

    .card {
        width: 90%;
    }

    footer .social-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Small Mobile Responsiveness */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .about h2 {
        font-size: 1.5rem;
    }

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

    .card h3 {
        font-size: 1.2rem;
    }

    .card p {
        font-size: 0.9rem;
    }

    footer p {
        font-size: 0.9rem;
    }
}
