/*=============== GOOGLE FONTS ===============*/
/* Loaded in HTML */

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 4.5rem;

    /*========== Colors ==========*/
    --primary-color: #1a365d;
    --primary-color-dark: #0f2744;
    --primary-color-light: #2c5282;
    --secondary-color: #c9a227;
    --secondary-color-dark: #a88921;
    --secondary-color-light: #d4b84a;

    --text-color: #2d3748;
    --text-color-light: #718096;
    --text-color-dark: #1a202c;

    --bg-color: #ffffff;
    --bg-color-alt: #f7fafc;
    --bg-color-dark: #1a365d;

    --border-color: #e2e8f0;

    --white: #ffffff;
    --black: #000000;

    --success-color: #48bb78;
    --error-color: #f56565;

    /*========== Typography ==========*/
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --fs-h1: clamp(2.5rem, 5vw, 4rem);
    --fs-h2: clamp(1.75rem, 4vw, 2.5rem);
    --fs-h3: 1.25rem;
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-tiny: 0.75rem;

    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /*========== Spacing ==========*/
    --section-padding: 6rem 0;
    --container-padding: 1.5rem;

    /*========== Border Radius ==========*/
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /*========== Shadows ==========*/
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /*========== Transitions ==========*/
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /*========== Z-index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    color: var(--text-color-dark);
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section__title {
    font-size: var(--fs-h2);
    margin-bottom: 1rem;
}

.section__description {
    font-size: var(--fs-body);
    color: var(--text-color-light);
    max-width: 600px;
    margin: 0 auto;
}

/*=============== BUTTONS ===============*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
}

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

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

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

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

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

.btn--white:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

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

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

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: var(--fs-small);
}

.btn--block {
    width: 100%;
}

/*=============== HEADER & NAV ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.header.scroll-header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.header.scroll-header .nav__link {
    color: var(--text-color);
}

.header.scroll-header .nav__link:hover,
.header.scroll-header .nav__link.active {
    color: var(--primary-color);
}

.header.scroll-header .nav__logo-img {
    filter: none;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--transition-base);
}

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

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: var(--fs-body);
    font-weight: var(--fw-medium);
    color: var(--white);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--secondary-color);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__cta {
    display: flex;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    transition: color var(--transition-fast);
}

.header.scroll-header .nav__toggle {
    color: var(--text-color);
}

/*=============== WHATSAPP FLOAT ===============*/
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

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

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

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--white);
    color: var(--text-color-dark);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-base);
}

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

@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);
    }
}

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

.hero__overlay {
    position: absolute;
    inset: 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='%23ffffff' 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");
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2rem;
}

.hero__data {
    max-width: 700px;
}

.hero__subtitle {
    display: inline-block;
    font-size: var(--fs-body);
    font-weight: var(--fw-medium);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.hero__title {
    font-size: var(--fs-h1);
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: var(--fw-bold);
    color: var(--white);
    line-height: 1;
}

.hero__stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: var(--fw-bold);
    color: var(--secondary-color);
}

.hero__stat-text {
    display: block;
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero__scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-small);
    transition: color var(--transition-fast);
}

.hero__scroll-link:hover {
    color: var(--white);
}

.hero__scroll-link i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/*=============== ABOUT ===============*/
.about {
    background-color: var(--bg-color);
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
}

.about__experience {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.about__experience-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    line-height: 1;
}

.about__experience-text {
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
}

.about__data .section__subtitle {
    text-align: left;
}

.about__data .section__title {
    text-align: left;
}

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

.about__description strong {
    color: var(--primary-color);
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about__feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-color-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__feature-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.about__feature-content h3 {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    margin-bottom: 0.25rem;
}

.about__feature-content p {
    font-size: var(--fs-small);
    color: var(--text-color-light);
}

/*=============== SERVICES ===============*/
.services {
    background-color: var(--bg-color-alt);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service__card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service__card:hover::before {
    transform: scaleX(1);
}

.service__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service__icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.service__title {
    font-family: var(--font-body);
    font-size: var(--fs-h3);
    font-weight: var(--fw-semibold);
    margin-bottom: 1rem;
}

.service__description {
    font-size: var(--fs-body);
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

.service__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    color: var(--primary-color);
    transition: gap var(--transition-fast);
}

.service__link:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
}

/*=============== CITIES ===============*/
.cities {
    background-color: var(--bg-color);
}

.cities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.city__card {
    background-color: var(--bg-color-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.city__card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.city__icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.city__icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.city__name {
    font-family: var(--font-body);
    font-size: var(--fs-h3);
    font-weight: var(--fw-semibold);
    margin-bottom: 0.25rem;
}

.city__address {
    font-size: var(--fs-small);
    color: var(--text-color-light);
    margin-bottom: 1rem;
}

.cities__cta {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-color-alt);
    border-radius: var(--radius-lg);
}

.cities__cta p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.cta__overlay {
    position: absolute;
    inset: 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='%23ffffff' fill-opacity='0.05'%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");
    pointer-events: none;
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-size: var(--fs-h2);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/*=============== CONTACT ===============*/
.contact {
    background-color: var(--bg-color-alt);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__data .section__subtitle {
    text-align: left;
}

.contact__data .section__title {
    text-align: left;
}

.contact__description {
    color: var(--text-color-light);
    margin-bottom: 2rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact__info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__info-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.contact__info-content h3 {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    margin-bottom: 0.25rem;
}

.contact__info-content a,
.contact__info-content p {
    font-size: var(--fs-body);
    color: var(--text-color-light);
    transition: color var(--transition-fast);
}

.contact__info-content a:hover {
    color: var(--primary-color);
}

.contact__social h3 {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    margin-bottom: 1rem;
}

.contact__social-links {
    display: flex;
    gap: 1rem;
}

.contact__social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: all var(--transition-base);
}

.contact__social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact__form-wrapper {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact__form-title {
    font-family: var(--font-body);
    font-size: var(--fs-h3);
    font-weight: var(--fw-semibold);
    margin-bottom: 2rem;
    text-align: center;
}

.form__group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form__input {
    width: 100%;
    padding: 1rem 1rem 1rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--fs-body);
    color: var(--text-color);
    background-color: var(--white);
    transition: border-color var(--transition-fast);
}

.form__input:focus {
    border-color: var(--primary-color);
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: var(--fs-tiny);
    background-color: var(--white);
    padding: 0 0.25rem;
    color: var(--primary-color);
}

.form__label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: var(--fs-body);
    color: var(--text-color-light);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__textarea + .form__label {
    top: 1rem;
    transform: none;
}

.form__textarea:focus + .form__label,
.form__textarea:not(:placeholder-shown) + .form__label {
    top: -0.5rem;
    transform: none;
}

.form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form__label--select {
    top: -0.5rem;
    left: 0.75rem;
    font-size: var(--fs-tiny);
    background-color: var(--white);
    padding: 0 0.25rem;
    color: var(--primary-color);
    transform: none;
}

.form__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: var(--fs-small);
    color: var(--text-color-light);
}

.form__note i {
    color: var(--success-color);
}

/*=============== FOOTER ===============*/
.footer {
    background-color: var(--primary-color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer__logo img {
    height: 60px;
    width: auto;
}

.footer__description {
    font-size: var(--fs-body);
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.footer__social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer__title {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__list a,
.footer__list span {
    font-size: var(--fs-body);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--secondary-color);
}

.footer__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__list li i {
    font-size: 1rem;
    color: var(--secondary-color);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__bottom p {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.6);
}

/*=============== HERO HOME (PARAGUAS) ===============*/
.hero--home {
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
}

.hero--home.hero--compact {
    min-height: auto;
}

.hero--home .hero__overlay {
    z-index: 0;
}

.hero__top {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3rem;
}

.hero--compact .hero__top {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
}

.hero__logo {
    max-width: 180px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    filter: brightness(0) invert(1);
}

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

.hero__description--center {
    max-width: 600px;
    margin: 0 auto;
}

/*=============== LAWYERS SHOWCASE ===============*/
.lawyers-showcase {
    position: relative;
}

/*=============== LAWYER CARDS ===============*/
.hero__lawyers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Full width lawyer cards */
.hero__lawyers--fullwidth {
    position: relative;
    z-index: 1;
    max-width: none;
    width: 100%;
    margin: 0;
    gap: 0;
    flex: 1;
}

.lawyer-card {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.lawyer-card--large {
    border-radius: 0;
    box-shadow: none;
}

.lawyer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.lawyer-card--large:hover {
    transform: none;
    box-shadow: none;
}

.lawyer-card--large:hover .lawyer-card__overlay {
    background: rgba(0, 0, 0, 0.6);
}

.lawyer-card__image {
    position: relative;
    aspect-ratio: 3/4;
    background-color: var(--primary-color-light);
    overflow: hidden;
}

.lawyer-card--large .lawyer-card__image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 280px;
}

.hero__lawyers--fullwidth .lawyer-card--large {
    height: 100%;
}

.lawyer-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.lawyer-card--large .lawyer-card__placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
}

.lawyer-card--large:nth-child(2) .lawyer-card__placeholder {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

.lawyer-card__placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

.lawyer-card--large .lawyer-card__placeholder i {
    font-size: 8rem;
}

.lawyer-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-slow);
}

.lawyer-card:hover .lawyer-card__photo {
    transform: scale(1.05);
}

.lawyer-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    transition: background var(--transition-base);
}

.lawyer-card--large .lawyer-card__overlay {
    background: rgba(0, 0, 0, 0.5);
}

.lawyer-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--white);
    text-align: left;
}

.lawyer-card--large .lawyer-card__content {
    padding: 3rem;
    text-align: center;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

.lawyer-card__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    margin-bottom: 0.25rem;
    color: var(--white);
}

.lawyer-card--large .lawyer-card__name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.lawyer-card__role {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.lawyer-card--large .lawyer-card__role {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.lawyer-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--secondary-color);
    transition: gap var(--transition-fast);
}

.lawyer-card--large .lawyer-card__cta {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.lawyer-card--large:hover .lawyer-card__cta {
    background-color: var(--white);
    color: var(--primary-color);
    gap: 0.75rem;
}

.lawyer-card:hover .lawyer-card__cta {
    gap: 0.75rem;
}

/*=============== TEAM SECTION ===============*/
.team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.team__card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.team__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team__card-image {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    overflow: hidden;
}

.team__card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team__card-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.team__card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-slow);
}

.team__card:hover .team__card-photo {
    transform: scale(1.05);
}

.team__card-content {
    padding: 1.5rem;
    text-align: center;
}

.team__card-name {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 0.25rem;
}

.team__card-role {
    font-size: var(--fs-small);
    color: var(--text-color-light);
    margin-bottom: 1rem;
}

.team__card-contact {
    margin-bottom: 1rem;
}

.team__card-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366;
    font-weight: var(--fw-medium);
    transition: color var(--transition-fast);
}

.team__card-contact a:hover {
    color: var(--primary-color);
}

.team__card--adjunta {
    opacity: 0.9;
}

.team__card--adjunta .team__card-image {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

/*=============== CITIES GRID 3 ===============*/
.cities__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.city__cp {
    font-size: var(--fs-small);
    color: var(--text-color-light);
    margin-bottom: 1rem;
}

/*=============== HEADER SOLID ===============*/
.header--solid {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.header--solid .nav__link {
    color: var(--text-color);
}

.header--solid .nav__link:hover,
.header--solid .nav__link.active {
    color: var(--primary-color);
}

.header--solid .nav__logo-img {
    filter: none;
}

.header--solid .nav__toggle {
    color: var(--text-color);
}

/*=============== PROFILE HERO ===============*/
.profile-hero {
    padding: calc(var(--header-height) + 3rem) 0 3rem;
    background-color: var(--bg-color-alt);
}

.profile-hero__container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.profile-hero__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.profile-hero__placeholder {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-hero__placeholder i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

.profile-hero__photo {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.profile-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-small);
    color: var(--text-color-light);
    margin-bottom: 1rem;
    transition: color var(--transition-fast);
}

.profile-hero__back:hover {
    color: var(--primary-color);
}

.profile-hero__name {
    font-size: var(--fs-h1);
    margin-bottom: 0.5rem;
}

.profile-hero__role {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: var(--fw-medium);
    margin-bottom: 1.5rem;
}

.profile-hero__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-hero__contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    transition: color var(--transition-fast);
}

.profile-hero__contact-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.profile-hero__contact-item:hover {
    color: var(--primary-color);
}

/*=============== PROFILE INFO ===============*/
.profile-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.profile-info__card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.profile-info__card--highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: var(--white);
}

.profile-info__card--highlight .profile-info__title {
    color: var(--white);
}

.profile-info__card--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color-dark) 100%);
    color: var(--white);
}

.profile-info__card--featured .profile-info__title {
    color: var(--white);
}

.profile-info__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 1.5rem;
    color: var(--text-color-dark);
}

.profile-info__title i {
    font-size: 1.25rem;
}

.profile-info__locations {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.profile-info__location h3 {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    margin-bottom: 0.25rem;
}

.profile-info__location p {
    font-size: var(--fs-small);
    color: var(--text-color-light);
}

.profile-info__tag {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: var(--fs-tiny);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-full);
}

.profile-info__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-info__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--fs-body);
}

.profile-info__list li i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.profile-info__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-info__contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: background-color var(--transition-fast);
}

.profile-info__contact-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.profile-info__contact-link i {
    font-size: 1.5rem;
}

.profile-info__contact-link strong {
    display: block;
    font-size: var(--fs-small);
    margin-bottom: 0.125rem;
}

.profile-info__contact-link span {
    font-size: var(--fs-small);
    opacity: 0.9;
}

.profile-info__specialty {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.profile-info__specialty > i {
    font-size: 3rem;
    opacity: 0.8;
}

.profile-info__specialty h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 0.5rem;
    color: var(--white);
}

.profile-info__specialty p {
    font-size: var(--fs-body);
    opacity: 0.9;
}

/*=============== RESPONSIVE ===============*/
@media screen and (max-width: 1024px) {
    :root {
        --section-padding: 5rem 0;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .cities__grid--3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

    .profile-info__card--featured {
        grid-column: span 2;
    }

    .about__features {
        gap: 1.25rem;
    }

    .section__header {
        margin-bottom: 3rem;
    }

    .hero__top {
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 2rem;
    }

    .team__grid {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --section-padding: 4rem 0;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about__data .section__subtitle,
    .about__data .section__title {
        text-align: center;
    }

    .about__description {
        text-align: center;
    }

    .about__features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about__feature {
        text-align: left;
    }

    .services__grid {
        gap: 1.25rem;
    }

    .service__card {
        padding: 2rem 1.5rem;
    }

    .cities__grid--3 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact__data .section__subtitle,
    .contact__data .section__title {
        text-align: center;
    }

    .contact__description {
        text-align: center;
    }

    .contact__info {
        align-items: stretch;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact__info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .contact__info-icon {
        margin: 0 auto;
    }

    .contact__social {
        text-align: center;
    }

    .contact__form-wrapper {
        margin-bottom: 5rem;
    }

    .contact__social-links {
        justify-content: center;
    }

    .profile-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .profile-hero__image {
        max-width: 250px;
        margin: 0 auto;
    }

    .profile-hero__contact {
        justify-content: center;
        flex-wrap: wrap;
    }

    .profile-hero__cta {
        display: flex;
        justify-content: center;
    }

    .profile-info__grid {
        grid-template-columns: 1fr;
    }

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

    .profile-info__card--featured {
        grid-column: span 1;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 4rem;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right var(--transition-base);
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav__link {
        color: var(--text-color);
        font-size: 1.125rem;
    }

    .nav__link:hover,
    .nav__link.active {
        color: var(--primary-color);
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        color: var(--text-color);
    }

    .nav__toggle {
        display: block;
    }

    .nav__cta {
        display: none;
    }

    /* Hero logo */
    .hero__logo {
        max-width: 140px;
        margin-bottom: 1rem;
    }

    .hero--compact .hero__top {
        padding-top: calc(var(--header-height) + 1.5rem);
        padding-bottom: 2.5rem;
    }

    /* Lawyer cards */
    .hero__lawyers {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .hero__lawyers--fullwidth {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .hero__lawyers--fullwidth .lawyer-card--large .lawyer-card__image {
        min-height: 220px;
    }

    .lawyer-card--large .lawyer-card__name {
        font-size: 1.5rem;
    }

    .lawyer-card--large .lawyer-card__content {
        padding: 2rem;
    }

    .lawyer-card--large .lawyer-card__placeholder i {
        font-size: 5rem;
    }

    .lawyer-card__name {
        font-size: 1.25rem;
    }

    /* Team */
    .team__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__stats {
        gap: 2rem;
    }

    .hero__stat-number {
        font-size: 2.5rem;
    }

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

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

    .cities__grid--3 {
        grid-template-columns: 1fr;
    }

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

    .profile-hero {
        padding: calc(var(--header-height) + 2rem) 0 2rem;
    }

    .profile-hero__name {
        font-size: 1.75rem;
    }

    .profile-info__specialty {
        flex-direction: column;
        text-align: center;
    }

    .profile-info__specialty > i {
        font-size: 2.5rem;
    }

    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__list {
        align-items: center;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta__buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section__description {
        font-size: 0.9375rem;
    }

    .service__card {
        padding: 1.75rem 1.25rem;
    }

    .service__description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .city__card {
        padding: 1.5rem;
    }

    .hero__top {
        padding-top: calc(var(--header-height) + 1.5rem);
        padding-bottom: 1.5rem;
    }

    .hero__description--center {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --section-padding: 3.5rem 0;
        --container-padding: 1rem;
    }

    .hero__logo {
        max-width: 120px;
        margin-bottom: 0.75rem;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
    }

    .hero__description--center {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__top {
        padding-top: calc(var(--header-height) + 1rem);
        padding-bottom: 1rem;
    }

    .hero--compact .hero__top {
        padding-bottom: 2rem;
    }

    .hero__lawyers--fullwidth .lawyer-card--large .lawyer-card__image {
        min-height: 200px;
    }

    .lawyer-card--large .lawyer-card__content {
        padding: 1.5rem;
    }

    .lawyer-card--large .lawyer-card__name {
        font-size: 1.25rem;
    }

    .lawyer-card--large .lawyer-card__role {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .section__header {
        margin-bottom: 2.5rem;
    }

    .section__title {
        line-height: 1.3;
    }

    .section__description {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .about__feature {
        gap: 0.875rem;
    }

    .about__feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .about__feature-content h3 {
        font-size: 0.9375rem;
    }

    .about__feature-content p {
        font-size: 0.8125rem;
    }

    .team__grid {
        max-width: 100%;
    }

    .team__card-content {
        padding: 1.25rem;
    }

    .team__card-name {
        font-size: 1.125rem;
    }

    .team__card-role {
        font-size: 0.8125rem;
    }

    .service__card {
        padding: 1.5rem 1.25rem;
    }

    .service__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1.25rem;
    }

    .service__icon i {
        font-size: 1.375rem;
    }

    .service__title {
        font-size: 1.0625rem;
    }

    .service__description {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .city__card {
        padding: 1.25rem;
    }

    .city__name {
        font-size: 1.125rem;
    }

    .city__address,
    .city__cp {
        font-size: 0.8125rem;
    }

    .cta {
        padding: 3rem 0;
    }

    .cta__title {
        font-size: 1.375rem;
        line-height: 1.3;
    }

    .cta__description {
        font-size: 0.875rem;
    }

    .contact__form-wrapper {
        padding: 1.5rem;
    }

    .contact__form-title {
        font-size: 1.125rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer__description {
        font-size: 0.875rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn--lg {
        padding: 0.875rem 1.5rem;
    }

    .btn--sm {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

/* Móvil muy pequeño - 320px */
@media screen and (max-width: 320px) {
    :root {
        --fs-h1: 1.75rem;
        --fs-h2: 1.35rem;
        --fs-h3: 1rem;
        --fs-body: 0.875rem;
        --fs-small: 0.8125rem;
        --container-padding: 0.75rem;
    }

    .nav__logo-img {
        height: 35px;
    }

    .hero__logo {
        max-width: 100px;
        margin-bottom: 0.5rem;
    }

    .hero__subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .hero__description {
        font-size: 0.875rem;
    }

    .hero__stat-number {
        font-size: 1.75rem;
    }

    .hero__stat-suffix {
        font-size: 1.25rem;
    }

    .hero__stat-text {
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }

    .btn--lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn--sm {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    .section__subtitle {
        font-size: 0.7rem;
    }

    .section__header {
        margin-bottom: 2rem;
    }

    .about__image-placeholder i {
        font-size: 4rem;
    }

    .about__experience {
        padding: 0.75rem 1rem;
        bottom: -1rem;
        right: 0;
    }

    .about__experience-number {
        font-size: 1.5rem;
    }

    .about__experience-text {
        font-size: 0.7rem;
    }

    .about__feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .about__feature-icon i {
        font-size: 1rem;
    }

    .about__feature-content h3 {
        font-size: 0.875rem;
    }

    .about__feature-content p {
        font-size: 0.75rem;
    }

    .service__card {
        padding: 1.25rem;
    }

    .service__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .service__icon i {
        font-size: 1.25rem;
    }

    .service__title {
        font-size: 1rem;
    }

    .service__description {
        font-size: 0.8125rem;
    }

    .service__link {
        font-size: 0.8125rem;
    }

    .city__card {
        padding: 1.25rem;
    }

    .city__icon {
        width: 45px;
        height: 45px;
    }

    .city__icon i {
        font-size: 1.25rem;
    }

    .city__name {
        font-size: 1rem;
    }

    .city__address {
        font-size: 0.75rem;
    }

    .cities__cta {
        padding: 1.25rem;
    }

    .cities__cta p {
        font-size: 0.8125rem;
    }

    .cta__title {
        font-size: 1.25rem;
    }

    .cta__description {
        font-size: 0.875rem;
    }

    .contact__info {
        align-items: stretch;
    }

    .contact__info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .contact__info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin: 0 auto;
    }

    .contact__info-icon i {
        font-size: 1rem;
    }

    .contact__info-content h3 {
        font-size: 0.875rem;
    }

    .contact__info-content a,
    .contact__info-content p {
        font-size: 0.8125rem;
        word-break: break-word;
    }

    .contact__social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .contact__form-wrapper {
        padding: 1rem;
        margin-bottom: 4rem;
    }

    .contact__form-title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .form__input {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .form__label {
        font-size: 0.875rem;
    }

    .form__textarea {
        min-height: 80px;
    }

    .form__note {
        font-size: 0.7rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer__logo img {
        height: 45px;
    }

    .footer__description {
        font-size: 0.8125rem;
    }

    .footer__title {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .footer__list a,
    .footer__list span {
        font-size: 0.8125rem;
    }

    .footer__social a {
        width: 34px;
        height: 34px;
    }

    .footer__bottom {
        padding-top: 1rem;
    }

    .footer__bottom p {
        font-size: 0.7rem;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }

    /* Lawyer cards 320px */
    .hero__lawyers {
        gap: 1rem;
    }

    .hero__lawyers--fullwidth {
        gap: 0;
    }

    .lawyer-card__content {
        padding: 1rem;
    }

    .lawyer-card--large .lawyer-card__content {
        padding: 1.5rem;
    }

    .hero__lawyers--fullwidth .lawyer-card--large .lawyer-card__image {
        min-height: 180px;
    }

    .lawyer-card__name {
        font-size: 1rem;
    }

    .lawyer-card--large .lawyer-card__name {
        font-size: 1.25rem;
    }

    .lawyer-card__role {
        font-size: 0.75rem;
    }

    .lawyer-card__placeholder i {
        font-size: 3rem;
    }

    .lawyer-card--large .lawyer-card__placeholder i {
        font-size: 4rem;
    }

    .lawyer-card--large .lawyer-card__cta {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    /* Team 320px */
    .team__card-name {
        font-size: 1rem;
    }

    .team__card-placeholder i {
        font-size: 2.5rem;
    }

    /* Profile 320px */
    .profile-hero__name {
        font-size: 1.5rem;
    }

    .profile-hero__role {
        font-size: 1rem;
    }

    .profile-hero__contact {
        flex-direction: column;
        gap: 0.75rem;
    }

    .profile-hero__placeholder i {
        font-size: 4rem;
    }

    .profile-info__card {
        padding: 1.25rem;
    }

    .profile-info__title {
        font-size: 1rem;
    }

    .profile-info__contact-link {
        padding: 0.75rem;
    }

    .profile-info__contact-link i {
        font-size: 1.25rem;
    }
}

/* Fix para evitar overflow horizontal en móviles */
@media screen and (max-width: 480px) {
    html, body {
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
    }
}
