/* ========================================
   LIMPA FOSSA BAIXADA - STYLESHEET
   Design System: Professional Service Company (Esgotecnica Style)
   Color Scheme: Blue (#003D7A) + Orange (#FF6B35) + Red (#C41E3A)
   ======================================== */

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

:root {
    --primary-blue: #003D7A;
    --primary-orange: #FF6B35;
    --primary-red: #C41E3A;
    --dark-blue: #001F4D;
    --light-blue: #0055B8;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-gray: #666666;
    --border-gray: #DDDDDD;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--white);
}

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

/* ========================================
   HEADER TOP - ESGOTECNICA STYLE
   ======================================== */

.header-top {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-gray);
    padding: 20px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.logo-section {
    flex: 0 0 auto;
    min-width: 120px;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.info-section {
    display: flex;
    gap: 35px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hours Box - 24 HORAS */
.hours-box {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    min-width: 100px;
}

.info-label {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.info-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Phone Box */
.phone-box {
    color: var(--dark-gray);
}

.phone-box i {
    font-size: 20px;
    color: var(--primary-blue);
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.city {
    font-size: 12px;
    color: var(--primary-red);
    font-weight: 600;
}

.number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Location Box */
.location-box {
    border: 2px solid var(--dark-gray);
    padding: 8px 15px;
    border-radius: 4px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-label {
    font-size: 12px;
    color: var(--primary-red);
    font-weight: 600;
}

.location-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-gray);
}

/* ========================================
   NAVBAR - NAVIGATION
   ======================================== */

.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-gray);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    height: 100%;
    margin: 0;
    flex: 1;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 13px;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-gray);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

.search-icon {
    padding: 0 20px;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-gray);
    border-left: 1px solid var(--border-gray);
    height: 100%;
    display: flex;
    align-items: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-icon:hover {
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 5px 0;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
    max-width: 600px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-orange);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.about-item {
    text-align: center;
}

.about-icon {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.about-item h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.about-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info-box h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-gray);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .header-top-content {
        gap: 15px;
    }

    .info-section {
        gap: 15px;
    }

    .logo-img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 15px;
        flex-wrap: wrap;
    }

    .logo-section {
        width: 100%;
        text-align: center;
    }

    .logo-img {
        height: 80px;
    }

    .info-section {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .navbar-content {
        position: relative;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 0 0 0;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
        justify-content: flex-start;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .search-icon {
        border-left: none;
        display: none;
    }

    .hero {
        height: 350px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-top-content {
        gap: 15px;
    }

    .logo-section {
        min-width: auto;
    }

    .logo-img {
        height: 70px;
    }

    .header-top {
        padding: 15px 0;
    }

    .info-section {
        gap: 15px;
    }

    .info-box {
        gap: 8px;
    }

    .hours-box {
        padding: 6px 12px;
        min-width: auto;
    }

    .info-label {
        font-size: 18px;
    }

    .info-text {
        font-size: 9px;
    }

    .phone-info {
        gap: 1px;
    }

    .city {
        font-size: 11px;
    }

    .number {
        font-size: 12px;
    }

    .location-box {
        padding: 6px 12px;
    }

    .location-label {
        font-size: 11px;
    }

    .location-number {
        font-size: 12px;
    }

    .hero {
        height: 280px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .section-title {
        font-size: 22px;
    }

    .footer-content {
        gap: 20px;
    }

    .nav-link {
        padding: 15px 10px;
        font-size: 13px;
    }

    .navbar {
        position: relative;
    }

    .navbar-content {
        height: auto;
    }

    .nav-menu {
        padding: 60px 0 0 0;
    }

    .hamburger {
        padding: 0 15px;
    }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card {
    animation: slideInLeft 0.6s ease-out;
}

.service-card:nth-child(even) {
    animation: slideInRight 0.6s ease-out;
}

/* ========================================
   NEW SERVICES STYLES
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.service-image {
    width: 100%;
    height: 200px;
}

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

.service-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 22px;
}

.service-info p {
    margin-bottom: 20px;
    font-size: 15px;
}

.service-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-action img {
    width: 20px;
    height: 20px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-phone {
    background-color: var(--primary-red);
    color: white;
}

.btn-phone:hover {
    background-color: #A01830;
}

/* ========================================
   ABOUT US SECTION STYLES
   ======================================== */

.about-us {
    padding: 80px 0;
    background-color: var(--white);
}

.about-us-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.about-us-image {
    flex: 1;
    min-width: 300px;
}

.about-us-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-us-text {
    flex: 1.5;
    min-width: 300px;
}

.about-us-text h3 {
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 20px;
}

.about-us-text p {
    margin-bottom: 15px;
    text-align: justify;
}

.about-us-text .btn-whatsapp {
    display: inline-flex;
    margin-top: 20px;
    padding: 15px 30px;
}

@media (max-width: 768px) {
    .about-us-content {
        flex-direction: column;
    }
    
    .about-us-image, .about-us-text {
        width: 100%;
    }
}

/* ========================================
   TESTIMONIALS SECTION STYLES
   ======================================== */

.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

.client-info h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stars {
    color: #FFD700;
    font-size: 14px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========================================
   FAQ SECTION STYLES
   ======================================== */

.faq {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-blue);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #EAEAEA;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ========================================
   AREAS SERVED SECTION STYLES
   ======================================== */

.areas-served {
    padding: 80px 0;
    background-color: var(--primary-blue);
    color: var(--white);
}

.areas-served .section-title {
    color: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.area-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.area-item:hover {
    background: var(--primary-orange);
    transform: scale(1.05);
}

.area-item i {
    margin-right: 8px;
}

/* ========================================
   TIPS SECTION STYLES
   ======================================== */

.tips {
    padding: 80px 0;
    background-color: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tip-image {
    width: 100%;
    height: 180px;
}

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

.tip-content {
    padding: 20px;
}

.tip-content h3 {
    color: var(--primary-blue);
    font-size: 18px;
    margin-bottom: 10px;
}

.tip-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

/* ========================================
   AREAS SERVED LINK STYLES
   ======================================== */

.areas-grid a.area-item {
    text-decoration: none;
    color: var(--white);
    display: block;
}

.areas-grid a.area-item:hover {
    color: var(--white);
    background-color: var(--primary-orange);
}

/* ========================================
   LEADER SECTION STYLES (INSPIRED BY IMAGE)
   ======================================== */

.leader-section {
    background-color: #003D7A; /* Azul escuro do fundo */
    padding: 60px 0;
    color: white;
    overflow: hidden;
}

.leader-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.leader-left {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.leader-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    color: #333;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 450px;
    margin: 0 auto;
}

.leader-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    color: #333;
    margin-bottom: 20px;
}

.leader-image-container {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.leader-pro-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.card-badge {
    position: absolute;
    top: 50%;
    left: -20px;
    background: black;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(-50%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 2px solid white;
}

.card-badge img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.card-badge span {
    font-size: 10px;
    line-height: 1.2;
    text-align: left;
}

.leader-contact-card {
    background: #0055B8;
    border-radius: 15px;
    padding: 20px;
    color: white;
    position: relative;
}

.whatsapp-badge {
    background: #25D366;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-badge img {
    width: 35px;
    height: 35px;
}

.chame-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
}

.whatsapp-number {
    display: block;
    font-size: 20px;
    font-weight: 900;
}

.leader-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.leader-features li {
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.leader-features li::before {
    content: '●';
    color: #FFD700;
}

.leader-right {
    flex: 1.5;
    min-width: 350px;
}

.leader-subtitle {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.leader-divider {
    width: 60px;
    height: 4px;
    background-color: white;
    margin-bottom: 30px;
}

.leader-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.leader-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-leader {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-phone-lider {
    border: 2px solid white;
    color: white;
}

.btn-phone-lider:hover {
    background: white;
    color: #003D7A;
}

.btn-whatsapp-lider {
    background: #25D366;
    color: white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-lider:hover {
    background: #128C7E;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .leader-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .leader-subtitle {
        font-size: 28px;
    }
    
    .leader-divider {
        margin: 0 auto 30px;
    }
    
    .leader-buttons {
        flex-direction: column;
    }
    
    .card-badge {
        left: 50%;
        transform: translate(-50%, -50%);
        top: 0;
    }
}
