/* ==========================================================================
   AuGo! - Design System & Styles
   Scalable CSS for multi-page consistency - Figma Faithful Version
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
    /* Brand Colors */
    --brand-primary: #20DED8;
    --brand-primary-button: #34CCC6;
    --brand-primary-hover: #1bc9c3;
    --brand-primary-soft: #8FFFF9;
    --brand-secondary: #915637;
    --brand-secondary-hover: #7f4b31; 

    /* Surfaces */
    --bg: #FFFFFF;
    --surface-1: #f5f5f5;
    --surface-2: #f8f8f8;
    --surface-3: #fafafa;
    --surface-nav: #f5f5f5;

    /* Text Colors */
    --text-900: #1f2124;
    --text-800: #222222;
    --text-700: #474747;
    --text-500: #969E9D;
    --text-111: #111111;

    /* Borders */
    --border-200: #ededed;
    --border-100: #e0e0e0;

    /* States */
    --state-error: #FF3B3B;
    --state-warning: #FFCC00;
    --state-info: #0063F7;
    --state-success: #06C270;

    /* Step Card Colors */
    --step-teal: rgba(50, 166, 160, 0.2);
    --step-brown: rgba(145, 86, 55, 0.2);
    --step-dark: rgba(60, 48, 43, 0.2);

    /* Badge Colors */
    --badge-blue-bg: #eaf1ff;
    --badge-blue-text: #275fc2;
    --badge-teal-bg: #e0f7f6;
    --badge-teal-text: #20DED8;

    /* Typography */
    --font-headings: "Libre Caslon Text", serif;
    --font-body: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-mulish: "Mulish", sans-serif;

    /* Type Scale */
    --fs-display-1: 48px;
    --fs-display-2: 40px;
    --fs-h1: 44px;
    --fs-h2: 36px;
    --fs-h3: 28px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --fs-h6: 16px;
    --fs-lead: 18px;
    --fs-body: 16px;
    --fs-body-sm: 14px;
    --fs-caption: 12px;

    /* Line Height */
    --lh-headings: 1.3;
    --lh-body: 1.7;

    /* Border Radius */
    --r-xs: 8px;
    --r-sm: 12px;
    --r-md: 15px;
    --r-lg: 20px;
    --r-xl: 30px;

    /* Shadows */
    --shadow-sm: 0 6px 18px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 28px rgba(0,0,0,0.10);
    --shadow-card: 0px 2px 14.8px 3px rgba(0,0,0,0.03), 0px 4px 35.3px 23px rgba(0,0,0,0.03);
    --shadow-testimonial: 0px 3px 10.8px 4px rgba(0,0,0,0.05);
    --shadow-focus: 0 0 0 3px rgba(32,222,216,0.35);

    /* Spacing Scale */
    --sp-0: 0px;
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-7: 32px;
    --sp-8: 40px;
    --sp-9: 48px;
    --sp-10: 64px;

    /* Layout */
    --container-max: 1150px;
    --gutter: 8px;

    /* Motion */
    --dur-fast: 120ms;
    --dur-base: 180ms;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ==========================================================================
  2. Reset & Base Styles
  ========================================================================== */

*,
*::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: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--text-900);
    background-color: var(--bg);
}

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

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

ul, ol {
    list-style: none;
}

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

/* ==========================================================================
   3. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: var(--lh-headings);
    color: var(--text-900);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

p {
    color: var(--text-700);
}

.section-title {
    font-size: var(--fs-h2);
    text-align: center;
    margin-bottom: var(--sp-6);
    color: var(--text-900);
}

/* ==========================================================================
   4. Layout Components
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */

.btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--r-sm);
    padding: 12px 20px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: transform var(--dur-fast) var(--ease),
                background var(--dur-base) var(--ease),
                box-shadow var(--dur-base) var(--ease);
}

.btn:active {
    transform: translateY(1px);
}

.btn:focus {
    outline: none;
    box-shadow: var(--shadow-focus);
}

.btn-primary {
    background: var(--brand-primary-button);
    color: #fff;
}

.btn-primary:hover {
    background: var(--brand-primary-hover);
}

.btn-dark {
    background: var(--text-900);
    color: #fff;
}

.btn-dark:hover {
    background: #3a3d35;
}

/* ==========================================================================
   6. Header & Navigation
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg);
    border: none;
}

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

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

.logo-img {
    height: 30px;
    width: auto;
}

.logo-text {
    font-family: var(--font-headings);
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-primary);
}

.logo-text-light {
    color: #fff;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    background: var(--surface-nav);
    padding: 10px 24px;
    border-radius: 30px;
    list-style: none;
}

.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: var(--sp-2);
    min-width: 180px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--dur-base) var(--ease);
    z-index: 1000;
    margin-top: var(--sp-2);
}

.dropdown-link {
    display: block;
    padding: var(--sp-2) var(--sp-3);
    color: var(--text-700);
    text-decoration: none;
    border-radius: var(--r-sm);
    transition: all var(--dur-fast) var(--ease);
    font-size: var(--fs-body-sm);
}

.dropdown-link:hover {
    background: var(--bg-secondary);
    color: var(--brand-primary);
}

.nav-link {
    font-size: var(--fs-body-sm);
    font-weight: 500;
    color: var(--text-700);
    transition: color var(--dur-base) var(--ease);
}

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

.nav-cta {
    padding: 10px 20px;
    height: 40px;
    font-size: 13px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-900);
    border-radius: 2px;
    transition: all var(--dur-base) var(--ease);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   7. Hero Section
   ========================================================================== */

.hero {
    padding-top: 90px;
    padding-bottom: var(--sp-10);
    min-height: 700px;
}

.hero-content {
    position: relative;
    background-image: url('assets/images/hero-img.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    border-radius: var(--r-xl);
    min-height: 632px;
    padding: 40px 80px;
    display: flex;
    align-items: center;
}

.seja-cuidador .hero-content {
    background-image: url('assets/images/heropasseadores.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 600px;
    padding: var(--sp-10);
}

/* Service Hero Backgrounds */
.adestramento .hero-content {
    background-image: url('assets/images/heroadestramento.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 632px;
    padding: 40px 80px;
    display: flex;
    align-items: center;
}

.hospedagem .hero-content {
    background-image: url('assets/images/herohotel.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 632px;
    padding: 40px 80px;
    display: flex;
    align-items: center;
}

.passeio .hero-content {
    background-image: url('assets/images/heropasseador.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 632px;
    padding: 40px 80px;
    display: flex;
    align-items: center;
}

.pet-sitter .hero-content {
    background-image: url('assets/images/herositting.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 632px;
    padding: 40px 80px;
    display: flex;
    align-items: center;
}

/* Mobile Hero Image */
.mobile-hero-image {
    display: none;
    padding: var(--sp-6) 0;
}

.mobile-hero-image-container {
    max-width: 800px;
    margin: 0 auto;
}

.mobile-hero-img {
    width: 100%;
    height: 100%;
    box-shadow: none;
}

.hero-text {
    max-width: 520px;
}

.hero-title {
    font-size: 38px;
    margin-bottom: var(--sp-3);
    color: var(--text-900);
    line-height: 1.25;
}

.hero-subtitle {
    font-size: var(--fs-body);
    color: var(--text-700);
    margin-bottom: var(--sp-6);
}

/* Service Card */
.service-card {
   
  text-align: center;
  padding: 0;
    transition: all var(--dur-base) var(--ease);
    box-shadow: none;
    border:none!important;
    overflow: visible;
    max-width: 950px;
    width: 850px;
    min-height: 300px;
    height: auto;
    margin: 0 0;
    background: transparent;
}

.iframe-container  {
  position: relative;
  width: 850px;
  min-height: 300px;
  height: 250px;
  overflow: visible;
  background: transparent;
}

.booking-iframe {
    width: 850px;
    min-height: 300px;
    border-radius: 30px;
    height: 550px;
    border: none;
    outline: none;
    overflow: visible;
    display: block;
}


/* Cadastro Iframe */
.iframe-container-cadastro {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    height: 800px;
}

.cadastro-iframe {
    width: 100%;
    height: 800px;
    border: none;
    outline: none;
    overflow: visible;
    display: block;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all var(--dur-base) var(--ease);
    z-index: 1000;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

/* Legal Pages */
.legal-page {
    padding: var(--sp-16) 0 var(--sp-10);
    background: var(--bg);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: var(--fs-h1);
    color: var(--text-900);
    margin-bottom: var(--sp-2);
}

.legal-date {
    color: var(--text-500);
    font-size: var(--fs-body-sm);
    margin-bottom: var(--sp-8);
}

.legal-section {
    margin-bottom: var(--sp-6);
}

.legal-section h2 {
    font-size: var(--fs-h3);
    color: var(--text-900);
    margin-bottom: var(--sp-3);
}

.legal-section p {
    color: var(--text-700);
    line-height: 1.7;
    margin-bottom: var(--sp-3);
}

.legal-section ul {
    list-style: disc;
    margin-left: var(--sp-6);
    color: var(--text-700);
}

.legal-section li {
    margin-bottom: var(--sp-2);
    line-height: 1.7;
}

.service-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-200);
}

.service-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    font-size: var(--fs-body-sm);
    font-weight: 500;
    color: var(--text-500);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease);
}

.service-tab:hover {
    color: var(--text-700);
}

.service-tab.active {
    color: var(--brand-primary);
    border-bottom-color: var(--brand-primary);
    background: rgba(32, 222, 216, 0.05);
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-form {
    padding: 16px 20px;
}

.form-row {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-body-sm);
    font-weight: 500;
    color: var(--text-900);
}

.form-hint {
    font-size: var(--fs-caption);
    color: var(--text-500);
}

.form-submit {
    flex-shrink: 0;
    height: 40px;
    padding: 10px 16px;
    font-size: 13px;
}

/* ==========================================================================
   8. How It Works Section
   ========================================================================== */

.how-it-works {
    padding: var(--sp-7) 0 var(--sp-10);
    background: var(--bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding-top: var(--sp-6);
}

.step-card {
    text-align: center;
    padding: 20px;
    padding-bottom: 20px;
    border-radius: var(--r-xl);
    min-height: 294px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-card-teal {
    background: var(--step-teal);
}

.step-card-brown {
    background: var(--step-brown);
}

.step-card-dark {
    background: var(--step-dark);
}

.step-image {
    width: 106px;
    height: 106px;
    margin-bottom: var(--sp-4);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-number {
    font-family: var(--font-headings);
    font-size: var(--fs-h5);
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: var(--sp-1);
}

.step-description {
    font-size: var(--fs-body);
    color: var(--text-900);
    max-width: 267px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ==========================================================================
   9. AuGo Protege Section
   ========================================================================== */

.augo-protege {
    padding: var(--sp-9) 0;
    background: var(--bg);
}

.protege-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-200);
    overflow: hidden;
    max-height: 640px;
}

.protege-image {
    max-height: 640px;
    overflow: hidden;
}

.protege-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-lg);
}

.protege-text {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.protege-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--sp-7);
}

.protege-title {
    font-size: var(--fs-h2);
    margin-bottom: 0;
    color: var(--text-111);
}

.protege-subtitle {
    font-size: var(--fs-lead);
    font-weight: 700;
    font-family: var(--font-mulish);
    color: var(--text-700);
    margin-top: 4px;
}

.protege-seal {
    width: 70px;
    height: auto;
}

.protege-features {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}

.protege-feature h4 {
    font-family: var(--font-mulish);
    font-size: var(--fs-lead);
    font-weight: 700;
    color: var(--text-800);
    margin-bottom: 3px;
}

.protege-feature p {
    font-size: var(--fs-body);
    color: var(--text-700);
    line-height: 1.5;
}

/* ==========================================================================
   10. Testimonials Section
   ========================================================================== */

.testimonials {
    padding: var(--sp-10) 0;
    background: var(--bg);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 22px;
}

.testimonial-card {
    background: var(--bg);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-testimonial);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: calc(25% - 16.5px); /* 4 cards per row minus gap */
}

.testimonial-image {
    height: 150px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-3);
}

.stars {
    display: flex;
    gap: 2px;
}

.badge {
    font-size: var(--fs-body-sm);
    font-weight: 700;
    font-family: 'Helvetica', sans-serif;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: capitalize;
}

.badge-primary {
    background: var(--badge-teal-bg);
    color: var(--brand-primary);
}

.badge-blue {
    background: var(--badge-blue-bg);
    color: var(--badge-blue-text);
}

.testimonial-text {
    font-size: var(--fs-body-sm);
    color: var(--text-700);
    line-height: 1.6;
    flex: 1;
    padding-top: var(--sp-3);
    padding-bottom: var(--sp-1);
}

.testimonial-author {
    font-size: var(--fs-body-sm);
    font-weight: 600;
    font-family: var(--font-mulish);
    color: var(--text-700);
    padding-top: var(--sp-7);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-6);
    margin-top: var(--sp-7);
}

.slider-dots {
    display: flex;
    gap: var(--sp-2);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-200);
    border: none;
    cursor: pointer;
    transition: background var(--dur-base) var(--ease);
}

.dot.active {
    background: var(--brand-primary);
}

.slider-arrows {
    display: flex;
    gap: var(--sp-2);
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-700);
    cursor: pointer;
    transition: all var(--dur-base) var(--ease);
}

.slider-arrow:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

/* ==========================================================================
   11. Stats Section
   ========================================================================== */

.stats {
    padding: 40px 0;
    background: var(--bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 37px;
}

.stat-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 24px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border: 2px solid #ededed;
}

.stat-icon-container {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
}

.stat-icon-img {
    width: 100%;
    height: 100%;
}

.stat-avatars-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: -12px;
}

.stat-stars-container {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.stat-star {
    width: 21px;
    height: 22px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-family: 'Helvetica', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #222222;
}

.stat-label {
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #474747;
}

.stats-action {
    display: flex;
    justify-content: center;
}

.stats-btn {
    width: 285px;
    height: 52px;
    background: #34ccc6;
    border-radius: 6px;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

/* ==========================================================================
   12. CTA Section
   ========================================================================== */

.cta-section {
    padding: 40px 0;
    background: var(--bg);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(50, 166, 160, 0.2);
    border-radius: 20px;
    overflow: hidden;
    min-height: 428px;
}

.cta-image {
    height: 100%;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.cta-content {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-title {
    font-family: 'Libre Caslon Text', serif;
    font-size: 36px;
    font-weight: 700;
    color: #494949;
    margin-bottom: 18px;
}

.cta-text {
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #494949;
    margin-bottom: 24px;
    line-height: 1.5;
}

.cta-btn {
    background: #915637;
    border-radius: 6px;
    padding: 14px 65px;
    height: 52px;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-200);
    color: var(--text-700);
}

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

.btn-secondary {
    background: var(--brand-secondary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--brand-secondary-hover);
}

/* ==========================================================================
   13. FAQ Section
   ========================================================================== */

.faq {
    padding: var(--sp-10) 0;
    background: var(--bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--sp-5) 0;
    font-size: var(--fs-body);
    font-weight: 500;
    color: var(--text-900);
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: var(--fs-h4);
    color: var(--brand-primary);
    font-weight: 300;
    transition: transform var(--dur-base) var(--ease);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-bottom: var(--sp-5);
}

.faq-answer p {
    font-size: var(--fs-body-sm);
    color: var(--text-700);
    line-height: 1.7;
}

/* ==========================================================================
   14. Footer
   ========================================================================== */

.footer {
    background: #32a6a0;
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

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

.footer-logo {
    width: 89px;
    height: 30px;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 200px;
    line-height: 1.5;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: opacity var(--dur-base) var(--ease);
    line-height: 1.4;
}

.footer-link:hover {
    color: #fff;
    opacity: 1;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--dur-base) var(--ease);
}

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

.social-link img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

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

.legal-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--dur-base) var(--ease);
}

.legal-link:hover {
    color: #fff;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   15. Mobile Hero Image
   ========================================================================== */

.hero-mobile-image {
    display: none;
    margin: 24px 0;
    text-align: center;
}

.hero-mobile-img {
    max-width: 95%;
    height: auto;
    border-radius: 12px;
    box-shadow: none;
}

/* ==========================================================================
   16. Página de Bairros
   ========================================================================== */

.hero-bairros {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #32a6a0 0%, #2d9590 100%);
    color: #fff;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-center .hero-title {
    font-family: 'Libre Caslon Text', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
}

.hero-content-center .hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-content-center .hero-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-image {
    margin: 40px 0;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.intro-section {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-700);
}

.bairros-list {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.bairros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.bairro-region {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.region-title {
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.bairro-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bairro-link {
    font-size: 15px;
    color: var(--text-700);
    text-decoration: none;
    transition: all var(--dur-base) var(--ease);
    padding: 8px 12px;
    border-radius: 6px;
    display: block;
}

.bairro-link:hover {
    background: var(--bg-secondary);
    color: var(--primary);
    transform: translateX(4px);
}

.highlight-section {
    padding: 80px 0;
    background: #fff;
}

.highlight-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 48px;
    border-radius: 16px;
    border: 2px solid var(--primary);
}

.highlight-title {
    font-family: 'Libre Caslon Text', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 24px;
}

.highlight-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-700);
    margin-bottom: 16px;
}

.highlight-card .btn {
    margin-top: 24px;
}

.cta-bairros {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.cta-content-center {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-center .cta-title {
    font-family: 'Libre Caslon Text', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 16px;
}

.cta-content-center .cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-700);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   16. Mobile Menu
   ========================================================================== */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--dur-base) var(--ease);
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg);
    padding: var(--sp-9) var(--sp-6);
    transition: right var(--dur-base) var(--ease);
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.mobile-nav-link {
    font-size: var(--fs-lead);
    font-weight: 500;
    color: var(--text-900);
}

.mobile-cta {
    margin-top: var(--sp-4);
    width: 100%;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-6);
}

.mobile-menu-header .mobile-header-cta {
    padding: 10px 14px;
    border-radius: 14px;
    background: #34CCC6;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-close svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-900);
}

.mobile-login-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: var(--text-900);
    text-decoration: none;
    font-weight: 600;
}

.mobile-accordion {
    width: 100%;
}

.mobile-accordion summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #f5f5f5;
    padding: 16px 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    cursor: pointer;
}

.mobile-accordion summary::-webkit-details-marker {
    display: none;
}

.mobile-accordion summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(45deg);
    margin-left: 12px;
    flex-shrink: 0;
}

.mobile-accordion[open] summary::after {
    transform: rotate(-135deg);
}

.mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    padding-left: 8px;
}

.mobile-sub-link {
    display: block;
    background: #f5f5f5;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

/* ==========================================================================
   16. Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --fs-display-1: 40px;
        --fs-h1: 36px;
        --fs-h2: 30px;
        --fs-h3: 24px;
    }

    .hero-content {
        background-position: right center;
        padding: 40px;
    }

    /* Service Hero Responsive */
    .adestramento .hero-content,
    .hospedagem .hero-content,
    .passeio .hero-content,
    .pet-sitter .hero-content {
        background-position: right center;
        padding: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--sp-4);
    }

    .protege-card {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .protege-image {
        height: 400px;
        max-height: none;
    }

    .testimonials-slider {
        overflow: hidden;
    }

    .testimonials-track {
        gap: var(--sp-4);
    }

    .testimonial-card {
        width: calc(50% - 8px); /* 2 cards per row minus gap */
    }

    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-image {
        height: 300px;
    }

    /* Cuidador Page Tablet Styles */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-5);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--sp-3);
        max-width: 400px;
    }

    .cta-final-buttons {
        flex-direction: column;
        gap: var(--sp-3);
        align-items: center;
    }

    .cta-final-btn {
        width: 100%;
        max-width: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --fs-display-1: 32px;
        --fs-h1: 28px;
        --fs-h2: 24px;
        --fs-h3: 20px;
        --gutter: 16px;
    }

    .nav-center,
    .nav-cta {
        display: none;  
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        background: rgba(0, 0, 0, 0.15);
    }

    .mobile-menu {
        width: 100%;
        right: 0;
        left: 0;
        transform: translateX(100%);
        transition: transform var(--dur-base) var(--ease);
        padding: 26px 18px 28px;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-nav-list {
        gap: 14px;
        margin-top: 6px;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: #f5f5f5;
        padding: 16px 16px;
        border-radius: 16px;
        font-size: 16px;
        font-weight: 500;
        color: #111;
        text-decoration: none;
    }

    .mobile-cta {
        border-radius: 16px;
        background: #34CCC6;
        color: #fff;
        font-weight: 700;
        padding: 16px 18px;
    }

    .service-card {
        width: 100%;
        min-height: 400px;
        height: auto;
        max-width: 100%;
        padding: 0;
        background: transparent;
        overflow: visible;
    }

    .iframe-container {
    width: 100%;
    min-height: 350px;
    height: 500px;
    overflow: visible;
    background: transparent;
  }

    .booking-iframe {
        width: 100%;
        min-height: 400px;
        height: 650px;
        overflow: visible;
    }

    .iframe-container-cadastro {
        height: 1000px;
    }

    .cadastro-iframe {
        height: 1000px;
    }

    .hero {
        padding-top: 80px;
        padding-bottom: 0;
        min-height: auto;
    }

    .seja-cuidador .hero-content {
        background-image: none;
        min-height: auto;
        padding: var(--sp-6);
    }

    .mobile-hero-image {
        display: block;
    }

    .hero-content {
        background-image: none;
        min-height: auto;
        padding: 20px var(--sp-1);
        background-color: white;
    }

    /* Service Hero Mobile */
    .adestramento .hero-content,
    .hospedagem .hero-content,
    .passeio .hero-content,
    .pet-sitter .hero-content {
        background-image: none;
        min-height: auto;
        padding: var(--sp-2);
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--sp-3);
    }

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

    .service-tabs {
        flex-wrap: wrap;
    }

    .service-tab {
        flex: 1 1 50%;
        padding: var(--sp-3);
    }

    .form-row {
        flex-direction: column;
        gap: var(--sp-4);
    }

    .form-group {
        width: 100%;
    }

    .form-submit {
        width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-5);
    }

    .testimonials-slider {
        overflow: hidden;
    }

    .testimonials-track {
        gap: var(--sp-4);
    }

    .testimonial-card {
        width: 100%; /* 1 card per row on mobile */
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-6);
    }

    .stats-card {
        padding: var(--sp-7);
    }

    .cta-content {
        padding: var(--sp-7);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

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

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

    .footer-column {
        align-items: center;
    }

    .footer-nav {
        align-items: center;
        gap: var(--sp-3);
    }

    .footer-social {
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--sp-4);
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--sp-2);
    }

    /* Mobile Hero Image Responsive */
    .hero-mobile-image {
        display: block;
    }

    /* Bairros Page Responsive */
    .hero-content-center .hero-title {
        font-size: 32px;
    }

    .hero-content-center .hero-subtitle {
        font-size: 18px;
    }

    .hero-image {
        margin: 30px 0;
    }

    .hero-img {
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

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

    .highlight-card {
        padding: 32px 24px;
    }

    .highlight-title {
        font-size: 24px;
    }

    .cta-content-center .cta-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Cuidador Page Responsive */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-5);
    }

    .benefit-card {
        padding: var(--sp-6);
    }

    .cta-final-buttons {
        flex-direction: column;
        gap: var(--sp-3);
    }

    .cta-final-btn {
        width: 100%;
        max-width: 320px;
    }

    .form-placeholder {
        padding: var(--sp-8);
        min-height: 300px;
    }

    /* Form Responsive */
    .stepper-steps {
        gap: var(--sp-2);
    }

    .step-label {
        font-size: var(--fs-caption);
    }

    .form-step {
        padding: var(--sp-6);
    }

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

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

    .availability-day {
        grid-template-columns: 1fr;
        gap: var(--sp-2);
    }

    .period-options {
        flex-wrap: wrap;
    }

    .dog-types-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-back,
    .form-next,
    .form-submit {
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --fs-display-1: 28px;
        --fs-h2: 22px;
    }

    .hero-content {
        background-image: none;
        background-color: #FFFFFF;
    }

    .service-tab span {
        font-size: var(--fs-caption);
    }

    .protege-header {
        flex-direction: column;
        gap: var(--sp-4);
    }

    .protege-seal {
        width: 60px;
    }
}

/* ==========================================================================
   18. Cuidador Page Styles
   ========================================================================== */

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-top: var(--sp-8);
}

.hero-btn {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 15px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    text-decoration: none;
    transition: all var(--dur-base) var(--ease);
}

/* Garantir border-radius padronizado nos CTAs das páginas "Entre para o time" */
.hero-btn.btn-primary {
    border-radius: 15px;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid var(--border-200);
    color: var(--text-700);
}

.hero-btn-secondary:hover {
    background: var(--surface-1);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

/* Hero Image Section */
.hero-image-section {
    padding: var(--sp-10) 0;
    background: var(--bg);
}

.hero-image-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-card);
}

/* Benefits Section */
.benefits {
    padding: var(--sp-10) 0;
    background: var(--surface-1);
}

.section-subtitle {
    text-align: center;
    font-size: var(--fs-lead);
    color: var(--text-700);
    max-width: 600px;
    margin: 0 auto var(--sp-10);
    line-height: var(--lh-body);
}

.text-primary {
    color: var(--brand-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--sp-6);
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--bg);
    padding: var(--sp-8);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-200);
    transition: all var(--dur-base) var(--ease);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.benefit-icon-container {
    width: 64px;
    height: 64px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-5);
    transition: transform var(--dur-base) var(--ease);
}

.benefit-card:hover .benefit-icon-container {
    transform: scale(1.1);
}

.bg-primary-soft {
    background: rgba(32, 222, 216, 0.1);
}

.bg-secondary-soft {
    background: rgba(145, 86, 55, 0.1);
}

.bg-accent {
    background: var(--surface-2);
}

.benefit-icon {
    width: 28px;
    height: 28px;
}

.benefit-title {
    font-family: var(--font-headings);
    font-size: var(--fs-h4);
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: var(--sp-3);
}

.benefit-description {
    font-size: var(--fs-body);
    color: var(--text-700);
    line-height: var(--lh-body);
    font-weight: 500;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: var(--sp-10);
}

.faq-badge {
    display: inline-block;
    background: rgba(32, 222, 216, 0.1);
    color: var(--brand-primary);
    font-size: var(--fs-body-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--r-sm);
    margin-bottom: var(--sp-3);
}

/* Final CTA Section */
.cta-final {
    padding: var(--sp-10) 0;
    background: rgba(32, 222, 216, 0.05);
}

.cta-final-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-title {
    font-family: var(--font-headings);
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: var(--sp-4);
}

.cta-final-subtitle {
    font-size: var(--fs-lead);
    color: var(--text-700);
    margin-bottom: var(--sp-8);
    line-height: var(--lh-body);
}

.cta-final-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    align-items: center;
}

.cta-final-btn {
    min-width: 280px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--r-xl);
    text-decoration: none;
    transition: all var(--dur-base) var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
}

.cta-final-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-final-btn-secondary {
    background: transparent;
    border: 2px solid var(--border-200);
    color: var(--text-700);
}

.cta-final-btn-secondary:hover {
    background: var(--bg);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

/* Registration Form Section */
.registration-form {
    padding: var(--sp-10) 0;
    background: var(--surface-1);
}

.registration-header {
    text-align: center;
    margin-bottom: var(--sp-10);
}

.registration-form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Form Stepper */
.form-stepper {
    margin-bottom: var(--sp-8);
}

.form-stepper .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-200);
    color: var(--text-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--fs-body-sm);
    margin-bottom: var(--sp-2);
    transition: all var(--dur-base) var(--ease);
}

.form-stepper .step.active .step-number {
    background: var(--brand-primary);
    color: #fff;
}

.form-stepper .step.completed .step-number {
    background: var(--brand-primary);
    color: #fff;
}

.stepper-track {
    position: relative;
    margin-bottom: var(--sp-6);
}

.stepper-progress {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-200);
    z-index: 1;
}

.stepper-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.form-stepper .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step-label {
    font-size: var(--fs-body-sm);
    color: var(--text-500);
    text-align: center;
    transition: color var(--dur-base) var(--ease);
}

.form-stepper .step.active .step-label,
.form-stepper .step.completed .step-label {
    color: var(--text-900);
    font-weight: 600;
}

.step.completed .step-label {
    color: var(--text-900);
    font-weight: 600;
}

/* Form Container */
.form-container {
    background: var(--bg);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-200);
    overflow: hidden;
}

.onboarding-form {
    position: relative;
}

.form-step {
    display: none;
    padding: var(--sp-8);
    animation: fadeIn var(--dur-base) var(--ease);
}

.form-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: var(--sp-8);
}

.step-title {
    font-family: var(--font-headings);
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: var(--sp-2);
}

.step-description {
    font-size: var(--fs-body);
    color: var(--text-700);
}

/* Form Fields */
.form-fields {
    margin-bottom: var(--sp-8);
}

.form-group {
    margin-bottom: var(--sp-6);
}

.form-label {
    display: block;
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--text-900);
    margin-bottom: var(--sp-2);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-200);
    border-radius: var(--r-sm);
    font-size: var(--fs-body);
    color: var(--text-900);
    background: var(--bg);
    transition: all var(--dur-base) var(--ease);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-focus);
}

.form-error {
    display: block;
    font-size: var(--fs-body-sm);
    color: var(--state-error);
    margin-top: var(--sp-1);
    min-height: 20px;
}

/* File Upload */
.file-upload-area {
    position: relative;
    border: 2px dashed var(--border-200);
    border-radius: var(--r-sm);
    padding: var(--sp-6);
    text-align: center;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease);
}

.file-upload-area:hover {
    border-color: var(--brand-primary);
    background: rgba(32, 222, 216, 0.02);
}

.file-upload-area.drag-active {
    border-color: var(--brand-primary);
    background: rgba(32, 222, 216, 0.05);
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-content svg {
    color: var(--text-500);
    margin-bottom: var(--sp-3);
}

.file-upload-title {
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--text-900);
    margin-bottom: var(--sp-1);
}

.file-upload-subtitle {
    font-size: var(--fs-body-sm);
    color: var(--text-500);
}

.file-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-3);
    background: var(--surface-1);
    border-radius: var(--r-sm);
}

.file-info {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.file-info svg {
    color: var(--state-success);
}

.file-name {
    font-size: var(--fs-body);
    color: var(--text-900);
}

.file-remove {
    background: none;
    border: none;
    color: var(--state-error);
    font-size: var(--fs-body-sm);
    cursor: pointer;
    padding: var(--sp-2);
    border-radius: var(--r-xs);
    transition: background var(--dur-base) var(--ease);
}

.file-remove:hover {
    background: rgba(255, 59, 59, 0.1);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-4);
}

.service-option {
    cursor: pointer;
}

.service-option input[type="checkbox"] {
    display: none;
}

.service-card {
    padding: var(--sp-1);
    border: none;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    background-color: ;
    transition: all var(--dur-base) var(--ease);
}

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

.service-option input[type="checkbox"]:checked + .service-card {
    border-color: var(--brand-primary);
    background: rgba(32, 222, 216, 0.05);
}

.service-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--sp-3);
    color: var(--brand-primary);
}

.service-info h4 {
    font-family: var(--font-headings);
    font-size: var(--fs-h5);
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: var(--sp-1);
}

.service-info p {
    font-size: var(--fs-body-sm);
    color: var(--text-500);
}

/* Regions Grid */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--sp-3);
}

.region-option {
    cursor: pointer;
}

.region-option input[type="checkbox"] {
    display: none;
}

.region-card {
    padding: var(--sp-3);
    border: 2px solid var(--border-200);
    border-radius: var(--r-sm);
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease);
}

.region-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-1px);
}

.region-option input[type="checkbox"]:checked + .region-card {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #fff;
}

/* Availability Grid */
.availability-grid {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.availability-day {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--sp-4);
    align-items: center;
}

.day-label {
    font-weight: 600;
    color: var(--text-900);
}

.period-options {
    display: flex;
    gap: var(--sp-3);
}

.period-option {
    cursor: pointer;
}

.period-option input[type="checkbox"] {
    display: none;
}

.period-option span {
    display: block;
    padding: var(--sp-2) var(--sp-3);
    border: 2px solid var(--border-200);
    border-radius: var(--r-sm);
    font-size: var(--fs-body-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease);
}

.period-option span:hover {
    border-color: var(--brand-primary);
}

.period-option input[type="checkbox"]:checked + span {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #fff;
}

/* Dog Types Grid */
.dog-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-4);
}

.dog-type-option {
    cursor: pointer;
}

.dog-type-option input[type="radio"] {
    display: none;
}

.dog-type-card {
    padding: var(--sp-6);
    border: 2px solid var(--border-200);
    border-radius: var(--r-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease);
}

.dog-type-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.dog-type-option input[type="radio"]:checked + .dog-type-card {
    border-color: var(--brand-primary);
    background: rgba(32, 222, 216, 0.05);
}

.dog-type-icon {
    font-size: 48px;
    margin-bottom: var(--sp-3);
}

.dog-type-card h4 {
    font-family: var(--font-headings);
    font-size: var(--fs-h5);
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: var(--sp-1);
}

.dog-type-card p {
    font-size: var(--fs-body-sm);
    color: var(--text-500);
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: var(--sp-4);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--border-200);
}

.form-next,
.form-submit {
    background: var(--brand-primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--r-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease);
    border: none;
}

.form-next:hover,
.form-submit:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-1px);
}

.form-back {
    background: transparent;
    color: var(--text-700);
    padding: 12px 24px;
    border-radius: var(--r-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease);
    border: 2px solid var(--border-200);
}

.form-back:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

/* Success Content */
.success-content {
    text-align: center;
    padding: var(--sp-10) var(--sp-6);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--sp-6);
    color: var(--state-success);
}

.success-title {
    font-family: var(--font-headings);
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: var(--sp-4);
}

.success-description {
    font-size: var(--fs-body);
    color: var(--text-700);
    margin-bottom: var(--sp-8);
    line-height: var(--lh-body);
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    align-items: center;
}

.success-actions .btn {
    min-width: 200px;
}

/* ==========================================================================
   19. Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mt-8 { margin-top: var(--sp-8); }

.mb-1 { margin-bottom: var(--sp-1); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-7 { margin-bottom: var(--sp-7); }
.mb-8 { margin-bottom: var(--sp-8); }

.hidden { display: none; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* ==========================================================================
   18. Animations
   ========================================================================== */

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

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

.animate-fade-in {
    animation: fadeIn 0.6s var(--ease) forwards;
}

.animate-slide-in {
    animation: slideInRight 0.6s var(--ease) forwards;
}
