/* ================================================
   SIMÃO ADVOCACIA - COMPLETE CSS
   ================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --gold: #C5A059;
    --gold-light: #d4b574;
    --gold-dark: #a88640;
    --navy: #1a1a2e;
    --navy-light: #16213e;
    --navy-dark: #0f0f1a;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-gray: #e8e8e8;
    --mid-gray: #999999;
    --dark-gray: #555555;
    --text-dark: #2c2c2c;
    --text-body: #555555;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 5px 25px rgba(197, 160, 89, 0.3);
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ---------- RESET / NORMALIZE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- UTILITIES ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold {
    color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn--primary:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn--cta {
    background-color: var(--whatsapp-green);
    color: var(--white);
    border-color: var(--whatsapp-green);
    font-size: 1.05rem;
    padding: 16px 40px;
}

.btn--cta:hover {
    background-color: var(--whatsapp-dark);
    border-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header--light .section-header__tag,
.section-header--light .section-header__title,
.section-header--light .section-header__desc {
    color: var(--white);
}

.section-header__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-header__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-header__line {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header__desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
}

/* ---------- ANIMATIONS ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: var(--navy);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.navbar__logo {
    display: flex;
    align-items: center;
}

.navbar__logo-img {
    height: 50px;
    width: auto;
    filter: sepia(1) saturate(2.5) brightness(1.1) hue-rotate(-10deg);
    transition: var(--transition);
}

.navbar.scrolled .navbar__logo-img {
    height: 40px;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 60%;
}

.navbar__link:hover {
    color: var(--gold);
}

.navbar__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--gold);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    transition: var(--transition);
}

.navbar__cta:hover {
    background-color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.navbar__hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A059' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 15, 26, 0.4) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero__photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--gold);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
    animation: fadeInUp 0.8s ease forwards;
}

.hero__logo {
    width: 220px;
    margin: 0 auto 30px;
    filter: sepia(1) saturate(2.5) brightness(1.1) hue-rotate(-10deg);
    animation: fadeInUp 0.8s ease forwards;
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.2rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.hero__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__location {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero__location i {
    color: var(--gold);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gold);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* ================================================
   SERVICES
   ================================================ */
.services {
    padding: 100px 0;
    background-color: var(--off-white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.service-card__icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.service-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: var(--navy);
    color: var(--white);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.service-card__btn:hover {
    background-color: var(--whatsapp-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* ================================================
   ABOUT
   ================================================ */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

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

.about__image {
    position: relative;
    flex: 0 0 42%;
}

.about__image-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.about__image-placeholder {
    display: none;
}

.about__image-placeholder::before,
.about__image-placeholder i,
.about__image-placeholder span {
    display: none;
}

.about__image-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 8px;
    z-index: 1;
}

.about__content {
    flex: 1;
}

.about__content .section-header__tag {
    display: block;
    margin-bottom: 8px;
}

.about__content .section-header__title {
    text-align: left;
    margin-bottom: 24px;
}

.about__text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 30px 0;
}

.about__highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.about__highlight-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ================================================
   VALUES / MISSION
   ================================================ */
.values {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
}

.values__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A059' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.values .container {
    position: relative;
    z-index: 2;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.value-card:hover {
    background-color: rgba(197, 160, 89, 0.08);
    border-color: var(--gold);
    transform: translateY(-6px);
}

.value-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-card:hover .value-card__icon {
    background-color: var(--gold);
}

.value-card__icon i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.value-card:hover .value-card__icon i {
    color: var(--white);
}

.value-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.value-card__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
    padding: 100px 0;
    background-color: var(--off-white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-card__stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid var(--gold);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.testimonial-card__avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__avatar i {
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-card__author strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--mid-gray);
}

/* ================================================
   CTA
   ================================================ */
.cta {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    overflow: hidden;
}

.cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A059' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta__content {
    text-align: center;
}

.cta__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta__phone {
    margin-top: 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta__phone a {
    color: var(--gold);
}

.cta__phone a:hover {
    color: var(--gold-light);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background-color: var(--navy-dark);
    padding-top: 60px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    height: 50px;
    width: auto;
    filter: sepia(1) saturate(2.5) brightness(1.1) hue-rotate(-10deg);
    margin-bottom: 16px;
}

.footer__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__social a:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer__links-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer__links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: inline-block;
}

.footer__links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__contact i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.footer__contact span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__contact a:hover {
    color: var(--gold);
}

.footer__map {
    padding: 30px 0;
}

.footer__map iframe {
    border-radius: 10px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer__bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ================================================
   FLOATING WHATSAPP
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    transition: var(--transition);
}

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

.whatsapp-float i {
    font-size: 1.8rem;
    color: var(--white);
}

.whatsapp-float__tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float__tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    right: 74px;
}

/* ================================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ================================================ */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ================================================
   RESPONSIVE - MOBILE LANDSCAPE (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {
    /* Navbar mobile */
    .navbar__hamburger {
        display: flex;
    }

    .navbar__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 40px;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .navbar__links.open {
        right: 0;
    }

    .navbar__link {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar__link::after {
        display: none;
    }

    .navbar__cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 0.95rem;
    }

    /* Hero */
    .hero__title {
        font-size: 2.2rem;
    }

    .hero__logo {
        width: 160px;
    }

    .hero__subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    /* Services */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-card {
        padding: 28px 20px;
    }

    /* About */
    .about__inner {
        flex-direction: column;
        gap: 40px;
    }

    .about__image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about__content .section-header__title {
        text-align: center;
    }

    .about__content .section-header__tag {
        text-align: center;
    }

    .about__text {
        text-align: center;
    }

    .about__highlights {
        text-align: left;
    }

    .about .btn {
        display: flex;
        margin: 0 auto;
    }

    /* Values */
    .values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* CTA */
    .cta__title {
        font-size: 1.7rem;
    }

    /* Footer */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Section header */
    .section-header__title {
        font-size: 1.9rem;
    }

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

/* ================================================
   RESPONSIVE - MOBILE PORTRAIT (max-width: 480px)
   ================================================ */
@media (max-width: 480px) {
    .hero__title {
        font-size: 1.7rem;
    }

    .hero__logo {
        width: 130px;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section-header__title {
        font-size: 1.6rem;
    }

    .services {
        padding: 70px 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .about {
        padding: 70px 0;
    }

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

    .values {
        padding: 70px 0;
    }

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

    .testimonials {
        padding: 70px 0;
    }

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

    .cta {
        padding: 60px 0;
    }

    .cta__title {
        font-size: 1.4rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .btn--cta {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .whatsapp-float__tooltip {
        display: none;
    }
}