/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #f8b400;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f8b400;
}

.btn {
    display: inline-block;
    background-color: #f8b400;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #f8b400;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: #f8b400;
}

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

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

.logo h1 {
    font-size: 1.8rem;
    color: #f8b400;
    margin-bottom: 5px;
}

.logo p {
    font-size: 0.9rem;
    color: #666;
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #f8b400;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: 80px;
}

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

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #5b4a4a;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #5b4a4a;
}

/* Sobre Section */
.sobre {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.sobre-text {
    flex: 1;
}

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

.sobre-img {
    flex: 1;
    text-align: center;
}

/* Serviços Section */
.servicos {
    padding: 100px 0;
}

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

.servico-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease;
    text-align: center;
}

.servico-card:hover {
    transform: translateY(-10px);
}

.servico-icon {
    font-size: 3rem;
    color: #f8b400;
    margin-bottom: 20px;
}

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

/* Especialista Section */
.especialista {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.especialista-img {
    flex: 1;
    text-align: center;
}

.especialista-info {
    flex: 1;
}

.especialista-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.especialista-titulo {
    font-size: 1.2rem;
    color: #f8b400;
    margin-bottom: 20px;
}

.especialista-info p {
    margin-bottom: 15px;
}

.especialista-credenciais {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.especialista-credenciais p {
    margin-bottom: 10px;
}

/* Depoimentos Section */
.depoimentos {
    padding: 100px 0;
}

.depoimentos-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.depoimentos-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.depoimento {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    min-width: 300px;
}

.depoimento-texto {
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-texto p::before {
    content: '\201C';
    font-size: 1.5rem;
    color: #f8b400;
}

.depoimento-texto p::after {
    content: '\201D';
    font-size: 1.5rem;
    color: #f8b400;
}

/* Contato Section */
.contato {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.contato-content {
    display: flex;
    gap: 50px;
}

.contato-info, .contato-form {
    flex: 1;
}

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

.contato-item i {
    font-size: 1.5rem;
    color: #f8b400;
    margin-right: 15px;
    margin-top: 5px;
}

.contato-item h3 {
    margin-bottom: 5px;
    color: #333;
}

.contato-redes h3 {
    margin-bottom: 15px;
}

.redes-icons {
    display: flex;
    gap: 15px;
}

.redes-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8b400;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.redes-icons a:hover {
    background-color: #333;
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: #f8b400;
    margin-bottom: 10px;
}

.footer-links h4, .footer-contato h4 {
    color: #f8b400;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links ul li a {
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #f8b400;
}

.footer-contato p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contato p i {
    margin-right: 10px;
    color: #f8b400;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-content, .especialista-content, .contato-content {
        flex-direction: column;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav ul {
        margin-top: 15px;
        justify-content: center;
    }
    
    .nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        margin-top: 130px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contato p {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .nav ul {
        flex-wrap: wrap;
    }
    
    .nav ul li {
        margin: 5px 10px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .depoimento {
        min-width: 250px;
    }
}