/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Forçar cores específicas e evitar modo escuro automático */
html {
    color-scheme: light;
    -webkit-color-scheme: light;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: white !important;
    background-color: #fff !important;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    
}

/* Background Home */
.bg-home {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.bg-home::before {
    content: '';
    display: block;
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(1, 51, 1, 0), #054100), url("assets/images/backgroundimg.png");
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    opacity: 0.9;
}

/* Header */
header {
    width: 100%;
    overflow: hidden;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
   
}

.header-icons {
    display: flex;
    gap: 14px;
}

.header-icons a {
    color: #d6ba97 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-icons a:hover i {
    animation: translateY 0.8s infinite alternate;
    color: #a7af9a !important;
}

@keyframes translateY {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-8px) scale(1.1);
    }
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
}

.header-logo img {
    max-width: 100%;
    width: 100%;
    height: 300px;
}

.header-button {
    border: 1px solid #d6ba97 !important;
    padding: 8px 24px;
    border-radius: 4px;
    color: #d6ba97 !important;
    background-color: transparent !important;
    transition: background-color 0.8s;
    text-decoration: none;
    font-weight: 600;
}

.header-button:hover {
    border: 1px solid #a7af9a !important;
    background-color: #a7af9a !important;
    color: #053001 !important;
}

/* Legacy Header Styles (keeping for compatibility) */
.header {
     /* background-image: linear-gradient(to bottom, rgba(6,18,30,0.1), #06121e), url('assets/images/fundoHeader4.jpg'); */
    color: white;
    position: relative;
    overflow: hidden;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #d6ba97 !important;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #a7af9a !important;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37 !important;
    text-align: center;
}

.btn-primary {
    background-color: #053001 !important;
    color: white !important;
    border: 2px solid #d6ba97 !important;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #d6ba97 !important;
    color: #053001 !important;
}

/* Hero Section */
.hero {
    color: white !important;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px;
    width: 100%;
    box-sizing: border-box;
    color-scheme: light;
    -webkit-color-scheme: light;
}

.hero h1 {
    text-align: center;
    line-height: 150%;
    max-width: 940px;
    width: 100%;
    font-size: 46px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #d4af37 !important;
    box-sizing: border-box;
}

.hero p {
    text-align: center;
    margin: 14px 0;
    font-size: 18px;
    color: #d6ba97 !important;
}

.button-contact {
    padding: 14px 28px;
    color: white !important;
    background-color: #053001 !important;
    border: 2px solid #d6ba97 !important;
    font-size: 18px;
    font-weight: 600;
    margin: 14px 0;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.button-contact:hover {
    animation: scaleButton 0.8s alternate infinite;
    background-color: #d6ba97 !important;
    color: #053001 !important;
}

@keyframes scaleButton {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.07);
    }
}

/* Legacy Hero Section */
 .hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8f9fa;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    line-height: 1.3;
    letter-spacing: 0.5px;
} 

/* Specialties Section */
.specialties {
    padding: 80px 0;
    background-color: #1a5320 !important;
    width: 100%;
    overflow: hidden;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37 !important;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-description {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #f8f9fa !important;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.specialties-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.specialty-card {
    text-align: center;
    transition: all 0.3s ease;
    padding: 20px;
    border-bottom: 3px solid transparent;
    position: relative;
}

.specialty-card:hover {
    transform: translateY(-3px);
    border-bottom-color: #d4af37;
}

.specialty-icon {
    font-size: 2.5rem;
    color: #d4af37 !important;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.specialty-card:hover .specialty-icon {
    color: #d6ba97 !important;
    transform: scale(1.1);
}

.specialty-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #f8f9fa !important;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.specialty-card:hover h3 {
    color: #d6ba97 !important;
}

.specialty-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.specialty-link:hover {
    color: inherit;
}

.specialty-card p {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
    color: #f8f9fa;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: #f8f9fa !important;
    width: 100%;
    overflow-x: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

.lawyers {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.lawyer-card {
    background-color: #808566 !important;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(5, 48, 1, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    position: relative;
}

.lawyer-card:nth-child(1) {
    transform: translateY(-10px);
    z-index: 2;
}

.lawyer-card:nth-child(2) {
    transform: translateY(10px);
    z-index: 1;
}

.lawyer-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lawyer-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(5, 48, 1, 0.3);
    z-index: 3;
}

.lawyer-card:nth-child(1):hover {
    transform: translateY(-15px) scale(1.02);
}

.lawyer-card:nth-child(2):hover {
    transform: translateY(-5px) scale(1.02);
}

.view-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
    background-color: #053001 !important;
    color: white !important;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lawyer-card:hover .view-profile {
    background-color: #1a3d0a !important;
    transform: scale(1.05);
}

.lawyer-photo {
    width: 150px;
    height: 180px;
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
}

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

.lawyer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #053001 !important;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.lawyer-card p {
    color: #2c3e50 !important;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #053001 !important;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-text p {
    color: #2c3e50 !important;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
    font-weight: 400;
    text-align: justify;
}

/* Location Section */
.location {
    padding: 80px 0;
    background-color: #a7af9a !important;
    width: 100%;
    overflow: hidden;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    width: 100%;
    box-sizing: border-box;
}

.office-photo {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(5, 48, 1, 0.2);
}

.office-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(5, 48, 1, 0.2);
    height: 250px;
}

/* Contact Details */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(5, 48, 1, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    border-bottom-color: rgba(5, 48, 1, 0.3);
}

.contact-icon {
    color: #053001 !important;
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.contact-info h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    color: #053001 !important;
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-info p {
    color: #2c3e50 !important;
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: #1a5320 !important;
    color: white !important;
    padding: 40px 0;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
    
}

/* .footer-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37 !important;
    margin-bottom: 20px;
} */

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 14px; */
}

.footer-logo img {
    max-width: 50%;
    
    height: auto;
}

.copyright {
    color: #d6ba97 !important;
    font-size: 14px;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }

    .header-logo img {
        width: 1000px;
        height: auto;
    }
    
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        order: -1;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }
    
    .lawyers {
        order: 1;
        display: flex;
        align-items: center;
    }
    
    .lawyer-card:nth-child(1),
    .lawyer-card:nth-child(2) {
        transform: none;
    }
    
    .lawyer-card:nth-child(1):hover,
    .lawyer-card:nth-child(2):hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .lawyer-card h3 {
        font-size: 1.1rem;
    }
    
    .lawyer-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-details {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        max-width: 100%;
    }
    
    .contact-card {
        padding: 12px 0;
        gap: 15px;
    }
    
    .contact-info h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .contact-icon {
        font-size: 1.3rem;
        width: 28px;
    }
    
    .specialties-grid {
        gap: 40px;
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .specialty-card h3 {
        font-size: 1.2rem;
    }
    
    /* Correções para evitar overflow */
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 20px 15px;
    }
    
    .hero {
        padding: 14px 15px;
    }
    
    .hero h1 {
        font-size: 34px;
        padding: 0;
    }
    
    .specialties,
    .about-us,
    .location,
    .event-overview,
    .leadership,
    .event-details,
    .contact-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .specialty-card {
        padding: 30px 20px;
    }
    
    .lawyer-card {
        padding: 20px;
    }
    
    .lawyer-photo {
        width: 150px;
        height: 200px;
    }
    
    /* Correções adicionais para telas muito pequenas */
    .header-content {
        padding: 20px 10px;
    }
    
    .hero {
        padding: 14px 10px;
    }
    
    .hero h1 {
        font-size: 24px;
        padding: 0;
    }
    
    .specialties,
    .about-us,
    .location,
    .event-overview,
    .leadership,
    .event-details,
    .contact-section {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .specialties-grid {
        gap: 20px;
    }
    
    .about-content {
        gap: 20px;
    }
    
    .location-content {
        gap: 20px;
    }
    
    .contact-details {
        gap: 15px;
    }
}

/* Lawyer Profile Pages */
.lawyer-profile {
    padding: 40px 0;
    background-color: #f8f9fa !important;
    width: 100%;
    overflow: hidden;
    
}

.profile-header {
    margin-bottom: 40px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #053001 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: #1a3d0a !important;
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-bottom: 60px;
    background-color: white !important;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(5, 48, 1, 0.1);
    width: 100%;
    box-sizing: border-box;
    
}

.profile-photo {
    text-align: center;
}

.profile-photo img {
    width: 100%;
    max-width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(5, 48, 1, 0.2);
}

.profile-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #000 !important;
    margin-bottom: 10px;
}

.profile-info .title {
    font-size: 1.2rem;
    color: #000 !important;
    font-weight: 500;
    margin-bottom: 5px;
}

.profile-info .oab {
    font-size: 1rem;
    color: #666 !important;
    margin-bottom: 30px;
}

.specialties h3, .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #000 !important;
    margin-bottom: 15px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    background-color: #808566 !important;
    color: #000 !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #000 !important;
}

.contact-item i {
    color: #000 !important;
    width: 20px;
}

.profile-description {
    background-color: white !important;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(5, 48, 1, 0.1);
    width: 100%;
    box-sizing: border-box;
    
}

.profile-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #000 !important;
    margin-bottom: 30px;
    text-align: center;
}

.career-section {
    margin-bottom: 40px;
}

/* Media, Video and Event highlights styling (restores lost styles) */
.media-highlight,
.video-highlight,
.event-highlight {
    background-color: #ffffff !important;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(5,48,1,0.06);
    margin-bottom: 30px;
}

.media-content,
.event-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.media-text,
.event-text {
    flex: 1 1 60%;
}

.media-image,
.event-image {
    flex: 0 0 320px;
    max-width: 40%;
}

.media-image img,
.event-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(5,48,1,0.08);
}

.media-text h4,
.event-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #053001 !important;
}

.media-text p,
.event-text p {
    color: #000 !important;
    line-height: 1.6;
}

.video-highlight .video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(5,48,1,0.08);
}

.video-highlight .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-title {
    font-weight: 700;
    margin-bottom: 6px;
    color: #053001 !important;
}

.video-description {
    color: #333;
    margin-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .media-content,
    .event-content {
        flex-direction: column;
        align-items: stretch;
    }

    .media-image,
    .event-image {
        max-width: 100%;
        flex: 0 0 auto;
        margin-bottom: 16px;
    }

    .media-text,
    .event-text {
        flex: 1 1 auto;
    }
}

.career-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #000 !important;
    margin-bottom: 15px;
    border-bottom: 2px solid #808566 !important;
    padding-bottom: 10px;
}

.career-section p {
    color: #000 !important;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.area-item {
    background-color: #a7af9a !important;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #053001 !important;
    
}

.area-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #000 !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-item h4 i {
    color: #000 !important;
}

.area-item p {
    color: #000 !important;
    line-height: 1.6;
    font-size: 14px;
}

.achievements {
    list-style: none;
    padding: 0;
}

.achievements li {
    color: #000 !important;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.achievements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000 !important;
    font-weight: bold;
}


/* Responsive for Lawyer Profile */
@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .profile-photo img {
        max-width: 250px;
        height: 300px;
    }
    
    .profile-info h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-description {
        padding: 20px;
    }
    
    .profile-description h2 {
        font-size: 1.8rem;
    }
    
    .quartet-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quartet-card {
        padding: 20px;
    }
    
    .quartet-icon {
        font-size: 2rem;
    }
    
    .quartet-card h4 {
        font-size: 1rem;
    }
    
    .quartet-card p {
        font-size: 0.85rem;
    }
    
    /* Correções para evitar overflow */
    .profile-content,
    .profile-description {
        margin-left: 15px;
        margin-right: 15px;
        width: calc(100% - 30px);
    }
}





/* Responsive Design for New Header Structure */
@media screen and (max-width: 768px) {
    .header-content {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 15px;
    }

    .header-icons {
        margin-top: 16px;
    }

    .header-icons i {
        font-size: 24px;
    }

    .header-logo img {
        width: 500px;
        margin-top: 46px;
    }

    .header-button {
        display: none;
    }

    .hero {
        min-height: 60vh;
        padding: 14px 15px;
    }

    .hero h1 {
        font-size: 34px;
        padding: 0;
        width: 100%;
    }

    .hero p {
        font-size: 14px;
    }
}

@media screen and (max-width: 720px) {
    .hero {
        min-height: 60vh;
        padding: 14px 15px;
    }

    .hero h1 {
        font-size: 34px;
        padding: 0;
        width: 100%;
    }

    .hero p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    /* Correções para telas muito pequenas */
    .header-content {
        padding: 20px 10px;
    }
    
    .hero {
        padding: 14px 10px;
    }
}

/* WhatsApp Button */
.btn-whatsapp {
    position: fixed;
    bottom: 14px;
    right: 24px;
    z-index: 99;
    color: white;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.4s;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
}

.btn-whatsapp .tooltip-text {
    visibility: hidden;
    position: absolute;
    width: 120px;
    top: 8px;
    left: -144px;
    padding: 6px;
    border-radius: 8px;
    background-color: #0c0c0c;
    color: white;
    opacity: 0;
    transition: opacity 0.4s;
    font-size: 12px;
    text-align: center;
}

.btn-whatsapp:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

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

.whatsapp-float a {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}
