/* ============================================
   Sweet Garden — Tattoo & Piercing Coworking
   Brand Colors:
     Purple:  #6B3FA0 (primary)
     Green:   #2D6A4F (accent)
     Gold:    #C9A84C (highlight)
     Cream:   #F5F0E8 (light bg)
     Navy:    #1A1F3D (dark bg)
   ============================================ */

:root {
    --purple: #6B3FA0;
    --purple-light: #8B5FC8;
    --purple-dark: #4A2570;
    --green: #2D6A4F;
    --green-light: #40916C;
    --green-dark: #1B4332;
    --gold: #C9A84C;
    --gold-light: #D4BC6A;
    --cream: #F5F0E8;
    --cream-dark: #EDE5D8;
    --navy: #1A1F3D;
    --navy-light: #252B4D;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    --gray-900: #212529;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--purple-light);
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--gray-900);
    margin-bottom: 12px;
}

.section-title span {
    color: var(--purple);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--green));
    margin: 0 auto 16px;
    border-radius: 2px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

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

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

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

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

.btn--flash {
    background: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
}

.btn--flash:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--plus {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn--plus:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn--whatsapp:hover {
    background: #1EB954;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

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

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

.navbar__logo-img {
    height: 48px;
    width: auto;
}

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

.navbar__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: 8px;
    transition: all var(--transition);
}

.navbar__link:hover {
    color: var(--purple);
    background: rgba(107, 63, 160, 0.06);
}

.navbar__link--cta {
    background: var(--purple);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
}

.navbar__link--cta:hover {
    background: var(--purple-dark) !important;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.hero__bg-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 63, 160, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__bg-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(107, 63, 160, 0.08);
    border-radius: 50%;
}

.hero__content {
    position: relative;
    text-align: center;
    padding: 60px 0;
}

.hero__logo {
    width: 140px;
    margin: 0 auto 16px;
    animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gray-900);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__title span {
    color: var(--green);
    font-style: italic;
    font-weight: 400;
}

.hero__title strong {
    color: var(--purple);
    font-size: 1.15em;
}

.hero__text {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__actions .btn--outline {
    color: var(--purple);
    border-color: var(--purple);
}

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

.hero__location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-600);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero__location svg {
    color: var(--green);
}

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

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

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

.about__card {
    padding: 32px;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.about__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(107, 63, 160, 0.2);
}

.about__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.1), rgba(45, 106, 79, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--purple);
}

.about__card h3 {
    font-size: 1.15rem;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.about__card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== TARIFAS ===== */
.tarifas {
    padding: 100px 0;
    background: var(--cream);
}

.tarifas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.tarifa-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    transition: all var(--transition);
    overflow: hidden;
}

.tarifa-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Flash card */
.tarifa-card--flash {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--cream);
}

.tarifa-card--flash .tarifa-card__badge {
    color: var(--gold);
}

.tarifa-card--flash .tarifa-card__name {
    color: var(--cream);
}

.tarifa-card--flash .tarifa-card__duration {
    color: rgba(245, 240, 232, 0.8);
}

.tarifa-card--flash .tarifa-card__desc {
    color: rgba(245, 240, 232, 0.7);
}

.tarifa-card--flash .tarifa-card__amount {
    color: var(--cream);
}

.tarifa-card--flash .tarifa-card__features li {
    color: rgba(245, 240, 232, 0.8);
    border-bottom-color: rgba(245, 240, 232, 0.1);
}

/* Plus card */
.tarifa-card--plus {
    background: linear-gradient(160deg, var(--gold) 0%, #B8941F 100%);
    color: var(--navy);
}

.tarifa-card--plus .tarifa-card__badge {
    color: var(--navy);
}

.tarifa-card--plus .tarifa-card__features li {
    border-bottom-color: rgba(26, 31, 61, 0.15);
}

.tarifa-card__popular {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--purple);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}

.tarifa-card__badge {
    margin-bottom: 8px;
}

.tarifa-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 4px;
}

.tarifa-card__duration {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.tarifa-card__desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.tarifa-card__price {
    margin-bottom: 28px;
}

.tarifa-card__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.tarifa-card__amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
}

.tarifa-card__features {
    text-align: left;
    margin-bottom: 32px;
}

.tarifa-card__features li {
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tarifa-card__features li::before {
    content: '✓';
    font-weight: 700;
    flex-shrink: 0;
}

.tarifa-card .btn {
    width: 100%;
}

/* ===== INCLUDED ===== */
.included {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 100%);
    color: var(--white);
}

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

.included .section-title span {
    color: var(--gold-light);
}

.included .section-divider {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.included__list {
    max-width: 700px;
    margin: 0 auto;
}

.included__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.included__item:last-child {
    border-bottom: none;
}

.included__check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    margin-top: 2px;
}

.included__item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.included__item p strong {
    color: var(--white);
}

/* ===== AGENDA ===== */
.agenda {
    padding: 100px 0;
    background: var(--white);
}

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

/* ===== BOOKING WIDGET ===== */
.booking-step {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.booking-step--hidden {
    display: none;
}

.booking-step__title {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 8px;
    text-align: center;
}

.booking-step__subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.booking-step__alt {
    text-align: center;
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Booking type buttons */
.booking-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.booking-type-btn {
    padding: 28px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
    font-family: inherit;
}

.booking-type-btn:hover {
    border-color: var(--purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.booking-type-btn h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.booking-type-btn p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.booking-type-btn__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.booking-type-btn__badge--flash {
    background: var(--navy);
    color: var(--cream);
}

.booking-type-btn__badge--plus {
    background: var(--gold);
    color: var(--navy);
}

.booking-type-btn__price {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--purple);
}

.booking-link-btn {
    background: none;
    border: none;
    color: var(--purple);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: inherit;
    font-family: inherit;
}

.booking-link-btn:hover {
    color: var(--purple-dark);
}

/* Back button */
.booking-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--purple);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 4px 0;
    font-family: inherit;
    transition: color var(--transition);
}

.booking-back:hover {
    color: var(--purple-dark);
}

/* Date picker */
.booking-date-picker {
    text-align: center;
    margin-top: 20px;
}

.booking-date-input {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    padding: 14px 24px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-800);
    cursor: pointer;
    transition: border-color var(--transition);
    width: 100%;
    max-width: 300px;
}

.booking-date-input:focus {
    outline: none;
    border-color: var(--purple);
}

/* Time slots */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.slot-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
}

.slot-btn:hover {
    border-color: var(--purple);
    background: rgba(107, 63, 160, 0.04);
}

.slot-btn--selected {
    border-color: var(--purple);
    background: var(--purple);
    color: var(--white);
}

.slot-btn__time {
    font-weight: 600;
    font-size: 0.95rem;
}

.slot-btn__separator {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Loading & error */
.booking-loading {
    text-align: center;
    padding: 32px 0;
    color: var(--gray-600);
}

.booking-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--purple);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.booking-error {
    text-align: center;
    padding: 20px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Booking form */
.booking-summary {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
    border: 1px solid var(--gray-200);
}

.booking-summary__item {
    font-size: 0.9rem;
    color: var(--gray-800);
    padding: 4px 0;
}

.booking-summary__item strong {
    color: var(--gray-900);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.booking-field label span {
    font-weight: 400;
    color: var(--gray-600);
}

.booking-field input,
.booking-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition);
}

.booking-field input:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: var(--purple);
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
    color: var(--gray-600);
    opacity: 0.6;
}

.booking-submit {
    width: 100%;
    margin-top: 8px;
}

.booking-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Confirmation */
.booking-confirmation {
    text-align: center;
    padding: 16px 0;
}

.booking-confirmation__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
}

.booking-confirmation h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.booking-confirmation p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.booking-confirmation__details {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
    border: 1px solid var(--gray-200);
    font-size: 0.9rem;
    color: var(--gray-800);
}

.booking-confirmation__details p {
    margin-bottom: 4px;
    color: var(--gray-800);
}

.booking-confirmation__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile adjustments for booking */
@media (max-width: 480px) {
    .booking-step {
        padding: 24px 16px;
    }

    .booking-type-grid {
        grid-template-columns: 1fr;
    }

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

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

    .booking-confirmation__actions .btn {
        width: 100%;
    }
}

/* ===== CONTACTO ===== */
.contacto {
    padding: 100px 0;
    background: var(--cream);
}

.contacto__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contacto__item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contacto__item:last-child {
    border-bottom: none;
}

.contacto__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(107, 63, 160, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
}

.contacto__item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.contacto__item p,
.contacto__item a {
    font-size: 0.95rem;
    color: var(--gray-800);
}

.contacto__item a:hover {
    color: var(--purple);
}

/* ===== CONSENTIMIENTO ===== */
.consentimiento {
    padding: 100px 0;
    background: var(--white);
}

.consentimiento__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.04), rgba(45, 106, 79, 0.04));
    border: 1px solid var(--gray-200);
}

.consentimiento__icon {
    color: var(--purple);
    margin-bottom: 20px;
}

.consentimiento__content h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.consentimiento__content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.consentimiento__note {
    font-size: 0.85rem !important;
    font-style: italic;
    color: var(--gray-600) !important;
    margin-top: 16px !important;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

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

.footer__logo {
    height: 56px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer__brand p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer__links h4,
.footer__social h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 20px;
}

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

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

.footer__links a:hover {
    color: var(--white);
}

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

.footer__social-links a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

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

.footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 4px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }

    .navbar__menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .navbar__link {
        display: block;
        padding: 12px 16px;
        width: 100%;
    }

    .navbar__link--cta {
        text-align: center;
        margin-top: 8px;
    }

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

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

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

    .hero__logo {
        width: 100px;
    }

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

    .hero__actions .btn {
        width: 100%;
        max-width: 280px;
    }

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

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

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

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

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

    .tarifa-card {
        padding: 36px 24px;
    }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FINANZAS ===== */
.finanzas {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.finanzas--hidden {
    display: none !important;
}

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

.finanzas .section-title span {
    color: var(--gold);
}

.finanzas .section-divider {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* Nav item hidden */
.navbar__item--hidden {
    display: none;
}

.navbar__link--finanzas {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 8px 20px;
    border-radius: 50px;
    margin-left: 8px;
}

.navbar__link--finanzas:hover {
    background: var(--gold-light) !important;
}

.navbar__link--login {
    background: transparent !important;
    color: var(--gray-600) !important;
    border: 1px solid var(--gray-300);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
}

.navbar__link--login:hover {
    border-color: var(--purple);
    color: var(--purple) !important;
    background: rgba(107, 63, 160, 0.05) !important;
}

.navbar__item--login.logged-in .navbar__link--login {
    background: var(--green) !important;
    color: var(--white) !important;
    border-color: var(--green);
}

#googleButtonContainer {
    display: inline-block;
}

.navbar__item--login.logged-in #googleButtonContainer {
    display: none;
}

/* Login */
.finanzas__login {
    display: flex;
    justify-content: center;
}

.finanzas__login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.finanzas__login-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.1), rgba(45, 106, 79, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--purple);
}

.finanzas__login-card h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.finanzas__login-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.finanzas__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.finanzas__form input {
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-align: center;
    transition: border-color var(--transition);
}

.finanzas__form input:focus {
    outline: none;
    border-color: var(--purple);
}

.finanzas__error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 12px;
}

/* Dashboard */
.finanzas__dashboard {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.finanzas__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.finanzas__user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.finanzas__user span {
    font-weight: 500;
    color: var(--gray-800);
}

.finanzas__logout {
    background: none;
    border: none;
    color: var(--purple);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
}

.finanzas__logout:hover {
    color: var(--purple-dark);
}

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

.finanzas__select {
    padding: 10px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--transition);
}

.finanzas__select:focus {
    outline: none;
    border-color: var(--purple);
}

.finanzas__filters .btn {
    padding: 10px 24px;
}

/* Loading */
.finanzas__loading {
    text-align: center;
    padding: 48px 0;
    color: var(--gray-600);
}

.finanzas__error-box {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: #c53030;
    text-align: center;
    margin-bottom: 24px;
}

/* Summary cards */
.finanzas__resumen {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.finanzas__card {
    padding: 28px 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

.finanzas__card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.finanzas__amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}

.finanzas__card--ingresos {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
}

.finanzas__card--egresos {
    background: linear-gradient(135deg, #dc3545, #e57373);
    color: var(--white);
}

.finanzas__card--flujo {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--white);
}

.finanzas__card--flujo.negative {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

/* Tables */
.finanzas__tablas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.finanzas__tabla {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 24px;
    overflow: hidden;
}

.finanzas__tabla h3 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.finanzas__table-wrapper {
    overflow-x: auto;
    max-height: 400px;
    overflow-y: auto;
}

.finanzas__tabla table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.finanzas__tabla th {
    text-align: left;
    padding: 12px 10px;
    background: var(--gray-200);
    font-weight: 600;
    color: var(--gray-800);
    position: sticky;
    top: 0;
}

.finanzas__tabla td {
    padding: 10px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-800);
}

.finanzas__tabla tr:hover td {
    background: rgba(107, 63, 160, 0.04);
}

.finanzas__tabla td:last-child {
    text-align: right;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Responsive */
@media (max-width: 900px) {
    .finanzas__resumen {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .finanzas__dashboard {
        padding: 20px 16px;
    }

    .finanzas__header {
        flex-direction: column;
        align-items: stretch;
    }

    .finanzas__user {
        justify-content: space-between;
    }

    .finanzas__filters {
        justify-content: center;
    }

    .finanzas__amount {
        font-size: 1.5rem;
    }
}
