/* Importar fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #fefefe;
    scroll-behavior: smooth;
}

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

/* Header */
.header {
    background: #fefefe;
    box-shadow: 0 2px 20px rgba(212, 163, 115, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 1.6rem;
    color: #d4a373;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: 'DM Serif Display', serif;
    line-height: 1.3;
}

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

.logo a:hover {
    color: #8b6f47;
}

.logo span {
    font-size: 0.9rem;
    color: #8b6f47;
    display: block;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav li {
    position: relative;
}

.nav a {
    text-decoration: none;
    color: #2c1810;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav a:hover {
    color: #d4a373;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #d4a373;
    transition: width 0.3s ease;
}

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

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.has-submenu > a::before {
    content: '▾';
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.has-submenu:hover > a::before {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fefefe;
    box-shadow: 0 4px 20px rgba(212, 163, 115, 0.2);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border: 1px solid rgba(212, 163, 115, 0.1);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #2c1810;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 163, 115, 0.05);
}

.submenu a:last-child {
    border-bottom: none;
}

.submenu a:hover {
    background: rgba(212, 163, 115, 0.1);
    color: #d4a373;
    padding-left: 2rem;
}

.submenu a::after {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #d4a373 0%, #e6c8a8 50%, #f2d9c1 100%);
    color: #2c1810;
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: rgba(44, 24, 16, 0.08);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: rgba(44, 24, 16, 0.1);
    border-radius: 50%;
    transform: translateY(-50%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(44, 24, 16, 0.2);
    font-family: 'DM Serif Display', serif;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(44, 24, 16, 0.1);
    font-family: 'Montserrat', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn-primary {
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(44, 24, 16, 0.2);
    position: relative;
    overflow: hidden;
    background: #2c1810;
    color: #fefefe;
    border-color: #2c1810;
}

.btn-primary:hover {
    background: #8b6f47;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.3);
    border-color: #8b6f47;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border-color: #25d366;
    animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
    background: #20b858;
    border-color: #20b858;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #2c1810;
    color: #2c1810;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #2c1810;
    color: #fefefe;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.2);
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf6f0 0%, #fefefe 100%);
    scroll-margin-top: 100px;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-text h3 {
    font-size: 2.8rem;
    color: #8b6f47;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    line-height: 1.3;
}

.oab-info {
    margin-bottom: 1.5rem;
}

.oab-number {
    background: #d4a373;
    color: #2c1810;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sobre-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #2c1810;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

.sobre-buttons {
    margin-bottom: 2.5rem;
    text-align: left;
}

.sobre-buttons .btn-primary {
    padding: 12px 30px;
    font-size: 0.95rem;
    background: #d4a373;
    color: #2c1810;
    border-color: #d4a373;
}

.sobre-buttons .btn-primary:hover {
    background: #8b6f47;
    color: #fefefe;
    border-color: #8b6f47;
}

.expertise-section {
    margin-top: 2rem;
}

.section-title {
    font-size: 1.4rem;
    color: #8b6f47;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'DM Serif Display', serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a373, #e6c8a8);
    border-radius: 2px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.expertise-card {
    background: linear-gradient(135deg, #fefefe 0%, #faf6f0 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1.5px solid #f2d9c1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(212, 163, 115, 0.06);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 163, 115, 0.15);
    border-color: #d4a373;
}

.expertise-card.featured {
    border: 2.5px solid #d4a373;
    box-shadow: 0 6px 24px rgba(212, 163, 115, 0.10);
    background: linear-gradient(135deg, #faf6f0 0%, #f2d9c1 100%);
}

.expertise-card.featured .card-icon {
    background: #d4a373;
    color: #2c1810;
}

.card-icon {
    background: #f2d9c1;
    color: #8b6f47;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.expertise-card:hover .card-icon {
    background: #d4a373;
    color: #2c1810;
    transform: scale(1.1);
}

.card-content h5 {
    font-size: 1.1rem;
    color: #8b6f47;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'DM Serif Display', serif;
}

.card-content p {
    font-size: 0.9rem;
    color: #2c1810;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.sobre-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(212, 163, 115, 0.2);
    background: #f2f2f2;
    height: 500px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.9), transparent);
    padding: 2rem;
    color: white;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
}

/* Fallback para quando a imagem não carregar */
.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #d4a373 0%, #e6c8a8 100%);
    z-index: 0;
}

.image-container::after {
    content: '👩‍💼';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    z-index: 1;
    opacity: 0.3;
}

.profile-image {
    position: relative;
    z-index: 2;
}

/* Áreas de Atuação */
.areas {
    padding: 80px 0;
    background: white;
    scroll-margin-top: 100px;
}

.areas h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 3rem;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.area-card {
    background: linear-gradient(135deg, #fefefe 0%, #faf6f0 100%);
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 6px 30px rgba(212, 163, 115, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f2d9c1;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
}

.area-card.featured {
    border: 3px solid #d4a373;
    background: linear-gradient(135deg, #faf6f0 0%, #f2d9c1 100%);
    box-shadow: 0 8px 35px rgba(212, 163, 115, 0.15);
    transform: scale(1.02);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(212, 163, 115, 0.2);
    border-color: #d4a373;
}

.area-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.area-card h4 {
    font-size: 1.2rem;
    color: #8b6f47;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'DM Serif Display', serif;
}

.area-card p {
    font-size: 0.95rem;
    color: #2c1810;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.area-highlight {
    background: #d4a373;
    color: #2c1810;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(212, 163, 115, 0.3);
}

/* Diferenciais */
.diferenciais {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf6f0 0%, #fefefe 100%);
    scroll-margin-top: 100px;
}

.diferenciais h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 3rem;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.diferencial {
    background: linear-gradient(135deg, #fefefe 0%, #faf6f0 100%);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 6px 30px rgba(212, 163, 115, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f2d9c1;
}

.diferencial:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 163, 115, 0.2);
    border-color: #d4a373;
}

.diferencial-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.diferencial h4 {
    font-size: 1.2rem;
    color: #8b6f47;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'DM Serif Display', serif;
}

.diferencial p {
    font-size: 0.95rem;
    color: #2c1810;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Contato */
.contato {
    padding: 80px 0;
    background: white;
    scroll-margin-top: 100px;
}

.contato h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 3rem;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info {
    background: linear-gradient(135deg, #faf6f0 0%, #fefefe 100%);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid #f2d9c1;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(212, 163, 115, 0.08);
    transition: all 0.3s ease;
}

.contato-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(212, 163, 115, 0.12);
}

.contato-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    color: #d4a373;
}

.contato-item strong {
    font-size: 1.1rem;
    color: #8b6f47;
    margin-bottom: 0.5rem;
    display: block;
    font-family: 'DM Serif Display', serif;
}

.contato-item p {
    color: #2c1810;
    font-family: 'Montserrat', sans-serif;
}

.contato-form {
    background: linear-gradient(135deg, #faf6f0 0%, #fefefe 100%);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid #f2d9c1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #8b6f47;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f2d9c1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a373;
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #8b6f47 100%);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo h4 {
    color: #fefefe;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-logo p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-logo .oab-info {
    background: #d4a373;
    color: #2c1810;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-logo .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 163, 115, 0.2);
    border-radius: 50%;
    color: #fefefe;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-logo .social-links a:hover {
    background: #d4a373;
    color: #2c1810;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links-column h5 {
    color: #fefefe;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-column h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: rgba(212, 163, 115, 0.5);
}

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

.footer-links-column ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-links-column ul li a {
    color: rgba(254, 254, 254, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.footer-links-column ul li i {
    color: #d4a373;
    font-size: 1rem;
    margin-top: 0.1rem;
    min-width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 163, 115, 0.3);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(254, 254, 254, 0.8);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(254, 254, 254, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Menu Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #d4a373;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #faf6f0;
}

::-webkit-scrollbar-thumb {
    background: #d4a373;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8b6f47;
}

/* Responsividade */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        padding: 80px 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        z-index: 1000;
    }
    
    .nav ul.mobile-active {
        display: flex;
    }
    
    .nav ul li {
        width: 100%;
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav ul li a {
        color: white;
        font-size: 18px;
        padding: 10px 0;
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-left: 20px;
        display: none;
        min-width: auto;
    }
    
    .has-submenu.mobile-active .submenu {
        display: block;
    }
    
    .submenu a {
        color: rgba(255,255,255,0.8);
        font-size: 16px;
        padding: 8px 0;
    }
    
    .submenu a:hover {
        background: transparent;
        color: #d4a373;
        padding-left: 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h2 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-image {
        order: -1;
        margin-bottom: 3rem;
    }
    
    .image-container {
        height: 400px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .sobre-text {
        text-align: center;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expertise-card {
        padding: 1.2rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .sobre,
    .areas,
    .diferenciais,
    .contato {
        padding: 60px 0;
    }
    
    .areas h3,
    .sobre h3,
    .diferenciais h3,
    .contato h3 {
        font-size: 2rem;
    }
    
    .area-card,
    .diferencial {
        padding: 1.5rem;
    }
    
    .contato-form,
    .contato-info {
        padding: 2rem;
    }
    
    .footer-logo h4 {
        font-size: 1.2rem;
    }
}

/* Form response styles */
#response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

#response.success {
    background-color: #f0f8f0;
    color: #2c1810;
    border: 1px solid #d4a373;
}

#response.error {
    background-color: #fef2f2;
    color: #2c1810;
    border: 1px solid #fecaca;
}

/* Estilos para o carrossel */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 163, 115, 0.15);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 163, 115, 0.8);
    color: #2c1810;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(212, 163, 115, 1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #d4a373;
}

.credencial-badge {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 24, 16, 0.9);
    color: #fefefe;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    z-index: 10;
}

.credencial-badge .oab {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #d4a373;
}

.credencial-badge .especialidade {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsividade do carrossel */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
    }
    
    .carousel-slides {
        height: 400px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .credencial-badge {
        bottom: 50px;
        padding: 8px 16px;
    }
}