body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
}

/* Seção Hero */
.hero-section {
    padding: 50px 20px;
}

.hero-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    max-width: 1100px;
    margin: 0 auto; 
    margin-bottom: -90px;
}

/* Texto com Gradiente */
.gradient-text {
    background: linear-gradient(110deg, #ffa500, #ff7420);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.hero-text {
    flex: 1; 
    max-width: 500px; 
}

.hero-text h1 {
    font-size: 34px;
    line-height: 1.4;
    text-align: left;
}

.hero-text p {
    font-size: 15px;
    margin-top: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d365bd; 
    color: #fff; 
    text-decoration: none; 
    font-size: 20px;
    padding: 12px 24px;
    border-radius: 8px; 
    margin-top: 20px; 
}

.cta-button i {
    margin-right: 10px; 
}

.cta-button:hover {
    background-color: #25d36575; 
}

/* Coluna da Imagem */
.hero-image {
    flex-shrink: 0; 
}

.hero-image img {
    width: auto;
    max-width: 600px; 
    border-radius: 10px;
}
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        gap: 20px;

    }

    .hero-text {
        max-width: 100%; 
    }

    .hero-text h1 {
        font-size: 28px; 
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 14px; 
    }

    .contact-button {
        font-size: 16px; 
        padding: 10px 20px;
    }

    .hero-image img {
        max-width: 100%; 
        height: auto; 
        border-radius: 10px;
        margin-top: -40px;
        padding-top: 1px;
        padding-bottom: 1px;
    }
}



/* Container Serviços */
.services-section {
    text-align: center;
    padding: 40px 20px; 
    
}

.services-section h2 {
    font-size: 28px;
    margin-bottom: 40px; 
    margin-top: 5px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    max-width: 900px;
    margin: 0 auto; 
}

/* Blocos Individuais */
.service-block {
    background: linear-gradient(110deg, #ffa500, #ff7420); 
    color: #fff; 
    border-radius: 10px; 
    padding: 20px; 
    margin-bottom: 5px; 
    position: relative; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.service-block h3 {
    font-size: 20px;
    margin-bottom: 30px; 
    margin-top: 10px ;
    text-align: left;
    margin-left: 50px; 
}

.service-block p {
    font-size: 16px;
    text-align: left;
}

/* Ícones nos Blocos */
.service-block .icon {
    font-size: 40px;
    color: #fff; 
    position: absolute; 
    top: 15px; 
    left: 15px; 
}
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr; 
        gap: 15px;
    }

    .service-block {
        padding: 15px; 
    }

    .service-block h3 {
        font-size: 18px; 
        margin-left: 0; 
        margin-top: 45px;
        text-align: center; 
    }

    .service-block p {
        font-size: 14px; 
        text-align: center; 
    }

    .service-block .icon {
        font-size: 30px; 
        top: 10px; 
        left: calc(50% - 15px); 
    }
}

/* Botão de Contato */
.contact-button-container {
    margin-top: 40px; 
}

.contact-button {
    display: inline-flex; 
    align-items: center; 
    background-color:  #25d365bd; 
    color: #fff; 
    text-decoration: none; 
    font-size: 20px; 
    padding: 12px 24px; 
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.contact-button i {
    margin-right: 10px; 
}

.contact-button:hover {
    background-color: #25d36575; 
}

/* Seção Sobre Mim */
.about-section {
    padding: 100px 20px; 
}

.about-container {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: -30px;
}

.about-image img {
    max-width: 90%; 
    border-radius: 1000px; 
}

.about-text {
    max-width: 500px; 
    text-align: left;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text h2 span {
    background: linear-gradient(110deg, #ffa500, #ff7420); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-weight: bold; 
}

.about-text p {
    margin-bottom: 20px;
}

/* Ícones Sociais */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fff; 
    font-size: 24px;
    margin-right: 15px; 
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: rgb(179, 110, 31); 
}
/* Responsividade */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; 
        text-align: center; 
        gap: 20px; 
    }

    .about-image img {
        max-width: 90%; 
        margin: 0 auto; 
        margin-top: -80px;
    }

    .about-text {
        max-width: 100%; 
        text-align: left; 
    }

    .about-text h2 {
        font-size: 24px; 
        text-align: center;
    }

    .about-text p {
        font-size: 16px;
    }

    .social-icons {
        justify-content: center; 
        text-align: center;
    }

    .social-icons a {
        font-size: 20px; 
        margin-right: 10px; 
    }
}


/* Certificado */
.certificate-section {
    text-align: center;
    margin-top: 10px;
}

.certificate-container img {
    border-radius: 10px;
}


.certificado {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 120px;
}

.certificado h1 {
    font-size: 24px;
    color: #fff;
}

.certificado-container img {
    border: 2px solid #fff; 
    border-radius: 10px; 
    width: 90%; 
    max-width: 800px; 
}

.container {
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px;
}

.button-containerCer {
    text-align: center;
    margin-top: -70; /* ou ajuste conforme necessário */
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}


@media (max-width: 768px) {
    .certificate-section {
        margin-top: 20px; 
        padding: 0 10px; 
    }

    .certificate-container img {
        width: 90%; 
        max-width: none; 
        height: auto; 
    }

    .certificado h1 {
        font-size: 20px; 
        margin-bottom: 15px; 
        padding-top: 0%;
    }

    .certificado-container img {
        width: 90%; 
        max-width: none; 
        height: auto; 
    }

    .container {
        padding-bottom: 10px; 
        padding-top: 10px; 
    }
}

/* O que eu ofereço...*/
h1 {
    text-align: center; 
    margin-bottom: 40px; 
}

.block {
    background: linear-gradient(110deg, #ffa500, #ff7420); 
    color: #fff; 
    border-radius: 10px; 
    padding: 20px; 
    margin-bottom: 20px; 
    position: relative; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); 
}


.block h2 {
    margin-top: 0; 
    text-align: left; 
    margin-left: 50px;
}

.block p {
    margin-top: 20px;
}

.icon {
    font-size: 40px; 
    color: #fff; 
    position: absolute; 
    top: 10px; 
    left: 15px; 
}

.button-container {
    text-align: center;
    margin-top: 30px; 
    margin-bottom: 30px;
    padding-bottom: 35px;
}

.contact-button {
    display: inline-flex; 
    align-items: center; 
    background-color:  #25d365bd;
    color: #fff; 
    text-decoration: none; 
    font-size: 20px; 
    padding: 12px 24px; 
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); 
    transition: background-color 0.3s ease;   
}

.contact-button i {
    margin-right: 10px; 
}

.contact-button:hover {
    background-color: #25d36575; 
}
/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
        margin-bottom: 30px; 
        text-align: center; 
    }

    .block {
        padding: 15px; 
        margin-bottom: 15px; 
    }

    .block h2 {
        font-size: 18px;
        margin-left: 0; 
        margin-top: 45px;
        text-align: center; 
    }

    .block p {
        font-size: 14px; 
        margin-top: 15px; 
        text-align: center; 
    }

    .icon {
        font-size: 30px; 
        top: 10px; 
        left: calc(50% - 15px); 
    }

    .button-container {
        margin-top: 30px; 
        margin-bottom: 30px; 
        padding-bottom: 30px; 
    }

    .contact-button {
        font-size: 16px; 
        padding: 10px 20px; 
    }
}


/* Seção FAQ */
.faq-section {
    background: linear-gradient(110deg, #ffa500, #ff7420); 
    padding: 40px 20px; 
}

.faq-container {
    display: flex;
    justify-content: center; 
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Coluna da Palavra F.A.Q */
.faq-title {
    flex: 1; 
}

.faq-title h1 {
    font-size: 72px;
    font-weight: bold;
    color: #fff;
}

/* Coluna das Perguntas */
.faq-questions {
    flex: 2; 
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    text-align: left;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.faq-question .arrow {
    font-size: 18px;
}

.faq-answer {
    display: none; 
    padding-top: 10px;
}

.faq-answer p {
    font-size: 16px;
}
/* Responsividade */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column; 
        align-items: center; 
        gap: 20px; 
    }

    .faq-title {
        flex: none; 
        text-align: center; 
        padding-top: 0; /* Reduz o espaço no topo */
        margin-top: 0;  /* Garante que não haja margem extra */
    }

    .faq-title h1 {
        font-size: 48px;
        margin-top: 10px; /* Se quiser um pequeno espaço, ajuste aqui */
    }

    .faq-questions {
        flex: none; 
        width: 100%; 
    }

    .faq-question {
        font-size: 16px; 
        justify-content: space-between; 
    }

    .faq-question .arrow {
        font-size: 16px; 
    }

    .faq-answer p {
        font-size: 14px; 
        text-align: center;
    }
}


/* Rodapé */
.footer {
    background-color: #000; 
    color: #fff; 
    text-align: center; 
    padding: 20px 0; 
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 120px; 
    margin-bottom: 10px; 
}

.footer-content p {
    font-family: Arial, sans-serif; 
    font-size: 14px; 
}

