/* Reset de Estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
}

header {
    background-color: #fff;
    color: #333;
    padding: 10px 40px;
    
}
header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h2 {
    font-size: 36px;
    color: #3498db;
    margin-right: 5px;
}

.logo p {
    font-size: 20px;
    color: #333;
    margin-right: 5px;
}

.logo span {
    font-size: 20px;
    color: #2ecc71;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    visibility: hidden;
}

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

.nav-links li {
    margin-right: 20px;
}

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

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

.hero {
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #27ae60;
}




.hero {
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 14px;
}

.hero-content p {
    margin-bottom: 14px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff9800;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f57c00;
}




/* Estilo da seção de serviços com animações de entrada */
.services {
    width: 100%;
    background-color: #fff;
    padding: 40px 0;
    animation: fadeInUp 0.6s ease-in-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.services-title h2 {
    margin: 0;
    text-align: center;
    color: #333;
    font-size: 24px;
}

.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-card {
    width: calc(33.33% - 40px);
    padding: 20px;
    margin: 20px;
    background-color: #3498db;
    color: #fff;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-in-out forwards;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.service-card h3 {
    margin: 0 0 10px;
    color: #fff;
}

.service-card p {
    font-size: 14px;
    color: #ecf0f1;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .service-card {
        width: calc(100% - 40px);
        margin: 10px;
    }
}

/* Melhoria no estilo da seção de projetos */
.projects {
    background-color: #f7f7f7;
    padding: 60px 0;
    text-align: center;
}

.projects-title {
    margin-bottom: 30px;
    color: #333;
}

.projects-title h2 {
    margin: 0;
    font-size: 24px;
}

.projects-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.project-card {
    width: calc(50% - 40px);
    max-width: 300px;
    margin: 20px;
    padding: 20px;
    background-color: #3498db;
    color: #fff;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-in-out forwards;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card.in-progress {
    background-color: #ff9800;
}

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

.project-card h3 {
    margin: 0 0 10px;
    color: #fff;
}

.project-card p {
    font-size: 14px;
    color: #ecf0f1;
}

.project-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.project-link {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.project-link:hover {
    background-color: #ff5500;
}

/* Restante do seu estilo */

/* Responsividade */
@media screen and (max-width: 768px) {
    .project-card {
        width: calc(100% - 40px);
        margin: 10px;
    }
}

.partners {
    width: 100%;
    background-color: #f7f7f7;
    padding: 40px 0;
    text-align: center;
}

.partners-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-in-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.partners-title h2 {
    margin: 0;
    text-align: center;
    color: #333;
    font-size: 24px;
}

.partners-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.partner-card {
    width: calc(33.33% - 40px);
    padding: 20px;
    margin: 20px;
    background-color: #3498db;
    color: #fff;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-in-out forwards;
}

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

.partner-card h3 {
    margin: 0 0 10px;
    color: #fff;
}

.partner-card p {
    font-size: 14px;
    color: #ecf0f1;
    margin-bottom: 20px;
}

.partner-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #ff9800;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

.partner-link:hover {
    background-color: #f57c00;
}



@media screen and (max-width: 768px) {
    .partners-list {

        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .partner-card {
        width: calc(33.33% - 20px);
    }
}

.about {
    padding: 40px;
    background-color: #f0f2f5;
    text-align: center;
}

.about-title {
    margin-bottom: 20px;
    color: #333;
}

.about p {
    font-size: 16px;
    color: #555;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #3498db;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.form-group textarea {
    resize: vertical;
}

.btn {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2980b9;
}


.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin: 5px 0;
    color: #ecf0f1;
}

.follow-us {
    display: flex;
    justify-content: center;
    align-items: center;
}

.follow-us p {
    margin: 0 10px 0 0;
    color: #ecf0f1;
}

.social-icons a {
    color: #ecf0f1;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #2ecc71;
}

.footer {
    background-color: #333;
    color: #ecf0f1;
    padding: 30px 0;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-col {
    width: 250px;
    margin: 10px;
}

.footer-col p {
    margin: 0;
    padding: 0;
}

.footer a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        width: 100%;
        background-color: #333;
        z-index: 1;
        top: 60px;
        left: 0;
    }

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

    .menu-icon {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        visibility: visible;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }

    .nav-links a {
        padding: 10px;
        color: #ecf0f1;
    }
}



/* footer novo*/
.footer {
    background-color: #242424;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer-cols {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-col {
    flex: 1;
    max-width: 250px;
    margin: 0 20px;
}

.footer-col p {
    color: #b3b3b3;
    font-size: 14px;
}

.footer a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #2980b9;
    text-decoration: underline;
}

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

.social-icons a {
    color: #b3b3b3;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #3498db;
}

@media screen and (max-width: 768px) {
    .footer a {
        color: #b3b3b3;
    }

    .footer a:hover {
        color: #3498db;
    }
}

/* about */
.about {
    padding: 40px;
    background-color: #f7f7f7;
    text-align: center;
}

.about-title h2 {
    margin-bottom: 20px;
    color: #333;
}

.about-description {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

/* Estilo do botão de modal */
.cta-button {
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Estilo do modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    width: 60%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-button {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.close-button:hover {
    color: #666;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .about-title h2 {
        font-size: 24px;
    }

    .about-description {
        font-size: 14px;
    }
}


/* Melhoria no estilo da seção de contato 
.contact {
    padding: 40px;
    background-color: #242424;
    color: #fff;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
    color: #3498db;
}

.contact p {
    color: #ecf0f1;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    color: #b3b3b3;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #b3b3b3;
    border-radius: 3px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #2980b9;
}
*/

/* Melhoria no estilo da seção de contato */


.contact {
    padding: 60px 0;
    background-color: #242424;
    color: #fff;
    text-align: center;
    margin-top: 14px;
    margin-bottom: 14px;
}

.contact h2 {
    margin-bottom: 20px;
    color: #3498db;
}

.contact p {
    color: #ecf0f1;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    color: #b3b3b3;
    margin-bottom: 10px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #b3b3b3;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s, border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #b3b3b3;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: #444;
    border-color: #3498db;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #2980b9;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        width: 100%;
    }
}