/* Reset e Variáveis Globais */
:root {
    --primary-color: #ac945c;
    --secondary-color: #e8d191; /* Azul médio */
    --accent-color: #7a7a7a; /* Azul claro */
    --dark-color: #494949; /* Azul mais escuro */
    --light-color: #f8f9fa;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --black: #000;
    --gray: #e9ecef;
    --dark-gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.primary-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Header */
header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    margin-top: -15px;
    margin-bottom: -15px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 63, 114, 0.153), rgba(26, 63, 114, 0.652)), url('images/imagem\ fundo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero .subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Seções */
.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--light-text);
}

/* Sobre o Escritório */
.sobre-escritorio {
    padding: 80px 0;
    background-color: var(--white);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.valor-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.valor-card i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.valor-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.valor-card p {
    color: var(--light-text);
}

.imagensSocias{
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 60px;
}

.socia1 img{
    height: 700px;
    border-radius: 0px 40px 0px 40px;
    box-shadow: 5px 5px 20px var(--dark-gray);
}

.socia2 img{
    height: 700px;
    border-radius: 40px 0px 40px 0px;
    box-shadow: 5px 5px 20px var(--dark-gray);    
}

/* Sócias */
.socias-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.socias-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
}

.socia-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.socia-image {
    height: 100%;
}

.socia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.socia-info {
    padding: 30px;
}

.socia-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.socia-info .oab {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.socia-info .formacao {
    margin-bottom: 20px;
    font-style: italic;
}

.socia-detalhes p {
    margin-bottom: 10px;
}

.socia-detalhes strong {
    color: var(--primary-color);
}

/* Áreas de Atuação */
.atuacao-section {
    padding: 80px 0;
    background-color: var(--white);
}

.atuacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.atuacao-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.atuacao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.atuacao-card i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.atuacao-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.atuacao-card ul {
    list-style: none;
}

.atuacao-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.atuacao-card ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 20px;
}

.destaque-section {
    padding: 60px 0;
    background: linear-gradient(rgba(26, 63, 114, 0.153), rgba(26, 63, 114, 0.652)), url('images/imagem\ fundo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: px 0;
    text-align: center;
}

.destaque-content {
    max-width: 800px;
    margin: 0;
    text-align: center;
}

.destaque-texto {
    font-size: 25px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: white;
    width: 500px;
    font-family: 'Playfair Display';
}

.destaque-numeros {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    font-family: 'Playfair Display';
}

.numero-item {
    text-align: center;
}

.numero {
    font-size: 48px;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.numero-label {
    font-size: 18px;
    color: var(--light-text);
}

.destaque-section .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.containerDestaque{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgDestaque img{
    width: auto;
    height: 440px;
    margin-left: 100px;
    border-radius: 40px 0px 40px 0px;
    box-shadow: 5px 5px 15px rgb(66, 64, 64);
}

.div-reviews{
    padding-left:150px; 
    padding-right: 150px; 

}

@media (max-width: 768px) {
    .div-reviews{
        padding-left: 0;
        padding-right: 0;
    }
}



/* Responsividade */
@media (max-width: 768px) {
    .imgDestaque img{
        height: 350px;
        width: auto;
        margin: 0;
        margin-bottom: 20px;
    }

    .containerDestaque{
        flex-direction: column-reverse;
    }

    .destaque-content, .destaque-texto{
        width: 320px;
    }

    .destaque-texto {
        font-size: 18px;
    }
    
    .destaque-numeros {
        gap: 30px;
    }
    
    .numero {
        font-size: 36px;
    }
    
    .numero-label {
        font-size: 16px;
    }
}

/* Testimonials */

.section-title{
    text-align: center;
}

.testimonials {
    background-color: #f9f9f9;
    padding-top: 100px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    padding: 30px;
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid #bc9c22;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-item h4 {
    font-size: 1.2rem;
    color: #222;
}

/* Contato */
.contato-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contato-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contato-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 20px;
    color: var(--accent-color);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.contato-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contato-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: rgba(7, 29, 57, 0.963);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    margin-top: 15px;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-contact .whatsapp-btn {
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* ----- BOTÃO WHATSAPP FIXO ----- */
.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding:10px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: transform 0.3s;
}

.div_whatsapp{
    height: 50px;
    width: 50px;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
}

.btn-whatsapp img {
    width: 50px;
    height: 50px;
}

/* Responsividade */
@media (max-width: 1014px) {
    .socia-card {
        grid-template-columns: 1fr;
    }
    
    .socia2{
        display: none;
    }

    .socia1 img{
        width:350px;
        height: auto;
    }

    .socia-image {
        height: 300px;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 0px;
        align-items: center;
    }

    .testimonials{
        padding-top: 10px;
    }

    .socias-section{
        padding-top: 10px;
    }

    .testimonial-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid #bc9c22;
}
    
    nav ul {
        display: none;
    }

    .whatsapp-header{
        display: none;
    }
    
    nav ul li {
        margin: 0 15px 10px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }
    
    .socias-grid,
    .valores-grid,
    .atuacao-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul,
    .footer-contact p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}