:root {
    --color-primary: #0a192f;
    --color-primary-light: #172a46;
    --color-secondary: #0f2c4d;
    --color-accent: #cfa15f;
    --color-accent-light: #e6c58f;
    --color-accent-hover: #b38848;
    --color-text-dark: #121212;
    --color-text-body: #2d3748;
    --color-text-light: #f7fafc;
    --color-text-gray: #5a6a84;
    --color-white: #fff;
    --color-bg-light: #f8f9fa;
    --color-bg-off-white: #fcfcfc;
    --color-border: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #0a192f 0%, #172a46 100%);
    --gradient-c: linear-gradient(135deg, #cfa15f 0%, #b38848 100%);
    --gradient-overlay: linear-gradient(rgba(10, 25, 47, .85), rgba(10, 25, 47, .75));
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
    --shadow-gold: 0 4px 14px 0 rgba(207, 161, 95, .39);
    --container-width: 1280px;
    --header-height: 80px;
    --border-radius-sm: .375rem;
    --border-radius-md: .5rem;
    --border-radius-lg: 1rem;
    --transition-fast: all .2s ease;
    --transition-base: all .3s cubic-bezier(.4, 0, .2, 1)
}

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

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--color-text-body);
    line-height: 1.8;
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 1rem;
    font-weight: 700
}

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

ul {
    list-style: none
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px
}

.text-center {
    text-align: center
}

.text-accent {
    color: var(--color-accent)
}

.text-white {
    color: var(--color-white)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    text-transform: uppercase;
    font-size: .875rem;
    letter-spacing: 1px;
    transition: var(--transition-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1
}

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

.btn-secondary {
    background: var(--gradient-c);
    color: var(--color-white);
    box-shadow: var(--shadow-gold)
}

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

.header {
    height: var(--header-height);
    background: rgba(255, 255, 255, .95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-base)
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md)
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-base)
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center
}

.nav-link {
    font-weight: 500;
    color: var(--color-primary);
    font-size: 1rem;
    position: relative;
    padding: 5px 0
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    padding: 8px;
    cursor: pointer;
    color: var(--color-primary);
    background: none;
    border: none;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center
}

.header-cta-group {
    display: flex;
    gap: 10px;
    align-items: center
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    background: var(--gradient-overlay), url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    position: relative
}

.hero-inner {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 40px
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2
}

.hero-tagline {
    display: inline-block;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(207, 161, 95, .4);
    border-radius: 50px;
    background: rgba(207, 161, 95, .08)
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    letter-spacing: -.5px
}

.hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    margin-bottom: 36px;
    color: rgba(255, 255, 255, .85);
    max-width: 640px;
    line-height: 1.8
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn-hero {
    display: flex;
    align-items: center;
    padding: 16px 36px;
    font-size: .9rem;
    gap: 10px
}

.hero-trust-bar {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0
}

.hero-trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px
}

.hero-trust-item i {
    font-size: 1.3rem;
    color: var(--color-accent);
    flex-shrink: 0
}

.hero-trust-item strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: var(--color-white);
    display: block;
    line-height: 1.2
}

.hero-trust-item span {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .6);
    display: block
}

.hero-trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
    flex-shrink: 0
}

.page-header {
    background: var(--gradient-overlay), url('/assets/images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 160px 0 80px;
    text-align: center;
    position: relative
}

.page-header h1 {
    color: var(--color-white);
    font-size: 2.5rem
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .8s ease forwards
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

:root {
    --color-primary: #0a192f;
    --color-primary-light: #172a46;
    --color-secondary: #0f2c4d;
    --color-accent: #cfa15f;
    --color-accent-light: #e6c58f;
    --color-accent-hover: #b38848;
    --color-text-dark: #121212;
    --color-text-body: #2d3748;
    --color-text-light: #f7fafc;
    --color-text-gray: #5a6a84;
    --color-white: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-off-white: #fcfcfc;
    --color-border: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #0a192f 0%, #172a46 100%);
    --gradient-c: linear-gradient(135deg, #cfa15f 0%, #b38848 100%);
    --gradient-overlay: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.75));
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 4px 14px 0 rgba(207, 161, 95, 0.39);
    --container-width: 1280px;
    --header-height: 80px;
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

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

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

body {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    color: var(--color-text-body);
    line-height: 1.8;
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 1rem;
    font-weight: 700
}

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

ul {
    list-style: none
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px
}

.section-padding {
    padding: 100px 0
}

.text-center {
    text-align: center
}

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

.text-accent {
    color: var(--color-accent)
}

.text-white {
    color: var(--color-white)
}

.font-bold {
    font-weight: 700
}

.mb-20 {
    margin-bottom: 20px
}

.mb-40 {
    margin-bottom: 40px
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap
}

.w-full {
    width: 100%
}

.flex-responsive {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

.align-center {
    align-items: center
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600
}

.two-col-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px
}

.two-col-layout>* {
    flex: 1;
    min-width: 300px
}

.two-col-layout--reverse {
    flex-direction: row-reverse
}

.two-col-layout--top {
    align-items: flex-start
}

.img-rounded {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg)
}

.stats-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-light);
    padding: 30px;
    border-radius: 10px
}

.faq-container--white {
    background: var(--color-white);
    box-shadow: var(--shadow-md)
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px
}

.faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0
}

.faq-summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--color-primary)
}

.faq-answer {
    margin-top: 10px;
    color: var(--color-text-body)
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px
}

.privacy-check input[type=checkbox] {
    width: auto;
    margin-top: 5px
}

.privacy-check label {
    font-size: .9rem;
    line-height: 1.4
}

.whatsapp-notice {
    background: rgba(37, 211, 102, .1);
    border: 1px dashed #25d366;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px
}

.info-box {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--color-accent);
    box-shadow: var(--shadow-sm)
}

.social-icon.social-icon--filled {
    background: var(--color-primary);
    color: var(--color-white)
}

.social-icon i {
    font-size: 18px;
    line-height: 1
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .2)
}

.cookie-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    color: #fff
}

@media (max-width:768px) {
    .hide-mobile {
        display: none !important
    }

    .stack-mobile {
        flex-direction: column !important
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    text-transform: uppercase;
    font-size: .875rem;
    letter-spacing: 1px;
    transition: var(--transition-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1
}

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

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

.btn-secondary {
    background: var(--gradient-c);
    color: var(--color-white);
    box-shadow: var(--shadow-gold)
}

.btn-secondary:hover {
    filter: brightness(110%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 161, 95, .4)
}

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

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

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

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

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

.header {
    height: var(--header-height);
    background: rgba(255, 255, 255, .95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-base)
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md)
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-base)
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center
}

.nav-link {
    font-weight: 500;
    color: var(--color-primary);
    font-size: 1rem;
    position: relative;
    padding: 5px 0
}

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

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    padding: 8px;
    cursor: pointer;
    color: var(--color-primary);
    background: 0 0;
    border: none;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center
}

.header-cta-group {
    display: flex;
    gap: 10px;
    align-items: center
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-base);
    animation: pulse 2s infinite
}

.floating-whatsapp:hover {
    transform: scale(1.1)
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .7)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    background: var(--gradient-overlay), url('/assets/images/hero-bg.jpg');
    background: var(--gradient-overlay), -webkit-image-set(url('/assets/images/hero-bg.webp') type('image/webp'), url('/assets/images/hero-bg.jpg') type('image/jpeg'));
    background: var(--gradient-overlay), image-set(url('/assets/images/hero-bg.webp') type('image/webp'), url('/assets/images/hero-bg.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    position: relative
}

.hero-inner {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 40px
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2
}

.hero-tagline {
    display: inline-block;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(207, 161, 95, .4);
    border-radius: 50px;
    background: rgba(207, 161, 95, .08)
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    letter-spacing: -.5px
}

.hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    margin-bottom: 36px;
    color: rgba(255, 255, 255, .85);
    max-width: 640px;
    line-height: 1.8
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn-hero {
    display: flex;
    align-items: center;
    padding: 16px 36px;
    font-size: .9rem;
    gap: 10px
}

.btn-hero i {
    font-size: .85rem
}

.hero-trust-bar {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0
}

.hero-trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px
}

.hero-trust-item i {
    font-size: 1.3rem;
    color: var(--color-accent);
    flex-shrink: 0
}

.hero-trust-item strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: var(--color-white);
    display: block;
    line-height: 1.2
}

.hero-trust-item span {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .6);
    display: block
}

.hero-trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
    flex-shrink: 0
}

.hero-br {
    display: inline
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px
}

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-c);
    transform: scaleX(0);
    transition: var(--transition-base);
    transform-origin: left
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-icon {
    font-size: 48px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px
}

.animate-fade-up {
    opacity: 1
}

.js-enabled .animate-fade-up {
    opacity: 0;
    animation: fadeInUp .8s ease-out forwards
}

@media (max-width:768px) {

    .animate-fade-up,
    .js-enabled .animate-fade-up {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
        visibility: visible !important
    }
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem
}

.service-card p {
    color: var(--color-text-body);
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.6
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px
}

.why-item {
    text-align: center;
    padding: 30px;
    background: var(--color-white);
    border-radius: var(--border-radius-md);
    transition: var(--transition-base)
}

.why-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px)
}

.why-item i {
    font-size: 50px;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition-base)
}

.why-item:hover i {
    color: var(--color-primary);
    transform: scale(1.1)
}

.why-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px
}

.team-icon-box {
    width: 120px;
    height: 120px;
    background: var(--gradient-c);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base)
}

.service-card:hover .team-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    margin-bottom: 40px
}

.stats-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--color-primary)
}

.stats-item p {
    text-transform: uppercase;
    font-size: .85rem;
    letter-spacing: 1px;
    color: var(--color-text-body)
}

.testimonials-section {
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px
}

.testimonial-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    position: relative
}

.testimonial-stars {
    color: gold;
    margin-bottom: 15px;
    font-size: 14px
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-body);
    margin-bottom: 20px
}

.testimonial-author h5 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--color-primary)
}

.testimonial-author span {
    font-size: .85rem;
    color: var(--color-text-gray)
}

.cta-section {
    background: var(--gradient-primary);
    color: var(--color-white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

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

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

.cta-section h1,
.cta-section h2,
.cta-section h3 {
    color: var(--color-white)
}

.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0 30px;
    font-size: .95rem
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px
}

.footer-title {
    color: var(--color-accent);
    margin-bottom: 24px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600
}

.footer-links li {
    margin-bottom: 14px
}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    transition: var(--transition-fast)
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .8)
}

.footer-contact-item i {
    width: 20px;
    text-align: center;
    margin-top: 5px
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-base);
    color: var(--color-white)
}

.social-icon:hover {
    background: var(--color-accent);
    transform: translateY(-3px)
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .9rem;
    color: rgba(255, 255, 255, .5)
}

.page-header {
    background: var(--gradient-overlay), url('/assets/images/page-header-bg.jpg');
    background: var(--gradient-overlay), -webkit-image-set(url('/assets/images/page-header-bg.webp') type('image/webp'), url('/assets/images/page-header-bg.jpg') type('image/jpeg'));
    background: var(--gradient-overlay), image-set(url('/assets/images/page-header-bg.webp') type('image/webp'), url('/assets/images/page-header-bg.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    padding: 160px 0 80px;
    margin-top: 0;
    color: var(--color-white);
    text-align: center
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 16px
}

.bread-crumb {
    color: var(--color-accent);
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600
}

.bread-crumb ol {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
    margin: 0
}

.bread-crumb ol li {
    display: inline
}

.bread-crumb ol li+li::before {
    content: ' / ';
    margin: 0 8px;
    color: rgba(255, 255, 255, .6)
}

.bread-crumb ol li a {
    color: rgba(255, 255, 255, .8);
    transition: var(--transition-fast)
}

.bread-crumb ol li a:hover {
    color: var(--color-accent)
}

.form-container {
    background: var(--color-white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, .05)
}

.form-group {
    margin-bottom: 24px
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary);
    font-size: .95rem
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: var(--color-bg-off-white)
}

.form-control:focus {
    outline: 0;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(207, 161, 95, .15);
    background-color: var(--color-white)
}

textarea.form-control {
    min-height: 150px;
    resize: vertical
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(207, 161, 95, .12) 0, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, .04) 0, transparent 50%);
    pointer-events: none;
    z-index: 1
}

.section-accent-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-c);
    border-radius: 2px;
    margin: 0 auto 24px
}

.intro-section {
    position: relative;
    overflow: hidden
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207, 161, 95, .06) 0, transparent 70%);
    pointer-events: none
}

.service-card {
    position: relative;
    counter-increment: service-counter
}

.service-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, rgba(207, 161, 95, .15), rgba(207, 161, 95, .05));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: rgba(207, 161, 95, .15)
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition-base);
    margin-top: auto
}

.service-card .card-link::after {
    content: '→';
    transition: transform .3s ease
}

.service-card:hover .card-link {
    color: var(--color-accent)
}

.service-card:hover .card-link::after {
    transform: translateX(5px)
}

.services-grid .service-card:first-child {
    animation-delay: 0s
}

.services-grid .service-card:nth-child(2) {
    animation-delay: .1s
}

.services-grid .service-card:nth-child(3) {
    animation-delay: .2s
}

.services-grid .service-card:nth-child(4) {
    animation-delay: .3s
}

.location-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0
}

.location-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--color-bg-light);
    border-radius: 50px;
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
    cursor: default
}

.location-pill:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateX(4px);
    box-shadow: var(--shadow-md)
}

.location-pill:hover i {
    color: var(--color-accent-light)
}

.location-pill:hover strong {
    color: var(--color-white)
}

.location-pill i {
    color: var(--color-accent);
    font-size: .9rem;
    transition: var(--transition-base)
}

.location-pill strong {
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition-base)
}

.location-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg)
}

.location-image-wrap img {
    transition: transform .5s ease
}

.location-image-wrap:hover img {
    transform: scale(1.05)
}

.location-stat-bar {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border)
}

.location-stat {
    text-align: center
}

.location-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    line-height: 1.2
}

.location-stat-label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-gray)
}

.why-item {
    position: relative;
    border: 1px solid transparent
}

.why-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gradient-c);
    border-radius: 2px;
    transition: height .3s ease
}

.why-item:hover::before {
    height: 60%
}

.why-item:hover {
    border-color: var(--color-border)
}

.why-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(207, 161, 95, .12), rgba(207, 161, 95, .04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-base)
}

.why-item:hover .why-icon-circle {
    background: var(--gradient-c);
    box-shadow: var(--shadow-gold)
}

.why-item:hover .why-icon-circle i {
    color: var(--color-white)
}

.why-icon-circle i {
    font-size: 32px;
    color: var(--color-accent);
    transition: var(--transition-base)
}

.testimonial-card {
    position: relative;
    border-left: 3px solid var(--color-accent);
    transition: var(--transition-base)
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(207, 161, 95, .12);
    pointer-events: none
}

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

.testimonial-stars i {
    transition: transform .2s ease
}

.testimonial-card:hover .testimonial-stars i {
    transform: scale(1.15)
}

.testimonial-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: .8rem;
    color: var(--color-text-gray)
}

.testimonial-google-badge i {
    color: #4285f4
}

.cta-gradient {
    background: var(--gradient-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden
}

.cta-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none
}

.cta-gradient h2 {
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3rem)
}

.cta-gradient p {
    color: rgba(255, 255, 255, .85)
}

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

.cta-buttons .btn {
    width: auto;
    min-width: 180px
}

.cta-gradient .btn-cta-call {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-white)
}

.cta-gradient .btn-cta-call:hover {
    background: 0 0;
    color: var(--color-white);
    transform: translateY(-2px)
}

.cta-gradient .btn-cta-whatsapp {
    background: #25d366;
    color: var(--color-white);
    border: 2px solid #25d366
}

.cta-gradient .btn-cta-whatsapp:hover {
    background: 0 0;
    color: #25d366;
    border-color: #25d366;
    transform: translateY(-2px)
}

.faq-item {
    transition: var(--transition-base)
}

.faq-item[open] {
    background: rgba(207, 161, 95, .04);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    margin-left: -15px;
    margin-right: -15px;
    border-bottom-color: transparent
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    -webkit-user-select: none;
    user-select: none
}

.faq-summary::-webkit-details-marker {
    display: none
}

.faq-summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .75rem;
    color: var(--color-accent);
    transition: transform .3s ease;
    flex-shrink: 0;
    margin-left: 16px
}

.faq-item[open] .faq-summary::after {
    transform: rotate(180deg)
}

.faq-summary:hover {
    color: var(--color-accent)
}

.faq-answer {
    animation: faqReveal .3s ease
}

@keyframes faqReveal {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.why-grid .why-item:first-child {
    animation-delay: 0s
}

.why-grid .why-item:nth-child(2) {
    animation-delay: .1s
}

.why-grid .why-item:nth-child(3) {
    animation-delay: .15s
}

.why-grid .why-item:nth-child(4) {
    animation-delay: .2s
}

.testimonials-grid .testimonial-card:first-child {
    animation-delay: 0s
}

.testimonials-grid .testimonial-card:nth-child(2) {
    animation-delay: .1s
}

.testimonials-grid .testimonial-card:nth-child(3) {
    animation-delay: .2s
}

@media (max-width:768px) {
    .hero-trust-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0
    }

    .hero-trust-divider {
        display: none
    }

    .hero-trust-item {
        flex: 1 1 auto;
        min-width: 120px;
        justify-content: center;
        padding: 8px 12px
    }

    .hero-trust-item strong {
        font-size: 1.1rem
    }

    .hero-trust-item span {
        font-size: .7rem
    }

    .service-card-number {
        font-size: 2rem
    }

    .location-pill {
        padding: 10px 14px
    }

    .why-icon-circle {
        width: 64px;
        height: 64px
    }

    .why-icon-circle i {
        font-size: 24px
    }

    .cta-gradient h2 {
        font-size: 1.8rem
    }

    .location-stat-bar {
        gap: 16px
    }

    .location-stat-number {
        font-size: 1.4rem
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@media (max-width:992px) {
    :root {
        --container-width: 100%
    }

    .hero h1 {
        font-size: 2.5rem
    }
}

@media (max-width:768px) {
    .header {
        height: 70px
    }

    .mobile-toggle {
        display: flex
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -110%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 60px 40px;
        transition: var(--transition-base);
        box-shadow: var(--shadow-md);
        overflow-y: auto;
        z-index: 999
    }

    .nav-menu.active {
        left: 0
    }

    .nav-link {
        font-size: 1.25rem
    }

    .hero {
        text-align: center;
        min-height: 0
    }

    .hero-inner {
        padding-top: 90px;
        padding-bottom: 24px
    }

    .hero-tagline {
        font-size: .75rem;
        letter-spacing: 2px;
        padding: 6px 16px
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto
    }

    .hero-cta {
        justify-content: center
    }

    .hero-br {
        display: none
    }

    .hero-trust-bar {
        padding: 16px 0
    }

    .section-padding {
        padding: 60px 0
    }

    .page-header {
        padding: 120px 0 60px
    }

    .page-header h1 {
        font-size: 2rem
    }

    main .btn {
        padding: 12px 20px;
        font-size: .85rem;
        width: 100%
    }

    main .btn-wide {
        width: 100%
    }

    .btn-hero {
        width: auto;
        flex: 1 1 auto;
        min-width: 140px
    }

    .form-container {
        padding: 25px 20px
    }

    .flex-responsive {
        gap: 20px
    }

    .two-col-layout {
        flex-direction: column;
        gap: 30px
    }

    .two-col-layout--reverse {
        flex-direction: column
    }

    .stats-inline {
        grid-template-columns: 1fr
    }

    .faq-container {
        padding: 20px 15px
    }

    div[style*="display: flex"] {
        flex-wrap: wrap !important
    }

    div[style*="min-width: 250px"],
    div[style*="min-width: 300px"] {
        min-width: 100% !important;
        flex: 1 1 100% !important
    }

    h2[style*="font-size: 2.5rem"] {
        font-size: 1.8rem !important
    }

    h2[style*="font-size: 2rem"] {
        font-size: 1.6rem !important
    }

    div[style*="gap: 50px"] {
        gap: 25px !important
    }

    div[style*="gap: 40px"] {
        gap: 20px !important
    }

    div[style*="gap: 30px"] {
        gap: 15px !important
    }

    div[style*="display: flex"][style*="flex: 1"] {
        flex-direction: column !important
    }

    .content-box-lg {
        padding: 25px 20px
    }

    .header-cta-group {
        display: flex;
        gap: 8px;
        margin-top: 15px;
        width: 100%;
        justify-content: center
    }

    .header-cta-group .btn {
        padding: 12px 10px;
        font-size: .8rem;
        flex: 1;
        min-width: 0;
        white-space: nowrap;
        width: auto
    }

    .logo img {
        height: 40px
    }

    iframe[title*="Google Maps"],
    iframe[title*="google maps"] {
        height: 300px !important
    }

    section>iframe {
        height: 300px
    }

    ul[style*="display: grid"] {
        grid-template-columns: 1fr !important
    }

    p[style*="font-size: 1.2rem"] {
        font-size: 1rem !important
    }

    p[style*="font-size: 1.1rem"] {
        font-size: 1rem !important
    }

    .cta-content p,
    .cta-section p {
        font-size: 1rem
    }

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

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

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .feature-list {
        grid-template-columns: 1fr
    }

    .flex-col-200,
    .flex-col-250,
    .flex-col-300 {
        min-width: 100%
    }

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

    .section-title-lg {
        font-size: 1.5rem
    }

    h2 {
        font-size: 1.75rem
    }

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

    .stats-item h3 {
        font-size: 1.8rem
    }

    .content-box-lg h3 {
        font-size: 1.3rem
    }
}

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

    .hero-inner {
        padding-top: 80px;
        padding-bottom: 16px
    }

    .hero h1 {
        font-size: 1.65rem
    }

    .hero-desc {
        font-size: .9rem;
        margin-bottom: 24px
    }

    .page-header {
        padding: 100px 0 40px
    }

    .page-header h1 {
        font-size: 1.6rem
    }

    h2 {
        font-size: 1.5rem
    }

    .section-padding {
        padding: 40px 0
    }

    .hero-trust-bar {
        padding: 14px 0
    }

    .hero-trust-items {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-around;
        gap: 8px
    }

    .hero-trust-divider {
        display: none
    }

    .hero-trust-item {
        flex-direction: column;
        text-align: center;
        padding: 10px 6px;
        gap: 4px;
        flex: 1;
        min-width: 0;
        background: rgba(255, 255, 255, .06);
        border-radius: 8px
    }

    .hero-trust-item i {
        font-size: 1.1rem
    }

    .hero-trust-item strong {
        font-size: .9rem
    }

    .hero-trust-item span {
        font-size: .55rem;
        letter-spacing: .5px
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .why-item {
        padding: 20px
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .location-list {
        grid-template-columns: 1fr
    }

    .footer {
        padding: 40px 0 20px
    }

    .cta-content .btn,
    .hero-btns .btn {
        width: 100%
    }

    .form-control {
        padding: 12px 14px;
        font-size: .95rem
    }

    .form-group label {
        font-size: .9rem
    }

    .cookie-banner .container {
        flex-direction: column;
        gap: 10px
    }

    .cookie-banner p {
        font-size: 12px
    }

    iframe[title*="Google Maps"],
    section>iframe {
        height: 250px !important
    }

    div[style*="position: absolute"] {
        position: static !important
    }

    .bread-crumb {
        font-size: .8rem;
        letter-spacing: 1px
    }

    h3[style*="font-size: 2.5rem"] {
        font-size: 1.8rem !important
    }

    .social-icons {
        gap: 8px
    }

    .social-icon {
        width: 38px;
        height: 38px
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px
    }

    .info-box {
        padding: 20px
    }

    .testimonial-card {
        padding: 20px
    }

    .testimonial-card::before {
        font-size: 3rem
    }

    .service-card {
        padding: 25px 20px
    }
}

.about-quote-box {
    display: none
}

@media (min-width:768px) {
    .about-quote-box {
        display: block
    }
}

.content-box-lg {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm)
}

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

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

.section-title-lg {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-primary)
}

.feature-list {
    margin-bottom: 30px;
    display: grid;
    gap: 10px;
    list-style: none;
    padding: 0
}

.feature-list li {
    display: flex;
    align-items: center
}

.feature-list i {
    margin-right: 10px;
    color: var(--color-accent)
}

.flex-col-300 {
    flex: 1;
    min-width: 300px
}

.flex-col-250 {
    flex: 1;
    min-width: 250px
}

.flex-col-200 {
    flex: 1;
    min-width: 200px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-50 {
    margin-bottom: 50px
}

.mt-15 {
    margin-top: 15px
}

.mt-30 {
    margin-top: 30px
}

.mr-8 {
    margin-right: 8px
}

.mr-10 {
    margin-right: 10px
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.w-full {
    width: 100%
}

.max-w-900 {
    max-width: 900px
}

.bg-light {
    background-color: var(--color-bg-light)
}

.bg-white {
    background-color: var(--color-white)
}

.bg-whatsapp {
    background-color: #25d366
}

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

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

.grid-cols-auto-180 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px
}

.text-center {
    text-align: center
}

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

.text-accent {
    color: var(--color-accent)
}

.text-body {
    color: var(--color-text-body)
}

.text-white {
    color: var(--color-white)
}

.lh-14 {
    line-height: 1.4
}

.lh-17 {
    line-height: 1.7
}

.lh-18 {
    line-height: 1.8
}

.text-lg {
    font-size: 1.1rem
}

.text-sm {
    font-size: .9rem
}

.text-2xl {
    font-size: 1.5rem
}

.font-bold {
    font-weight: 700
}

.underline {
    text-decoration: underline
}

.text-whatsapp {
    color: #25d366
}

.text-gray-600 {
    color: #4b5563
}

.text-gray-700 {
    color: #374151
}

.m-0 {
    margin: 0
}

.p-0 {
    padding: 0
}