/* CSS Document */

/* style.css - Design Moderno para Site de Advogado */
:root {
    --primary-color: #1a5f7a;
    --primary-light: #2a7fa3;
    --secondary-color: #ff7b00;
    --secondary-light: #ff9e40;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f7ff;
    color: var(--dark-color);
    line-height: 1.6;
    background-image: linear-gradient(to bottom, #e3f2fd, #f0f7ff);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */

.header-top {
    /* Opção recomendada: Gradiente sutil */
    background: linear-gradient(135deg, #1a5f7a 0%, #2a7fa3 100%);
    color: #FFCC00;
    padding: 12px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   
}



.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}

.logo-text {
    font-size: 14px;
    line-height: 1.4;
	  color: #FFCC00;
}

.logo-text .specialties {
    font-weight: bold;
    font-size: 13px;
}

.logo-text .phone {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
	color: #FFFFFF; /* Branco para destacar mais */
    font-weight: bold;
}

.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    border-radius: var(--border-radius);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-fixed:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-fixed img {
    width: 40px;
    height: 40px;
}

.whatsapp-fixed .phone-label {
    background-color: #FFFF00;
    color: #000;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 5px;
    display: block;
}

/* Hero Section */
.hero {
    padding-top: 100px;
    padding-bottom: 50px;
    text-align: center;
}

.hero-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.hero-logo {
    max-width: 247px;
    height: auto;
    margin-bottom: 25px;
}

.hero h1 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.hero .highlight {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Áreas de Atuação */
.section-title {
    color: var(--primary-color);
    font-size: 28px;
    text-align: center;
    margin: 40px 0 30px;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 10px auto;
    border-radius: 2px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}


.area-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.area-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.area-list {
    list-style: none;
}

.area-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.area-list li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.area-list a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 16px;
}

.area-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Formulário de Análise Gratuita */
.form-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 400px;
    margin: 0 auto 50px;
    border-top: 5px solid var(--secondary-color);
}

.form-card h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.form-card p {
    margin-bottom: 20px;
    text-align: center;
    color: var(--gray-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-light);
}

/* Informações Adicionais */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.info-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.info-card ul {
    list-style-position: inside;
    margin-left: 10px;
}

.info-card li {
    margin-bottom: 8px;
}

/* Rodapé */
.footer {
    background-color: #000066;
    color: white;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.footer-contact {
    flex: 1;
    min-width: 300px;
}

.footer-contact h3 {
    color: #FFCC00;
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info img {
    width: 40px;
    height: 40px;
}

.contact-info span {
    font-size: 18px;
    font-weight: bold;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #CCCCCC;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero {
        padding-top: 140px;
        padding-bottom: 30px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .areas-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .whatsapp-fixed {
        left: 10px;
        bottom: 10px;
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .whatsapp-fixed img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 25px 15px;
    }
    
    .hero h1 {
        font-size: 22px;
    }
    
    .area-card,
    .info-card,
    .form-card {
        padding: 20px;
    }
}