@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto+Slab:wght@300;400;500;600;700&display=swap');

/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 60px 8%;
}

.btn-default {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-default:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-default i {
    margin-right: 8px;
}

.btn-default-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-default-header:hover {
    background-color: #219653;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-default-header i {
    margin-right: 8px;
}

.btn-default-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}

.btn-default-home:hover {
    background-color: #219653;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-default-home.secondary {
    background-color: #3498db;
}

.btn-default-home.secondary:hover {
    background-color: #2980b9;
}

.section-title {
    color: #27ae60;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
}

#nav_logo {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50;
}

#nav_logo span:first-child {
    font-size: 1.8rem;
    color: #27ae60;
}

#nav_list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #27ae60;
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 100%;
}

.nav-item.active a {
    color: #27ae60;
    font-weight: 600;
}

.nav-item.active a::after {
    width: 100%;
}

#mobile_btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
}

#mobile_menu {
    display: none;
    background-color: white;
    padding: 20px 8%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#mobile_menu.active {
    display: block;
}

#mobile_nav_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

/* Home Section */
#home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
    position: relative;
    overflow: hidden;
}

.shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #27ae60 0%, #3498db 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

#cta {
    width: 50%;
    z-index: 1;
}

#cta .title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

#cta .title span {
    color: #27ae60;
}

#cta .description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 90%;
}

#cta_buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

#banner {
    width: 45%;
    z-index: 1;
}

#banner img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

#banner img:hover {
    transform: scale(1.02);
}

/* Divisória */
.divisoria {
    background-color: #2c3e50;
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.conteudo-divisoria {
    display: flex;
    flex-direction: column;
    animation: scroll 30s linear infinite;
}

.conteudo-divisoria span {
    font-size: 1rem;
    font-weight: 500;
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Serviços */
#servicos {
    background-color: white;
    text-align: center;
}

#servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.servico-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #f1f8fe;
}

.servico-icon {
    width: 70px;
    height: 70px;
    background-color: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #3498db;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.servico-card:hover .servico-icon {
    background-color: #3498db;
    color: white;
}

.servico-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.servico-desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.servico-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.servico-info i {
    margin-right: 5px;
    color: #3498db;
}

.servicos-cta {
    margin-top: 50px;
    text-align: center;
}

/* Benefícios */
#beneficios {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
}

#beneficios-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

#beneficios-list {
    flex: 1;
}

.beneficio-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.beneficio-item i {
    color: #27ae60;
    font-size: 1.2rem;
    margin-right: 15px;
}

.beneficio-item p {
    color: #2c3e50;
    font-weight: 500;
}

.beneficios-img {
    flex: 1;
}

.beneficios-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

/* Sobre */
#sobre {
    background-color: white;
    text-align: center;
}

#sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.sobre-img {
    flex: 1;
}

.sobre-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.sobre-text {
    flex: 1;
    text-align: left;
}

.sobre-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.sobre-list {
    list-style: none;
    margin: 30px 0;
}

.sobre-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.sobre-list i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 1.1rem;
}

.sobre-cta {
    margin-top: 30px;
    text-align: center;
}

#certificacoes {
    margin-top: 50px;
}

.certificacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.certificado-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.certificado-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #e3f2fd;
}

.certificado-item i {
    color: #3498db;
    font-size: 2rem;
    margin-bottom: 10px;
}

.certificado-item p {
    font-weight: 500;
    color: #2c3e50;
    text-align: center;
}

/* Depoimentos */
#depoimentos {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
    text-align: center;
}

#depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.depoimento-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.depoimento-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.depoimento-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-stars {
    color: #f39c12;
    margin-bottom: 15px;
}

.depoimento-text {
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.depoimento-author {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.depoimento-local {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.depoimentos-cta {
    margin-top: 50px;
    text-align: center;
}

/* Contato */
#contato {
    background-color: white;
}

#contato-content {
    display: flex;
    gap: 50px;
}

.contato-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    color: #27ae60;
    font-size: 1.2rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.info-item p {
    color: #2c3e50;
    font-weight: 500;
}

.contato-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contato-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.contato-social a:hover {
    background-color: #27ae60;
    color: white;
    transform: translateY(-3px);
}

.contato-form {
    flex: 1;
}

#form-contato {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 8% 30px;
}

#footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

#footer-logo {
    flex: 1;
}

#footer-logo h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
}

#footer-logo p {
    color: #bdc3c7;
    margin-bottom: 5px;
}

#footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #27ae60;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-col ul li i {
    margin-right: 8px;
    color: #27ae60;
}

#footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #bdc3c7;
    font-size: 0.9rem;
}

#footer-bottom i {
    color: #e74c3c;
}

/* Responsividade */
@media screen and (max-width: 1200px) {
    #home .title {
        font-size: 2.5rem;
    }
    
    #beneficios-content,
    #sobre-content,
    #contato-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .beneficios-img,
    .sobre-img {
        order: -1;
    }
}

@media screen and (max-width: 992px) {
    #nav_list {
        display: none;
    }
    
    #mobile_btn {
        display: block;
    }
    
    #home {
        flex-direction: column;
        padding-top: 150px;
        text-align: center;
        justify-content: center;
    }
    
    #cta {
        width: 100%;
        margin-bottom: 50px;
    }
    
    #cta .description {
        max-width: 100%;
    }
    
    #banner {
        width: 80%;
    }
    
    .shape {
        display: none;
    }
    
    #footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    #footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .section-subtitle {
        font-size: 2rem;
    }
    
    #cta .title {
        font-size: 2rem;
    }
    
    #cta_buttons {
        flex-direction: column;
        align-items: center;
    }
    
    #footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 50px 5%;
    }
    
    #navbar {
        padding: 15px 5%;
    }
    
    .section-subtitle {
        font-size: 1.8rem;
    }
    
    #servicos-grid {
        grid-template-columns: 1fr;
    }
    
    #depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações Scroll */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}