/* Custom CSS for Janaina Lacerda Website */

:root {
    --primary-color: #28a745;
    --secondary-color: #1e3a3a;
    --dark-bg: #1a2e2e;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    background: var(--dark-bg) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.brand-text {
    font-weight: 600;
    font-size: 1rem;
    color: white;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: #ccc;
    font-weight: 300;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 400;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
}

/* Hero Section */


.hero-section {
  /*  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
  
    color: white;
    padding-top: 100px;*/
    color: white;
      padding: 100px 0;
      text-align: left;
      background: url('https://lucianakubo.adv.br/bgFundo.png') no-repeat center center;
      background-size: cover;
      height: 110vh;
    
}

.hero-title {
    margin-top:-194px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

/*.hero-image img {
    height:80% !important;

}*/

.ftadv{
    
    width: 95%;
}


/* Services Section */
.services-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-item i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-name {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.about-oab {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 1rem;
}

.testimonial-info h5 {
    margin: 0;
    font-weight: 600;
}

.testimonial-source {
    margin-left: auto;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.testimonial-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Articles Section */
.articles-section {
    padding: 80px 0;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.article-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--dark-bg);
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-description {
    color: #ccc;
}

/* Footer */
.footer {
    padding: 40px 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 852px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        flex-direction: row;
    }
    
    .brand-text {
        margin-left: 10px;
        font-size: 0.9rem;
    }
    
    .brand-subtitle {
        display: none;
    }
    
    .service-item {
        font-size: 0.9rem;
    }
    
    .hero-section{
        height: 70vh
    }
    
    .hero-title{
        margin-top:-350px;
    }
    
    .hero-subtitle{
        color:#fff;
    }
    .hero-image{
        display:none;
    }
    
    .btn-success{
        
       display: flex;
       align-items: center; /* centraliza verticalmente */
       justify-content: center; /* centraliza horizontalmente */
    }
}




@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        flex-direction: row;
    }
    
    .brand-text {
        margin-left: 10px;
        font-size: 0.9rem;
    }
    
    .brand-subtitle {
        display: none;
    }
    
    .service-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card,
    .article-card {
        margin-bottom: 2rem;
    }
}

