:root {
    --primary-color: #8a6bff;
    --secondary-color: #5e4ae3;
    --tertiary-color: #3b68d9;
    --light-color: #f8f9ff;
    --dark-color: #1a1a2e;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(138, 107, 255, 0.15);
    --transition: all 0.3s ease
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--dark-color)
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    background-color: var(--white);
    transition: var(--transition)
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.nav-center {
    flex-grow: 1
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px
}

.logo {
    display: flex;
    align-items: center
}

.logo img {
    height: 50px;
    transition: var(--transition)
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    transition: var(--transition)
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(37, 211, 102, .3)
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: 0;
    text-decoration: none;
    transition: var(--transition);
    text-align: center
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(138, 107, 255, .3)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 107, 255, .4)
}

.btn-secondary {
    background-color: var(--light-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color)
}

.btn-secondary:hover {
    background-color: rgba(138, 107, 255, .1)
}

.header-cta {
    font-size: 14px;
    padding: 10px 20px
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #e0e6ff 0, #f8f9ff 100%);
    padding: 160px 0 120px;
    text-align: center;
    overflow: hidden
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, var(--primary-color), var(--tertiary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 1s fadeInUp;
    color: var(--dark-color)
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a4a6a;
    margin-bottom: 40px;
    animation: 1s .3s forwards fadeInUp;
    opacity: 0
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: 1s .6s forwards fadeIn;
    opacity: 0
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color)
}

.stat-text {
    font-size: 1rem;
    color: #4a4a6a
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow);
    animation: 2s infinite bounce;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition)
}

.scroll-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(138, 107, 255, .25)
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-10px)
    }

    60% {
        transform: translateY(-5px)
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat
}

.form-section {
    padding: 80px 0;
    background-color: var(--white)
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 40px;
    position: relative;
    background-color: var(--white)
}

.progress-bar {
    margin-bottom: 30px
}

.progress {
    height: 6px;
    background-color: #e0e6ff;
    border-radius: 3px;
    margin-bottom: 20px;
    overflow: hidden
}

#formProgress {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    width: 25%;
    transition: var(--transition)
}

.step-indicators {
    display: flex;
    justify-content: space-between
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #a0a0a0;
    position: relative;
    width: 25%;
    transition: var(--transition)
}

.step i {
    font-size: 24px;
    margin-bottom: 8px
}

.step span {
    font-size: 14px;
    font-weight: 500
}

.step.active {
    color: var(--primary-color)
}

.form-step {
    display: none;
    animation: .5s fadeIn
}

.form-step.active {
    display: block
}

.form-step h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center
}

.client-type-selector {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px
}

.type-option {
    position: relative
}

.type-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.type-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    border: 2px solid #e0e6ff;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition)
}

.type-option input:checked+label {
    border-color: var(--primary-color);
    background-color: rgba(138, 107, 255, .05);
    box-shadow: 0 4px 15px rgba(138, 107, 255, .2)
}

.type-option label i {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-color)
}

.service-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap
}

.service-card {
    width: 30%;
    position: relative
}

.service-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.service-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #e0e6ff;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    height: 100%
}

.service-card input:checked+label {
    border-color: var(--primary-color);
    background-color: rgba(138, 107, 255, .05);
    box-shadow: 0 4px 15px rgba(138, 107, 255, .2)
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 15px
}

.service-icon i {
    font-size: 24px;
    color: var(--white)
}

.service-card h3 {
    font-size: 16px;
    color: var(--dark-color)
}

.form-group {
    margin-bottom: 20px
}

.input-group {
    position: relative
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--primary-color)
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e0e6ff;
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(138, 107, 255, .2)
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238a6bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px
}

.checkbox-group {
    margin-top: 30px
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    user-select: none
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 2px solid #e0e6ff;
    border-radius: 6px;
    transition: var(--transition)
}

.checkbox-container:hover input~.checkmark {
    border-color: var(--primary-color)
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color)
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg)
}

.checkbox-container input:checked~.checkmark:after {
    display: block
}

.privacy-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none
}

.privacy-link:hover {
    text-decoration: underline
}

.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px
}

.partners-section {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center
}

.partners-section h2 {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    font-size: 2rem;
    color: var(--dark-color)
}

.partners-section .container {
    margin-top: 30px
}

.slick-slide {
    margin: 0 20px
}

.slick-slide img {
    width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition)
}

.slick-slide img:hover {
    filter: grayscale(0);
    opacity: 1
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir='rtl'] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slide[data-partner="edison"] img {
    filter: invert(1) grayscale(100%);
    opacity: 0.5
}

.slide[data-partner="edison"] img:hover {
    filter: invert(1);
    opacity: 1
}

.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px
}

.logo_footer {
    margin-bottom: 20px
}

.logo_footer img {
    height: 80px;
    filter: brightness(1.2)
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color)
}

.footer-col p {
    color: #a0a0a0;
    margin-top: 15px;
    font-size: 14px
}

.footer-col ul {
    list-style: none;
    padding: 0
}

.footer-col ul li {
    margin-bottom: 12px
}

.footer-col ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition)
}

.footer-col ul li a:hover {
    color: var(--primary-color)
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary-color)
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-bottom p {
    color: #a0a0a0;
    font-size: 14px
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .15);
    z-index: 1000;
    padding: 25px;
    display: none
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px
}

.cookie-header h3 {
    font-size: 1.3rem;
    color: var(--dark-color)
}

.cookie-details-toggle {
    background: 0 0;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer
}

.cookie-details {
    display: none;
    margin: 20px 0
}

.cookie-category {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e6ff
}

.cookie-category:last-child {
    border-bottom: none
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
}

.cookie-category-header h4 {
    color: var(--dark-color)
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e6ff;
    border-radius: 34px;
    transition: var(--transition)
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    border-radius: 50%;
    transition: var(--transition)
}

.cookie-switch input:checked+.cookie-slider {
    background-color: var(--primary-color)
}

.cookie-switch input:checked+.cookie-slider:before {
    transform: translateX(24px)
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none
}

.cookie-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white)
}

.cookie-btn-secondary {
    background-color: var(--light-color);
    color: var(--primary-color)
}

.cookie-btn-tertiary {
    background: 0 0;
    color: #a0a0a0
}

.logo-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition)
}

.partner-logo:hover .logo-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -25px
}

@media screen and (min-width: 1200px) {
    .container {
        padding: 0 30px
    }

    .hero h1 {
        font-size: 4rem
    }

    .hero-subtitle {
        font-size: 1.5rem
    }
}

@media screen and (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem
    }

    .stats-container {
        gap: 20px
    }

    .footer-col {
        min-width: 200px
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 140px 0 100px
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .hero-subtitle {
        font-size: 1.1rem
    }

    .stats-container {
        flex-direction: column;
        gap: 30px
    }

    .form-container {
        padding: 30px 20px
    }

    .client-type-selector {
        gap: 20px
    }

    .type-option label {
        padding: 15px 25px
    }

    .service-card {
        width: 100%;
        margin-bottom: 15px
    }

    .nav-right {
        gap: 10px
    }

    .header-cta {
        font-size: 12px;
        padding: 8px 16px
    }

    .whatsapp-link {
        width: 35px;
        height: 35px;
        font-size: 18px
    }

    .footer-content {
        flex-direction: column
    }

    .footer-col {
        margin-bottom: 30px;
        text-align: center
    }

    .logo_footer {
        display: flex;
        justify-content: center
    }
}

@media screen and (max-width: 576px) {
    .navbar .container {
        padding: 0 15px
    }

    .logo img {
        height: 40px
    }

    .hero h1 {
        font-size: 1.8rem
    }

    .hero-subtitle {
        font-size: 1rem
    }

    .client-type-selector,
    .form-nav {
        flex-direction: column;
        gap: 15px
    }

    .step span {
        display: none
    }

    .cookie-btn,
    .form-nav button {
        width: 100%
    }

    .cookie-actions {
        flex-direction: column
    }

    .header-cta {
        display: none
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 120px 0 80px
    }

    .stats-container {
        gap: 15px
    }

    .stat-number {
        font-size: 2rem
    }

    .stat-text {
        font-size: 0.9rem
    }

    .form-container {
        padding: 20px 15px
    }

    .form-step h2 {
        font-size: 1.5rem
    }

    .service-icon {
        width: 50px;
        height: 50px
    }

    .service-icon i {
        font-size: 20px
    }
}

@media screen and (max-width: 375px) {
    .hero h1 {
        font-size: 1.6rem
    }

    .type-option label {
        padding: 12px 20px
    }

    .type-option label i {
        font-size: 28px
    }
}