/* ======================================
   VARIÁVEIS E RESET
====================================== */
:root {
    /* Paleta de cores */
    --primary: #152736;      /* Azul marinho escuro (cor principal) */
    --secondary: #b59d6b;    /* Dourado/bege mais suave */
    --dark: #0e1923;         /* Azul marinho muito escuro */
    --light: #f7f7f7;        /* Cinza muito claro */
    --white: #ffffff;        /* Branco */
    --gray-100: #f8f9fa;     /* Cinza muito claro */
    --gray-200: #e9ecef;     /* Cinza claro */
    --gray-300: #dee2e6;     /* Cinza médio claro */
    --gray-400: #ced4da;     /* Cinza médio */
    --gray-500: #adb5bd;     /* Cinza médio escuro */
    --gray-600: #6c757d;     /* Cinza escuro */
    --gray-700: #495057;     /* Cinza muito escuro */
    --gray-800: #343a40;     /* Quase preto */
    --gray-900: #212529;     /* Preto suave */
    --text-dark: #333333;    /* Texto escuro */
    --text-light: #ffffff;   /* Texto claro */
    
    /* Fontes */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50%;
}

/* Reset e estilos base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: var(--space-sm);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style-type: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.highlight {
    color: var(--secondary);
}

/* ======================================
   BOTÕES
====================================== */
.btn {
    display: inline-block;
    padding: 1rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.primary-btn {
    background-color: var(--secondary);
    color: var(--dark);
    border: 1px solid var(--secondary);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-btn {
    background-color: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.secondary-btn:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ======================================
   HEADER
====================================== */
.header {
    background-color: var(--primary);
    padding: var(--space-sm) 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.contact-cta .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
}

/* ======================================
   HERO SECTION
====================================== */
.hero {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border-bottom: 2px solid var(--secondary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg?v=1.2');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

/* Adicionando estilos para o logo */
.hero-logo {
    text-align: center;
    margin-bottom: var(--space-sm);
    max-width: 100%;
}

.logo-image {
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Responsividade para o logo */
@media (max-width: 768px) {
    .logo-image {
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .logo-image {
        max-width: 200px;
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: 2.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content h2 {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--gray-200);
    margin-bottom: var(--space-md);
}

/* Novos estilos para features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-feature {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

.hero-feature i {
    color: var(--secondary);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.hero-feature span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Descrição */
.hero-description {
    color: var(--gray-200);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ======================================
   VALUE PROPOSITION
====================================== */
.value-proposition {
    padding: var(--space-lg) 0;
    background-color: var(--gray-100);
}

.value-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.value-card p {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--gray-700);
}

/* ======================================
   SERVICES
====================================== */
.services {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.service-card {
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--secondary);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.service-card h3 {
    margin-bottom: var(--space-xs);
    color: var(--secondary);
}

.service-card p {
    color: var(--gray-300);
    margin-bottom: var(--space-sm);
}

.service-list li {
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
}

.service-list li:last-child {
    border-bottom: none;
}

.services-cta {
    text-align: center;
}

/* ======================================
   NEGOTIATION
====================================== */
.negotiation {
    padding: var(--space-xl) 0;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--secondary);
}

.negotiation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg?v=1.2');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.negotiation .section-title {
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.negotiation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.negotiation-content p {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--gray-300);
}

.negotiation-cta {
    margin-top: var(--space-md);
}

/* ======================================
   LAWYER SECTION
====================================== */
.lawyer {
    padding: var(--space-xl) 0;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
    color: var(--white);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
}

.lawyer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    z-index: 1;
}

.lawyer .section-title {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.lawyer-card {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
    border: 1px solid var(--secondary);
}

.lawyer-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--dark), rgba(0,0,0,0.4));
    border-right: 2px solid var(--secondary);
}

.lawyer-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(181, 157, 107, 0.1) 0%, rgba(21, 39, 54, 0) 70%);
    z-index: 1;
}

.lawyer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
    z-index: 2;
    position: relative;
}

.featured-lawyer-image {
    max-width: 100%;
}

.lawyer-card:hover .lawyer-image img {
    transform: scale(1.02);
}

.lawyer-info {
    flex: 1;
    padding: var(--space-lg);
    background-color: rgba(255, 255, 255, 0.05);
}

.lawyer-info h3 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: var(--space-xs);
    position: relative;
    padding-bottom: var(--space-xs);
}

.lawyer-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.lawyer-subtitle {
    color: var(--gray-300);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.lawyer-description {
    margin-bottom: var(--space-md);
}

.lawyer-description p {
    color: var(--gray-300);
    line-height: 1.6;
    font-size: 1.05rem;
}

.lawyer-credentials {
    margin-bottom: var(--space-md);
}

.lawyer-credentials li {
    padding: var(--space-xs) 0;
    color: var(--gray-300);
    position: relative;
    padding-left: 25px;
}

.lawyer-credentials li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary);
    position: absolute;
    left: 0;
}

.lawyer-cta {
    margin-top: var(--space-md);
}

.team-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.team-info p {
    font-size: 1.1rem;
    color: var(--gray-300);
    font-style: italic;
}

/* ======================================
   ACHIEVEMENTS SECTION
====================================== */
.achievements {
    padding: var(--space-lg) 0;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200px;
    height: 200px;
    background-color: var(--secondary);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
    position: relative;
    z-index: 2;
}

.achievement-card {
    text-align: center;
    padding: var(--space-md);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.achievement-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}

.achievement-icon i {
    font-size: 1.8rem;
    color: var(--secondary);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
    font-family: var(--font-secondary);
}

.achievement-text {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievement-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   TESTIMONIALS
====================================== */
.testimonials {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    background-color: var(--white);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: var(--secondary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

/* Estilos para o carrossel de depoimentos */
.testimonials-carousel {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.testimonials .container {
    width: 100%;
    max-width: 1300px; /* Aumentar um pouco para evitar cortes nas laterais */
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 calc(33.333% - var(--space-md) * 2/3);
    min-width: 280px;
    min-height: 200px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    position: relative;
    padding-top: var(--space-sm);
    margin-bottom: var(--space-md);
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary);
    font-size: 1.5rem;
    position: absolute;
    top: -10px;
    left: -5px;
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-300);
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-sm);
}

.testimonial-author img {
    display: none; /* Oculta as imagens mas mantém o código para compatibilidade */
}

.testimonial-author h4 {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--secondary);
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* Controles do carrossel */
.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    position: relative;
    z-index: 2;
}

.testimonial-nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-nav:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsividade do carrossel */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-md) * 1/2);
    }
    
    .testimonials .container {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .testimonials-track {
        padding-left: 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        flex: 0 0 calc(100% - var(--space-md));
    }
    
    .testimonials .container {
        padding: 0;
    }
    
    .testimonials-track {
        padding-left: 10px;
    }
}

/* ======================================
   FAQ
====================================== */
.faq {
    padding: var(--space-xl) 0;
    background-color: var(--light);
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-md);
    position: relative;
    z-index: 2;
}

.faq-item {
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
}

.faq-question i {
    color: var(--secondary);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 var(--space-md);
}

.faq-answer p {
    margin: var(--space-md) 0;
    color: var(--gray-300);
    transition: opacity 0.3s ease 0.1s;
}

.faq-item.active .faq-question {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Valor maior para acomodar textos mais longos */
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* ======================================
   CONTACT
====================================== */
.contact {
    padding: var(--space-xl) 0;
    background-color: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-lg);
}

.contact-form {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--secondary);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--gray-800);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group button {
    width: 100%;
}

.info-card {
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--secondary);
}

.info-card h3 {
    color: var(--secondary);
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-xs);
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.info-list li i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-right: var(--space-sm);
    margin-top: 5px;
}

.info-list li span {
    line-height: 1.5;
    color: var(--gray-300);
}

/* ======================================
   FOOTER
====================================== */
.footer {
    background-color: var(--dark);
    color: var(--gray-400);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo {
    margin-bottom: 0.3rem;
}

.footer-logo p {
    margin-bottom: 0;
    font-family: var(--font-secondary);
    font-style: italic;
    color: var(--gray-400);
}

.footer-copyright p {
    margin-bottom: 0.3rem;
    text-align: right;
    font-size: 0.9rem;
}

/* ======================================
   WHATSAPP BUTTON
====================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ======================================
   MEDIA QUERIES
====================================== */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .lawyer-card {
        flex-direction: column;
    }
    
    .lawyer-image {
        height: 450px;
        flex: none;
        border-right: none;
        border-bottom: 2px solid var(--secondary);
    }
    
    .lawyer-image img {
        object-position: top 15%;
    }
    
    .featured-lawyer-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: var(--space-sm);
    }
    
    .lawyer-image {
        height: 400px;
    }
    
    .lawyer-image img {
        object-position: top 10%;
    }
    
    .featured-lawyer-image {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 13px;
    }
    
    .header .contact-cta {
        display: none;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
    }
    
    .value-card {
        padding: var(--space-md);
    }
    
    .contact-form,
    .info-card {
        padding: var(--space-md);
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-copyright p {
        text-align: center;
    }
    
    .lawyer-image {
        height: 350px;
    }
    
    .lawyer-image img {
        object-position: top 5%;
    }
    
    .featured-lawyer-image {
        max-width: 100%;
    }
}

.lawyer-conclusion {
    color: var(--gray-200);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    font-style: italic;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials-track {
    display: flex;
    gap: var(--space-md);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    padding-left: calc((100vw - 1170px) / 2 + 15px);
    padding-right: 15px;
}

@media (max-width: 1200px) {
    .testimonials-track {
        padding-left: 20px;
    }
} 