/* 
    Marleide Teixeira Advocacia - Custom Stylesheet
    Colors: Marsala (#340016), Gold (#D4AF37)
*/

:root {
    --primary-color: #340016;
    /* Marsala */
    --secondary-color: #D4AF37;
    /* Gold */
    --text-color: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --bg-light: #fdfdfd;
    --bg-dark: #121212;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #075E54;
    --transition: all 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Bodoni Moda', serif;
    font-weight: 400;
    -webkit-text-stroke: 0.75px currentColor;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

/* Header & Nav */
header {
    background: linear-gradient(160deg, #050002 0%, #111111 20%, #20000d 60%, var(--primary-color) 100%);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: fixed;
    width: 95%;
    max-width: 1400px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 12px;
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

header.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    padding: 8px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    transition: var(--transition);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.btn-cta-header {
    background: linear-gradient(45deg, #25D366, #075E54, #25D366, #075E54);
    background-size: 400% 200%;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    animation: 2s cubic-bezier(0.2, 0.5, 0.9, 0.6) 2s infinite brilho;
}

.btn-cta-header:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 90vh;
    background-color: #0a0a0a;
    background-image:
        linear-gradient(135deg, rgba(32, 0, 13, 0.4) 0%, rgba(17, 17, 17, 0.9) 100%),
        url('../hero_bg_justice.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(52, 0, 22, 0.15) 0%, rgba(0, 0, 0, 0.8) 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: left;
    max-width: 100%;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: left;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.hero-phones {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    gap: 20px;
}

.hero-phones i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Hero Visual & Rings */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-emblem-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-emblem {
    width: 280px;
    height: auto;
    z-index: 5;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
}

.tech-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.tech-rings::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 1px solid rgba(212, 175, 55, 0.05);
    border-radius: 50%;
}

.tech-rings.rings-2 {
    width: 125%;
    height: 125%;
    border: 1px solid rgba(212, 175, 55, 0.03);
    border-style: dashed;
    animation: rotateRings 30s linear infinite;
}

@keyframes rotateRings {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* CTA BUTTON ANIMATION (AS REQUESTED) */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    animation: 2s cubic-bezier(0.2, 0.5, 0.9, 0.6) 2s infinite brilho;
    background-image: linear-gradient(45deg,
            #25D366,
            #075E54,
            #25D366,
            #075E54);
    background-size: 400% 200%;
    transition: all .8s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

@keyframes brilho {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}

/* Service Cards */
.atuacao {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

.section-title.left-align {
    text-align: left;
}

.section-title.left-align::after {
    margin: 15px 0 0;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #20000d;
    /* Deeper Marsala variation */
    padding: 50px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    flex: 1 1 calc(31% - 30px);
    /* 3 in first row */
    max-width: 380px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Wide distribution for bottom 2 cards as requested */
.service-card:nth-child(4),
.service-card:nth-child(5) {
    flex: 1 1 calc(48% - 30px);
    max-width: 585px;
    /* Wider to match roughly the 2nd print's balance */
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: #340016;
    box-shadow: 0 20px 60px rgba(52, 0, 22, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card:hover .service-icon {
    color: var(--secondary-color);
    transform: scale(1.15) translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.4;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.btn-saber-mais {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: auto;
}

.btn-saber-mais i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-saber-mais:hover {
    color: var(--white);
}

.btn-saber-mais:hover i {
    transform: translateX(5px);
}

.service-footer-cta {
    margin-top: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 60px;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalScale 0.4s ease;
}

@keyframes modalScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

#modal-body {
    text-align: center;
}

#modal-body i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

#modal-body h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.2rem;
}

#modal-body .modal-text {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.btn-consultar {
    display: inline-block;
    background-color: #2c3135;
    /* Dark color as seen in print */
    color: white;
    padding: 18px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
}

.btn-consultar:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* About Section */
.sobre {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1.3;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.about-image {
    flex: 0.95;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px var(--secondary-color);
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Team Section */
.time {
    padding: 80px 0;
    background: linear-gradient(160deg, #111111 0%, #111111 10%, #20000d 60%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--secondary-color);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
}

.team-card-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.team-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.35rem;
}

.team-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.9;
}

/* Differentials */
.diferenciais {
    padding: 100px 0;
    background: linear-gradient(160deg, #111111 0%, #111111 10%, #20000d 60%, var(--primary-color) 100%);
    color: white;
}

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

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #ffffff;
    color: var(--text-color);
}

.faq-container {
    display: flex;
    gap: 80px;
}

.faq-header {
    flex: 1;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.faq-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 600;
}

.faq-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.faq-decoration {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.faq-footer-cta {
    margin-top: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.faq-list {
    flex: 1.5;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.4s ease;
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    opacity: 0;
}

.faq-answer p {
    padding: 10px 0 20px;
    color: var(--light-text);
    line-height: 1.8;
}

/* Active State */
.faq-item.active .faq-question {
    color: var(--primary-color);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(160deg, #111111 0%, #111111 10%, #20000d 60%, var(--primary-color) 100%);
    color: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Contact Section */
.contato {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.map-container {
    height: 100%;
}

.contact-inner-title {
    font-size: 2.22rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: 'Philosopher', sans-serif;
}

.info-card-modern {
    background: #fdfdfd;
    border: 1px solid rgba(52, 0, 22, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.info-line {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.info-line:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--secondary-color);
    width: 25px;
    display: flex;
    justify-content: center;
}

.info-text {
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 500;
}



/* Footer */
footer {
    background-color: #0c0c0c;
    color: rgba(255, 255, 255, 0.8);
    padding: 25px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-ads {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mega-ads img {
    height: 24px;
    width: auto;
    opacity: 0.9;
}

.mega-ads span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* WhatsApp Float & Tooltip */
.whatsapp-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

.whatsapp-tooltip {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 280px;
    padding: 0;
    margin-bottom: 5px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 25px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

.whatsapp-float:hover~.whatsapp-tooltip,
.whatsapp-tooltip:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-header {
    background: #fdfdfd;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tooltip-avatar {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Philosopher', sans-serif;
    border: 2px solid var(--secondary-color);
}

.tooltip-title-box {
    display: flex;
    flex-direction: column;
}

.tooltip-name {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
}

.tooltip-status {
    font-size: 0.75rem;
    color: #25D366;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.tooltip-status i {
    font-size: 0.5rem;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

.tooltip-body {
    padding: 20px;
    background: #f0f2f5;
    margin: 10px;
    border-radius: 0 15px 15px 15px;
}

.tooltip-body p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.4;
}

.tooltip-body p:last-child {
    margin-bottom: 0;
}

.whatsapp-float {
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--whatsapp-dark);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* RESPONSIVIDADE MOBILE */
@media (max-width: 768px) {
    header {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .modal {
        display: none !important;
    }

    .nav-container {
        justify-content: center;
        padding: 0;
    }

    nav {
        display: none;
    }

    .hero {
        text-align: center !important;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        text-align: center !important;
        margin: 0 auto 20px;
    }

    .hero {
        text-align: center !important;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        order: -1;
        margin-bottom: 20px;
    }

    .hero-logo-emblem {
        width: 250px;
        filter: none;
    }

    .logo-emblem-container {
        width: auto;
        height: auto;
        margin: 0 auto;
    }

    .tech-rings,
    .tech-rings.rings-2 {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        text-align: center !important;
        margin: 0 auto 20px;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 0 auto 30px;
        text-align: center !important;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-container {
        flex-direction: column;
    }

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

    .contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-inner-title {
        text-align: center;
    }

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

    .section-title.left-align {
        text-align: center;
    }

    .section-title.left-align::after {
        margin: 15px auto 0;
    }

    .image-wrapper {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 30px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .btn-cta {
        width: 100%;
        max-width: 320px;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .whatsapp-tooltip {
        width: 240px;
    }

    .faq-container {
        flex-direction: column;
        gap: 40px;
    }

    .faq-header {
        position: static;
        text-align: center;
    }

    .service-icon {
        color: var(--secondary-color);
    }

    .faq-decoration {
        margin: 15px auto 0;
    }
}