:root {
    --primary: #0f172a;
    --accent: #ef4444;
    --accent-hover: #dc2626;
    --text-dark: #1e293b;
    --text-light: #475569;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 0.75rem;
    --container: 1200px
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all .2s ease
}

ul {
    list-style: none
}

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

.section {
    padding: 5rem 0
}

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

.text-center {
    text-align: center
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-8 {
    margin-bottom: 2rem
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem
}

h1 {
    font-size: 2.5rem
}

h2 {
    font-size: 2rem
}

h3 {
    font-size: 1.5rem
}

@media (min-width:768px) {
    h1 {
        font-size: 3.5rem
    }

    h2 {
        font-size: 2.5rem
    }
}

p {
    margin-bottom: 1rem;
    color: var(--text-light)
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-md)
}

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

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

.btn-secondary:hover {
    border-color: var(--primary)
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary)
}

.logo span {
    color: var(--accent)
}

.nav-list {
    display: none
}

@media (min-width:992px) {
    .nav-list {
        display: flex;
        gap: 2rem
    }
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark)
}

.nav-link.active,
.nav-link:hover {
    color: var(--accent)
}

.mobile-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none
}

@media (min-width:992px) {
    .mobile-toggle {
        display: none
    }
}

.mobile-menu {
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform .3s ease-in-out;
    z-index: 999
}

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

.mobile-menu .nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center
}

.hero {
    position: relative;
    padding: 6rem 0 8rem;
    overflow: hidden
}

.hero-grid {
    display: grid;
    gap: 4rem
}

@media (min-width:992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center
    }
}

.hero-content {
    order: 2
}

@media (min-width:992px) {
    .hero-content {
        order: 1
    }
}

.hero-image {
    order: 1;
    position: relative;
    max-width: 100%
}

@media (min-width:992px) {
    .hero-image {
        order: 2
    }
}

.hero-image img,
.hero-image svg {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem
}

.badge {
    background: rgba(239, 68, 68, .1);
    color: var(--accent);
    padding: .5rem 1rem;
    border-radius: 2rem;
    font-size: .875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    transition: all .3s ease;
    text-decoration: none
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: .8
    }

    100% {
        transform: scale(1.6);
        opacity: 0
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1)
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px
}

.swiper {
    width: 100%;
    padding-bottom: 3rem !important
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark)
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary)
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: .5rem
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform .2s
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent)
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(239, 68, 68, .1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem
}

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

.content-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md)
}

.contact-form-hero {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1)
}

.form-group {
    margin-bottom: 1.5rem
}

.form-label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: .75rem;
    border: 1px solid var(--border);
    border-radius: .5rem;
    font-family: inherit
}

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

.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem
}

@media (min-width:768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.footer-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem
}

.footer-links li {
    margin-bottom: .75rem
}

.footer-links a {
    color: #94a3b8
}

.footer-links a:hover {
    color: var(--white)
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0
}

.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: transform .3s ease;
    text-align: center
}

.stat-card:hover {
    transform: translateY(-5px)
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: .5rem;
    color: var(--secondary)
}

.stat-card p {
    color: #666;
    font-weight: 500
}

.illustration-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05)
}

.illustration-gfx {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1)
}

.illustration-gfx img,
.illustration-gfx svg {
    width: 100%;
    height: auto;
    display: block
}

.illustration-content {
    flex: 1
}

.illustration-content h2 {
    margin-bottom: 1.5rem
}

@media (max-width:768px) {
    .illustration-section {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem
    }
}

:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-3d: 0 20px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05)
}

.glass-3d {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-3d)
}

.icon-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--accent) 0%, #b91c1c 100%);
    color: var(--white);
    border-radius: 20px;
    font-size: 2.5rem;
    position: relative;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3), inset 0 -4px 0 rgba(0, 0, 0, 0.2);
    transition: transform .3s ease, box-shadow .3s ease;
    margin: 0 auto 1.5rem
}

.icon-3d::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none
}

.icon-3d:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.4), inset 0 -2px 0 rgba(0, 0, 0, 0.2)
}

.floating-3d {
    animation: float 6s ease-in-out infinite
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg)
    }

    50% {
        transform: translateY(-20px) rotate(1deg)
    }

    100% {
        transform: translateY(0px) rotate(0deg)
    }
}

.hero-3d-composition {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px
}

.hero-3d-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
    position: relative;
    z-index: 10;
    overflow: hidden
}

.hero-3d-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, .05) 0%, transparent 70%);
    z-index: -1
}

.depth-layer {
    position: absolute;
    border-radius: 20px;
    background: rgba(239, 68, 68, .03);
    z-index: 1
}

.layer-1 {
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    z-index: -1;
    background: rgba(0, 0, 0, .02)
}

.layer-2 {
    width: 100%;
    height: 100%;
    top: 40px;
    left: 40px;
    z-index: -2;
    background: rgba(0, 0, 0, .01)
}

.stat-card {
    border: 1px solid var(--border);
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275)
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    border-color: var(--accent)
}

.feature-card {
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275)
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1)
}