/* Base Styles */
:root {
    --primary-color: #3a7b99;
    --primary-light: #4a8ba9;
    --primary-dark: #2a6b89;
    --secondary-color: #f5a05c;
    --secondary-light: #f6b07c;
    --secondary-dark: #e5904c;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #f0f0f0;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 20px auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: #e5904c;
    border: 1px solid var(--secondary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.btn-text:hover::after {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo img {
    height: 50px;
}

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

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}
.main-nav.active{
    display: block;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 150px 0 150px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    text-align: right;
    margin-left: 30px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

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

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

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-wave {
    position: absolute;
    bottom: -1;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Sobre Nós */
.sobre {
    background-color: var(--bg-light);
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-text {
    flex: 1;
}

.sobre-image {
    flex: 1;
}

.sobre-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.valores {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

.valor {
    text-align: center;
    flex: 1;
}

.valor-icon {
    width: 60px;
    height: 60px;
    background-color:#2a6b89;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #dadada;
    font-size: 1.5rem;
}

/* Timeline */
.timeline {
    background-color: white;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 40px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    left: 50%;
}

.timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    top: 0;
    right: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.timeline-item:nth-child(even) .timeline-icon {
    right: auto;
    left: -20px;
}

.timeline-content {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Serviços */
.servicos {
    background-color: var(--bg-light);
}

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

.servico-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.servico-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.servico-card h3 {
    margin-bottom: 15px;
}

.servico-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Depoimentos */
.depoimentos {
    background-color: white;
}

.depoimentos-slider {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
}

.depoimento-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 0 0 calc(33.333% - 20px);
    position: relative;
}

.depoimento-quote {
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.depoimento-autor {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.estrelas {
    color: var(--secondary-color);
}

.depoimentos-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.depoimento-prev, .depoimento-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.depoimento-prev:hover, .depoimento-next:hover {
    background-color: var(--primary-dark);
}

/* Equipe */
.equipe {
    background-color: var(--bg-light);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.profissional-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.profissional-img {
    height: 250px;
    overflow: hidden;
}

.profissional-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.profissional-card:hover .profissional-img img {
    transform: scale(1.05);
}

.profissional-card h3, .profissional-card p {
    padding: 0 20px;
}

.profissional-card h3 {
    margin-top: 20px;
    margin-bottom: 5px;
}

.profissional-cargo {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.profissional-desc {
    color: var(--text-light);
    margin-bottom: 20px;
}

.profissional-card .btn-text {
    display: inline-block;
    margin: 0 20px 20px;
}

.equipe-cta {
    text-align: center;
    margin-top: 40px;
}

/* Blog */
.blog {
    background-color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.blog-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-categoria {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

/* FAQ */
.faq {
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* CTA / Formulário */
.cta-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cta-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    color: var(--text-color);
    text-align: left;
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Merriweather', serif;
    font-size: 1rem;
}

.checkbox-group, .radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item, .radio-item {
    display: flex;
    align-items: center;
}

.checkbox-item input, .radio-item input {
    width: auto;
    margin-right: 10px;
}

.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.form-progress {
    margin-top: 30px;
}

.progress-bar {
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
    margin-bottom: 10px;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
    width: 25%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.step {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
}

.step.active {
    background-color: var(--primary-color);
}

.form-success {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.form-success p.small {
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Contato */
.contato {
    background-color: white;
}

.contato-container {
    display: flex;
    gap: 40px;
}

.contato-info {
    flex: 1;
}

.contato-mapa {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contato-item {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    align-items: center;
}

.contato-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 20px;
}

.contato-text h3 {
    margin-bottom: 5px;
}

.contato-social {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--bg-dark);
    transform: translateY(-3px);
}


/* Emergência */
.emergencia {
    background-color: #fff3e0;
    padding: 40px 0;
}

.emergencia-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.emergencia-icon {
    font-size: 2.5rem;
    color: #ff9800;
    margin-right: 30px;
}

.emergencia-telefone {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e65100;
}

/* Footer */
.footer {
    background-color: #1a3c4d;
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo {
    flex: 2;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 20px;
    text-align: center;
}
.footer-logo p{
    font-size: 15px;
    width: 90%;
}


.footer-links, .footer-newsletter {
    flex: 1;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0bec5;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

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

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #b0bec5;
}

.footer-bottom-links a {
    color: #b0bec5;
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 2rem;
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}


/* Responsividade */
@media (max-width: 1024px){
    .hero .hero-wave {
        bottom: -1px;
    }
    .hero h1{
        font-size: 2.5em;
    }
}
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.3em;
    }
    .hero p {
        font-size: 1em
    }
    
    h2 {
        font-size: 1.8rem;
    }
    .hero-buttons .btn{
        font-size: 14px;
    }
    .main-nav li a{
        font-size: 0.8em;
    }
    
    .hero {
        padding-top: 150px;
        padding-bottom: 150px ;
        
    }
    
    .hero-content {
        max-width: 100%;
    }


    .sobre-content, .contato-container {
        display: flex;
        flex-direction: column;
    }
    
    .sobre-image {
        width: 50%;
    
        order: -1;
        margin-bottom: 30px;
    }
    .sobre-text{
        width: 50%;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
        padding-left: 80px;
    }
    
    .timeline-icon {
        left: 10px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-icon {
        left: 10px;
    }
    
    .depoimentos-slider {
        flex-wrap: wrap;
    }
    
    .depoimento-card {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    .contato-social{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links, .footer-newsletter {
        margin-bottom: 40px;
    }
}
@media (max-width: 821px){
    .hero h1{
        font-size: 2.1em;
    }

}

@media (max-width: 768px) {
    .hero {
        padding-top: 150px;
        padding-bottom: 100px;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.7em;
        
    }
    .hero p {
        font-size: 18px;
    }
    .hero-buttons{
        display: flex;
        justify-content: center;
    }
    .hero .btn-primary{
        font-size: 14px;
    }
    .hero .btn-secondary{
        font-size: 14px;
    }
    .header .container {
        flex-wrap: wrap;
    }
    
    .main-nav {

        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.882);
        transition: left 0.3s ease;
        padding-top: 60px;
        z-index: 2000;
    }
    .main-nav.active{
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    .main-nav ul{
        flex-direction: column;
    }
    .main-nav li{
        margin: 15px 0;
        padding-left: 20px;

    }
    
    .hero .container {
        flex-direction: column;
        
    }
    .hero-wave{
        bottom: -2px;
    }
    .hero-image {
        margin-left: 0;
        margin-top: 30px;
    }
    .sobre-content{
        flex-direction: column;
    }
    .sobre-text, .sobre-image{
        width: 100%;
    }
    .valores {
        flex-direction: row;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
    }
    .emergencia-content{
        flex-direction: column;
        align-items: center;
        
    }
    .emergencia-icon{
        margin-right: 0px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
    .footer-logo {

        text-align: center;
    }
    .footer-logo p{
        font-size: 16px;
        text-align: center;
        width: 100%;
    }
    .footer-links ul {
        text-align: center;
    }
}
@media (max-width: 600px){
    .hero h1{
        font-size: 1.8em;
    }
    .hero p{
        font-size: 15px;
    }
    .hero-buttons{
        font-size: 14px;
        flex-direction: column;

    }
    .sobre-text, h3, p{
        text-align: center;
    }
    .sobre-text p {
        font-size: 14px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.8s ease forwards;
}

