@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

* {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

html,
body {
    min-height: 100vh;
    overflow-x: hidden;
}

:root {
    --color-primary: #0EA5E9;
    --color-primary-dark: #0284C7;
    --color-primary-light: #E0F2FE;
    --color-secondary: #0F172A;
    --color-secondary-light: #1E293B;
    --color-accent: #F59E0B;
    --color-accent-dark: #D97706;
    --color-text: #334155;
    --color-text-light: #64748B;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8FAFC;
    --color-bg-dark: #0F172A;
    --color-border: #E2E8F0;
    --color-success: #10B981;
    --color-error: #EF4444;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-secondary);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

strong {
    font-weight: 600;
}

.cl-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

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

.cl-section {
    padding: 80px 0;
}

.cl-section--alt {
    background: var(--color-bg-alt);
}

.cl-section--dark {
    background: var(--color-bg-dark);
    color: white;
}

.cl-section--dark h1,
.cl-section--dark h2,
.cl-section--dark h3,
.cl-section--dark h4,
.cl-section--dark h5,
.cl-section--dark h6 {
    color: white;
}

.cl-main {
    min-height: 60vh;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--color-text);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.cl-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.cl-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.cl-form-group {
    margin-bottom: 20px;
}

.cl-form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-secondary);
}

.cl-form-input,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: white;
    color: var(--color-text);
}

.cl-form-input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.cl-honeypot {
    position: absolute;
    left: -9999px;
}

.cl-topbar {
    background: var(--color-secondary);
    color: white;
    padding: 8px 0;
    font-size: 0.8rem;
}

.cl-topbar a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    opacity: 0.9;
}

.cl-topbar a:hover {
    opacity: 1;
}

.cl-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cl-topbar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.cl-topbar__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.cl-topbar__social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
}

.cl-topbar__social a:hover {
    background: var(--color-primary);
}

.cl-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.cl-header--scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--color-border);
}

.cl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.cl-header__logo img {
    max-height: 50px;
    width: auto;
}

.cl-header__logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.cl-header__logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-secondary);
    white-space: nowrap;
}

.cl-header__logo-text span {
    color: var(--color-primary);
}

.cl-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.cl-nav__list li a {
    padding: 10px 16px;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--color-text);
    transition: var(--transition);
    border-radius: var(--radius-sm);
    display: block;
}

.cl-nav__list li a:hover,
.cl-nav__list li.current-menu-item a {
    color: var(--color-primary);
    background: var(--color-primary-light);
}

.cl-header__cta {
    margin-left: 16px;
}

.cl-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.cl-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

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

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

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

.cl-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,23,42,0.97);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cl-mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cl-mobile-menu__nav {
    list-style: none;
    text-align: center;
}

.cl-mobile-menu__nav li {
    margin-bottom: 8px;
}

.cl-mobile-menu__nav li a {
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 24px;
    display: block;
    transition: var(--transition);
    border-radius: var(--radius-md);
}

.cl-mobile-menu__nav li a:hover {
    color: var(--color-primary);
    background: rgba(255,255,255,0.05);
}

.cl-mobile-menu__cta {
    margin-top: 32px;
}

.cl-mobile-menu__phone {
    margin-top: 20px;
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cl-mobile-menu__phone a {
    color: white;
}

.cl-footer {
    background: var(--color-secondary);
    color: rgba(255,255,255,0.8);
    padding-top: 64px;
}

.cl-footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.cl-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--color-primary);
}

.cl-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.cl-footer__description {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 16px;
    opacity: 0.8;
}

.cl-footer__links {
    list-style: none;
}

.cl-footer__links li {
    margin-bottom: 8px;
}

.cl-footer__links li a {
    color: rgba(255,255,255,0.7) !important;
    transition: var(--transition);
    font-size: 0.9rem;
}

.cl-footer__links li a:hover {
    color: #ffffff !important;
    padding-left: 4px;
}

.cl-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.cl-footer__contact-item a {
    color: rgba(255,255,255,0.8) !important;
}

.cl-footer__contact-item a:hover {
    color: #ffffff !important;
}

.cl-footer__contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255,255,255,0.5);
}

.cl-footer__social {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.cl-footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    transition: var(--transition);
}

.cl-footer__social a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.cl-footer__anpc {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cl-footer__anpc img {
    max-width: 180px;
    height: auto;
    border-radius: var(--radius-sm);
}

.cl-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    margin-top: 48px;
}

.cl-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

.cl-footer__legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cl-footer__legal a {
    color: rgba(255,255,255,0.6) !important;
    transition: var(--transition);
}

.cl-footer__legal a:hover {
    color: #ffffff !important;
}

#cl-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

#cl-preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.cl-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

body.elementor-editor-active .animate-on-scroll {
    opacity: 1;
    transform: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

body.elementor-editor-active .reveal-left,
body.elementor-editor-active .reveal-right {
    opacity: 1;
    transform: none;
}

body.no-scroll {
    overflow: hidden;
}

.cl-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.cl-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.cl-back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.cl-sticky-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 997;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-decoration: none;
}

.cl-sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    color: white;
}

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

.cl-sticky-call {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 997;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-decoration: none;
}

.cl-sticky-call:hover {
    transform: scale(1.1);
    color: white;
}

.cl-sticky-call svg {
    width: 24px;
    height: 24px;
}

.cl-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 20px 0;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cl-cookie-banner.visible {
    transform: translateY(0);
}

.cl-cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cl-cookie-banner__text {
    font-size: 0.9rem;
    color: var(--color-text);
    flex: 1;
}

.cl-cookie-banner__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.cl-cookie-banner__link {
    color: var(--color-primary);
    font-size: 0.85rem;
    white-space: nowrap;
}

.wp-caption {
    max-width: 100%;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin: 0 24px 24px 0;
}

.alignright {
    float: right;
    margin: 0 0 24px 24px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sticky,
.bypostauthor {
    position: relative;
}

@media (max-width: 1200px) {
    .cl-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .cl-nav,
    .cl-header__actions {
        display: none;
    }

    .cl-hamburger {
        display: flex;
    }

    .cl-header__logo-text {
        font-size: 1.2rem;
    }

    .cl-section {
        padding: 60px 0;
    }

    .cl-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.cl-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-sizing: border-box;
}

.cl-mobile-bar.cl-mobile-bar--visible {
    transform: translateY(0);
}

.cl-mobile-bar__inner {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.cl-mobile-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cl-mobile-bar__btn--call {
    background: #DC2626;
    color: #ffffff;
}

.cl-mobile-bar__btn--call:hover {
    background: #B91C1C;
}

.cl-mobile-bar__btn--whatsapp {
    background: #25D366;
    color: #ffffff;
}

.cl-mobile-bar__btn--whatsapp:hover {
    background: #1DA851;
}

.cl-mobile-bar__btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cl-section {
        padding: 48px 0;
    }

    .cl-container {
        padding: 0 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .cl-footer__grid {
        grid-template-columns: 1fr;
    }

    .cl-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .cl-footer__legal {
        justify-content: center;
    }

    .cl-topbar__inner {
        justify-content: center;
    }

    .cl-topbar__right {
        display: none;
    }

    .cl-header__logo-text {
        font-size: 1.1rem;
    }

    .cl-header__logo img {
        max-height: 40px;
    }

    .cl-sticky-call {
        display: flex;
    }

    .cl-mobile-bar {
        display: block;
    }

    .cl-sticky-whatsapp,
    .cl-sticky-call {
        display: none !important;
    }

    .cl-cookie-banner {
        bottom: 72px;
    }

    .cl-cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cl-cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .cl-sticky-whatsapp {
        bottom: 20px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .cl-sticky-call {
        bottom: 20px;
        left: 16px;
        width: 50px;
        height: 50px;
    }
}