/* ============================================
   DÉBORA NAIL DESIGN - STYLESHEET
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(180deg, var(--color-pink-light) 0%, var(--color-peach) 46%, #ffffff 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 800;
}

figure {
    margin: 0;
}

blockquote {
    margin: 0;
}


/* ========== CSS VARIABLES ========== */
:root {
    /* Colors */
    --color-primary: #C12F68;
    --color-primary-dark: #8B2245;
    --color-primary-light: #fbe9ec;
    --color-pink-light: #FBE9EC;
    --color-peach: #FFF7F6;
    --color-text: #5F2A3D;
    --color-text-light: rgba(95, 42, 61, 0.72);
    --color-text-muted: rgba(95, 42, 61, 0.75);
    --color-white: #FFFFFF;
    --color-whatsapp: #25D366;
    --color-whatsapp-shadow: rgba(37, 211, 102, 0.35);
    --color-border: rgba(193, 47, 104, 0.13);
    --color-border-light: rgba(193, 47, 104, 0.08);
    --color-card-bg: rgba(255, 255, 255, 0.96);
    --color-card-glass: rgba(255, 255, 255, 0.72);
    --color-footer-bg: #8B2245;
    --color-footer-text: rgba(255, 255, 255, 0.72);

    /* Typography */
    --font-heading: 'Bodoni Moda', 'Times New Roman', serif;
    --font-body: 'Inter', Arial, sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 80px;

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --radius-2xl: 36px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-card: 0 24px 70px rgba(139, 34, 69, 0.08);
    --shadow-btn: 0 12px 28px rgba(37, 211, 102, 0.35);
    --shadow-sm: 0 4px 20px rgba(139, 34, 69, 0.06);

    /* Layout */
    --max-width: 1180px;
    --header-height: 72px;
}


/* ========== TYPOGRAPHY ========== */
.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    line-height: 1;
}

.section-badge--center {
    text-align: center;
    display: block;
}


/* ========== LAYOUT ========== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    width: 100%;
}


/* ========== HEADER ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px clamp(12px, 3vw, 20px);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 250, 250, 0.72);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    max-width: 1080px;
    margin: 20px auto 0;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--color-primary-dark);
    border-radius: 100px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.header__brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header__name {
    font-family: var(--font-heading);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.header__specialty {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-light);
    line-height: 1.1;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary-dark);
    transition: color 0.2s ease;
    line-height: 1;
}

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

.header__cta {
    flex-shrink: 0;
}

/* Mobile menu button */
.header__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.header__menu-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.header__menu-btn.active .header__menu-bar:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: 33vh;
    background: rgba(255, 250, 250, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 16px 48px rgba(139, 34, 69, 0.12);
    overflow-y: auto;
    padding: 24px 16px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary-dark);
    transition: color 0.2s ease;
    padding: 4px 0;
}

.mobile-menu__link:hover {
    color: var(--color-primary);
}

.mobile-menu__cta {
    margin-top: 8px;
}


/* ========== BUTTONS ========== */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-btn);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-whatsapp__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-whatsapp__text {
    font-size: inherit;
}

.btn-whatsapp--sm {
    padding: 11px 18px;
    font-size: 13px;
}

.btn-whatsapp--sm .btn-whatsapp__icon {
    width: 16px;
    height: 16px;
}

.btn-whatsapp--lg {
    padding: 16px 24px;
    font-size: 15px;
    box-shadow: var(--shadow-btn);
}

.btn-whatsapp--lg .btn-whatsapp__icon {
    width: 20px;
    height: 20px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border: 1px solid rgba(193, 47, 104, 0.26);
    border-radius: var(--radius-full);
    background: var(--color-white);
    color: var(--color-primary-dark);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    transition: all 0.2s ease;
    white-space: nowrap;
}

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


/* ========== HERO ========== */
.hero {
    padding: clamp(14px, 2vw, 28px) 0 clamp(44px, 6vw, 72px);
}

.hero__card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    align-items: center;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: 34px;
    box-shadow: var(--shadow-card);
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(14px, 2vw, 18px);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: var(--color-primary-light);
    border: 1px solid rgba(193, 47, 104, 0.16);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: 0.02em;
    line-height: 1;
}

.hero__badge-icon {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: var(--color-primary);
}

.hero__description {
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 500;
    line-height: 1.55;
    color: var(--color-text);
    max-width: 480px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__highlights {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.hero__highlight-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
}

.hero__highlight-title {
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1.1;
}

.hero__highlight-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-light);
    line-height: 1.35;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(193, 47, 104, 0.18);
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__image-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 36px rgba(139, 34, 69, 0.18);
}

.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: inherit;
}

.hero__image-caption {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-md);
    width: min-content;
}

.hero__image-caption-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1;
    white-space: nowrap;
}

.hero__image-caption-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-light);
    white-space: nowrap;
}


/* ========== ABOUT ========== */
.about {
    padding: clamp(44px, 6vw, 72px) 0;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    align-items: center;
}

.about__photo-area {
    position: relative;
}

.about__photo-card {
    position: relative;
    height: 360px;
    background: linear-gradient(145deg, #fad8e0 0%, #fff7f6 50%, #e8b5c8 100%);
    border: 1px solid var(--color-border);
    border-radius: 32px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__photo-card:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 36px rgba(139, 34, 69, 0.18);
}

.about__photo {
    position: absolute;
    inset: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 24px;
    object-fit: cover;
    object-position: center 15%;
    z-index: 0;
}

.about__photo-caption {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 22px;
    width: min-content;
    position: absolute;
    bottom: 4px;
    left: 4px;
}

.about__photo-caption-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1.1;
    white-space: nowrap;
}

.about__photo-caption-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    white-space: nowrap;
}

.about__text-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-primary-dark);
}

.about__description {
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 500;
    line-height: 1.65;
    color: var(--color-text);
}

.about__differentials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.about__diff-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-full);
}

.about__diff-icon {
    width: 15px;
    height: 15px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.about__diff-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1;
}


/* ========== SERVICES ========== */
.services {
    padding: clamp(44px, 6vw, 80px) 0;
}

.services__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(22px, 4vw, 30px);
    text-align: center;
}

.services__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-primary-dark);
    max-width: 700px;
}

.services__subtitle {
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 500;
    line-height: 1.55;
    color: var(--color-text);
    max-width: 600px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 26px;
    min-height: 190px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-card__icon-area {
    height: 68px;
    width: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    flex-shrink: 0;
}

.service-card__icon-area--1 {
    background: linear-gradient(135deg, #f8c9d7 0%, #fff2f4 100%);
}

.service-card__icon-area--2 {
    background: linear-gradient(135deg, #ffe4ea 0%, #f5c2d2 100%);
}

.service-card__icon-area--3 {
    background: linear-gradient(135deg, #fff7f6 0%, #e8b5c8 100%);
}

.service-card__icon-area--4 {
    background: linear-gradient(135deg, #f5c2d2 0%, #fff2f4 100%);
}

.service-card__icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    flex-shrink: 0;
    display: block;
    fill: currentColor;
    overflow: visible;
}

.service-card__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1.15;
}

.service-card__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-muted);
}


/* ========== GALLERY ========== */
.gallery {
    padding: clamp(44px, 6vw, 80px) 0;
    background-color: var(--color-peach);
}

.gallery__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(22px, 4vw, 30px);
    text-align: center;
}

.gallery__title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-primary-dark);
    max-width: 700px;
}

.gallery__subtitle {
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 500;
    line-height: 1.55;
    color: var(--color-text);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(10px, 2vw, 20px);
}

.gallery__item {
    border-radius: 26px;
    overflow: hidden;
    height: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: linear-gradient(to top, rgba(139, 34, 69, 0.25) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery__item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 36px rgba(139, 34, 69, 0.18);
}

.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item::before {
    content: 'Ver imagem';
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 2;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
    background: rgba(139, 34, 69, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    white-space: nowrap;
    pointer-events: none;
}

.gallery__item:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
}


/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: clamp(44px, 6vw, 80px) 0;
}

.testimonials__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(22px, 4vw, 30px);
    text-align: center;
}

.testimonials__title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4.5vw, 46px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-primary-dark);
    max-width: 700px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 26px;
    min-height: 230px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 2px;
}

.testimonial-card__quote {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--color-text);
    flex: 1;
}

.testimonial-card__author {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-primary-dark);
    font-style: normal;
}


/* ========== CONTACT ========== */
.contact {
    padding: clamp(44px, 6vw, 80px) 0;
    background-color: var(--color-primary-light);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-primary-dark);
}

.contact__text {
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 500;
    line-height: 1.55;
    color: var(--color-text);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

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

.contact__detail-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact__detail-icon--whatsapp {
    color: var(--color-whatsapp);
}

.contact__detail span {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text);
}

.contact__map-area {
    display: flex;
    align-items: center;
}

.contact__map-card {
    background: linear-gradient(135deg, #fff 0%, #f8c9d7 100%);
    border: 1px solid var(--color-border-light);
    border-radius: 30px;
    width: 100%;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px;
    position: relative;
}

.contact__map-pin {
    width: 54px;
    height: 54px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact__map-title {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 800;
    text-align: center;
    color: var(--color-primary-dark);
}

.contact__map-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
    color: var(--color-text);
}

.contact__map-frame {
    width: 100%;
    max-width: 500px;
    height: 230px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(193, 47, 104, 0.16);
}


/* ========== FOOTER ========== */
.footer {
    background-color: var(--color-footer-bg);
    padding: 48px 0;
    color: var(--color-white);
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__brand-name {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    line-height: 1;
    color: var(--color-white);
}

.footer__brand-desc {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-footer-text);
}

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

.footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    transition: all 0.2s ease;
}

.footer__social-link--instagram {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer__social-link--instagram:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer__social-link--whatsapp {
    background: var(--color-whatsapp);
}

.footer__social-link--whatsapp:hover {
    background: #1fb855;
}

.footer__social-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer__social-text {
    line-height: 1;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer__address,
.footer__copy {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-footer-text);
}


/* ========== FLOATING WHATSAPP ========== */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    color: var(--color-white);
    box-shadow: 0 6px 20px var(--color-whatsapp-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px var(--color-whatsapp-shadow);
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
}

.floating-whatsapp.pulse {
    animation: pulse-whatsapp 2s infinite;
}

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


/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


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

/* Tablet & Mobile */
@media (max-width: 1024px) {
    .hero__card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero__image-wrapper {
        height: 370px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about__photo-card {
        height: 320px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .header {
        margin: 0;
        padding: 10px 16px;
        border-radius: 0;
        max-width: 100%;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header__nav {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .header__menu-btn {
        display: flex;
    }

    .header__specialty {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 0 0 44px;
    }

    .hero__card {
        border-radius: 0 0 28px 28px;
        padding: 22px;
        gap: 22px;
    }

    .hero__image-wrapper {
        height: 360px;
        border-radius: 24px;
        padding: 16px;
    }

    .hero__image {
        object-position: center 15%;
    }

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

    .hero__actions .btn-whatsapp,
    .hero__actions .btn-outline {
        width: 100%;
    }

    /* About */
    .about__photo-card {
        height: 320px;
        border-radius: 24px;
    }

    .about__photo {
        border-radius: 18px;
        object-position: center 5%;
    }

    .about__photo-caption {
        border-radius: 16px;
        padding: 12px 14px;
        gap: 4px;
    }

    .about__photo-caption-title {
        font-size: 13px;
        text-align: center;
    }

    .about__photo-caption-text {
        font-size: 12px;
        text-align: center;
    }

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

    .service-card {
        min-height: auto;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__item {
        height: 170px;
        border-radius: 20px;
    }

    .gallery__image {
        border-radius: 20px;
    }

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

    .testimonial-card {
        min-height: auto;
    }

    /* Contact */
    .contact__map-card {
        height: auto;
        min-height: 400px;
        padding: 20px 10px 30px;
        border-radius: 24px;
    }

    .contact__map-frame {
        height: 190px;
    }

    /* Footer */
    .footer {
        padding: 34px 20px;
    }

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

    .footer__brand {
        align-items: center;
    }

    .footer__social {
        justify-content: center;
    }

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

    /* Floating WhatsApp */
    .floating-whatsapp {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 32px;
    }

    .hero__highlights {
        flex-direction: column;
    }

    .about__photo-card {
        height: 280px;
    }

    .about__photo {
        object-position: center 5%;
    }

    .hero__image {
        object-position: center 15%;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery__item {
        height: 150px;
        border-radius: 16px;
    }

    .gallery__image {
        border-radius: 16px;
    }

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

    .footer__social-link {
        width: 100%;
        justify-content: center;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .header {
        max-width: 1080px;
    }
}


/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(30, 10, 20, 0.30);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    transform: scale(0.92);
    transition: transform 0.35s ease;
}

.lightbox.active .lightbox__content {
    transform: scale(1);
}

.lightbox__image {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 24px;
}

.lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 210;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-primary-dark);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.lightbox__close:hover {
    background: var(--color-white);
    transform: scale(1.1);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-primary-dark);
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 210;
}

.lightbox__nav:hover {
    background: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.lightbox__nav--prev {
    left: max(12px, calc(50% - 47vw));
}

.lightbox__nav--next {
    right: max(12px, calc(50% - 47vw));
}

.lightbox__counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    background: rgba(139, 34, 69, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* On mobile, hide the hover pseudo-elements */
@media (max-width: 768px) {
    .gallery__item::after,
    .gallery__item::before {
        display: none;
    }

    .gallery__item:hover {
        transform: none;
        box-shadow: none;
    }

    .lightbox__nav--prev {
        left: 8px;
    }

    .lightbox__nav--next {
        right: 8px;
    }
}
