:root {
    --primary-green-dark: #1A2B18;
    --primary-green-medium: #2E492A;
    --accent-lime: #A4D65E;
    --text-light: #ffffff;
    --bg-yellow-form: #F7C948;
    --bg-light: #f4f4f4;
    --border-radius-lg: 24px;
    --border-radius-sm: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-green-dark);
    background-color: var(--bg-light);
    line-height: 1.6
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center
}

.btn-primary {
    background-color: var(--primary-green-medium);
    color: #fff;
    border: 1px solid var(--accent-lime)
}

.btn-primary:hover {
    background-color: var(--accent-lime);
    color: var(--primary-green-dark);
    transform: translateY(-3px)
}

.btn-secondary {
    background-color: #008f39;
    color: white;
    width: 100%;
    padding: 15px;
    font-size: 1rem
}

.btn-secondary:hover {
    background-color: var(--primary-green-dark)
}

.btn-large {
    font-size: 1.1rem;
    padding: 15px 40px;
    width: 100%;
    max-width: 500px
}

.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('img/fondo-1.webp');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 20px 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.navbar {
    padding: 20px 0
}

.main-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5))
}

.hero-content {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 40px
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2
}

.hero-title span {
    font-weight: 300;
    display: block
}

.highlight-section {
    background-image: url('img/fondo-2.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center
}

.highlight-title span {
    font-weight: 300;
    display: block
}

.video-link-wrapper {
    display: block;
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center
}

.video-container {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 4px solid var(--accent-lime);
    background-color: #000;
    position: relative;
    transition: transform 0.3s ease
}

.video-link-wrapper:hover .video-container {
    transform: scale(1.02);
    border-color: #fff
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.highlight-text-card {
    background-color: rgba(26, 43, 24, 0.4);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 30px
}

.highlight-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5)
}

.highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%
}

.highlight-list li {
    background-color: rgba(46, 73, 42, 0.85);
    border: 1px solid rgba(164, 214, 94, 0.4);
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease
}

.highlight-list li:hover {
    transform: translateX(5px);
    background-color: rgba(46, 73, 42, 1)
}

.list-icon-wrapper {
    background-color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0
}

.list-icon-wrapper i {
    color: var(--primary-green-dark);
    font-size: 1rem
}

.highlight-list span {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 400
}

.contact-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 0;
    background-image: url('img/fondo-paisaje2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding-bottom: 40px;
    z-index: 2;
    position: relative
}

.contact-col-image {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%
}

.contact-col-image .person-image {
    max-width: 200px;
    width: 100%;
    height: auto
}

.contact-col-text {
    order: 1;
    text-align: center;
    width: 100%
}

.contact-col-text h3 {
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8)
}

.contact-col-form {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center
}

.contact-form-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px
}

.form-card {
    background-color: var(--bg-yellow-form);
    padding: 40px;
    border-radius: 30px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #000;
    position: relative
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #1A2B18
}

.form-subtitle {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1A2B18
}

.form-group {
    margin-bottom: 15px
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif
}

.footer {
    background-color: var(--primary-green-dark);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 20px;
    font-size: 0.8rem
}

@media (min-width:900px) {
    .hero-title {
        font-size: 2.5rem;
        justify-content: flex-start;
        text-align: left;
        max-width: 450px;
        line-height: 1.1;
        margin-top: 150px
    }

    .hero-title span {
        display: inline !important;
        font-weight: 300
    }

    .icon-circle {
        width: 100px;
        height: 100px
    }

    .feature-item i {
        font-size: 3rem
    }

    .feature-item {
        width: 130px
    }

    .highlight-grid {
        grid-template-columns: 40% 60%
    }

    .highlight-text-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 50px
    }

    .highlight-title {
        width: 45%;
        font-size: 2.5rem;
        text-align: left
    }

    .highlight-list {
        width: 50%
    }

    .contact-section {
        padding-top: 100px;
        min-height: 80vh;
        display: flex;
        align-items: flex-end
    }

    .c .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        padding-bottom: 40px;
        z-index: 2;
        position: relative
    }

    .contact-col-image {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        width: 100%
    }

    .contact-col-image .person-image {
        max-width: 200px;
        width: 100%;
        height: auto
    }

    .contact-col-text {
        order: 1;
        text-align: center;
        width: 100%
    }

    .contact-col-text h3 {
        font-size: 2rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8)
    }

    .contact-col-form {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center
    }

    .form-card {
        padding: 50px;
        border-radius: 40px
    }
}

.hero-features {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 0 5%
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
    text-align: center;
    transition: transform 0.3s ease
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px
}

.feature-item i {
    font-size: 1.5rem;
    color: #ffffff
}

.feature-item span {
    font-size: 0.7rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8)
}

.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(26, 43, 24, 0.7), rgba(26, 43, 24, 0.8)), url('img/fondo-1.webp');
    background-size: cover;
    background-position: center;
    padding: 20px
}

.success-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-lg);
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: slideUpFade 0.8s ease-out forwards
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.success-icon-wrapper {
    margin-bottom: 25px
}

.success-icon-wrapper i {
    font-size: 5rem;
    color: #008f39;
    animation: pulseIcon 2s infinite
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 143, 57, 0.7)
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 143, 57, 0)
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 143, 57, 0)
    }
}

.success-card h1 {
    color: var(--primary-green-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px
}

.success-message {
    color: #555;
    font-size: 1rem;
    margin-bottom: 35px;
    line-height: 1.6
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 1rem;
    padding: 15px 30px;
    width: 100%;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4)
}

.btn-whatsapp:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
    color: white
}

.btn-link-simple {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s
}

.btn-link-simple:hover {
    color: var(--primary-green-dark);
    text-decoration: underline
}

.contact-tri-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 0px;
    background-image: url('img/fondo-3.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden
}

.contact-tri-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1
}

.contact-tri-grid {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.tri-col-text {
    order: 1;
    text-align: center;
    width: 100%
}

.tri-title {
    font-size: 2.2rem;
    color: #ffffff;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8)
}

.tri-highlight {
    color: var(--bg-yellow-form);
    display: block
}

.tri-col-img {
    order: 3;
    display: none;
    justify-content: center;
    align-items: flex-end;
    width: 100%
}

.tri-person-img {
    max-width: 280px;
    height: auto;
    display: block
}

.tri-col-form {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center
}

.tri-form-card {
    background-color: var(--bg-yellow-form);
    padding: 30px;
    border-radius: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    color: #1A2B18;
    text-align: left
}

.tri-form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.3
}

@media (min-width:1100px) {
    .contact-tri-section {
        padding-top: 80px;
        min-height: 700px;
        display: flex;
        align-items: flex-end
    }

    .contact-tri-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 1300px
    }

    .tri-col-text {
        text-align: left;
        margin-bottom: 50px;
        padding-left: 20px
    }

    .tri-title {
        font-size: 3.5rem
    }

    .tri-col-img {
        display: flex;
        height: 100%;
        position: relative;
        z-index: 1
    }

    .tri-person-img {
        max-width: 350px;
        transform: scale(1.15);
        transform-origin: bottom center;
        filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5))
    }

    .tri-col-form {
        justify-content: flex-end;
        padding-right: 20px;
        position: relative;
        z-index: 10
    }

    .tri-form-card {
        padding: 40px
    }

    .hero-features {
        display: flex !important;
        justify-content: flex-end;
        gap: 20px;
        margin-bottom: 50px;
        padding-right: 5%
    }
}

.info-strip {
    background-color: var(--bg-yellow-form);
    padding: 15px 0;
    width: 100%;
    overflow: visible
}

.info-strip-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr 0.8fr;
    align-items: center;
    gap: 20px
}

.info-left ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.info-left li {
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    color: var(--primary-green-dark);
    font-weight: 500
}

.bullet-icon {
    font-size: 0.4rem;
    margin-top: 5px;
    margin-right: 8px;
    color: var(--primary-green-dark)
}

.info-center {
    display: flex;
    justify-content: center
}

.promo-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 550px
}

.promo-price {
    flex: 1;
    position: relative;
    padding-right: 15px
}

.promo-text-group {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1
}

.small-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    text-align: right;
    line-height: 1.1
}

.big-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-green-dark);
    letter-spacing: -1px
}

.price-footer {
    font-size: 0.6rem;
    color: #666;
    margin-top: 2px;
    font-weight: 600;
    margin-left: auto
}

.promo-divider {
    width: 2px;
    height: 50px;
    background-color: #eee;
    margin: 0 5px
}

.promo-finance {
    flex: 1;
    padding-left: 15px;
    position: relative;
    display: flex;
    align-items: center
}

.finance-text {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin: 0
}

.floating-icon {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: white;
    border: 2px solid var(--primary-green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2)
}

.floating-icon i {
    color: var(--primary-green-dark);
    font-size: 1rem
}

.icon-top {
    top: -40px;
    left: 70%;
    transform: translateX(-50%)
}

.icon-right {
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white
}

.info-right {
    display: flex;
    justify-content: flex-end
}

.brand-block {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    color: var(--primary-green-dark)
}

.brand-text {
    text-align: right;
    line-height: 0.9
}

.brand-text strong {
    font-size: 1.6rem;
    display: block;
    font-weight: 800
}

.brand-text .brand-light {
    font-size: 1.2rem;
    font-weight: 300
}

.brand-arrow i {
    font-size: 2rem;
    transform: rotate(-45deg);
    margin-top: 5px
}

@media (max-width:1100px) {
    .info-strip-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px
    }

    .info-col {
        justify-content: center;
        text-align: center
    }

    .info-left ul {
        display: inline-block;
        text-align: left
    }

    .promo-card {
        max-width: 450px;
        margin: 0 auto;
        padding: 20px
    }

    .brand-block {
        justify-content: center
    }
}

@media (max-width:600px) {
    .promo-card {
        flex-direction: column;
        gap: 20px;
        text-align: center
    }

    .promo-divider {
        width: 80%;
        height: 1px;
        margin: 10px auto
    }

    .promo-text-group {
        flex-direction: column;
        justify-content: center
    }

    .small-label {
        text-align: center
    }

    .icon-top {
        top: -30px
    }

    .icon-right {
        position: static;
        margin: 10px auto 0;
        transform: none
    }

    .brand-text strong {
        font-size: 1.4rem
    }
}

.video-slider-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.video-slides-container {
    width: 100%;
    display: flex;
    justify-content: center
}

.video-container {
    display: none;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 4px solid var(--accent-lime);
    background-color: #000;
    transition: transform 0.3s ease
}

.video-container.active-slide {
    display: block;
    animation: fadeIn 0.5s ease
}

@keyframes fadeIn {
    from {
        opacity: 0.5;
        transform: scale(0.95)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.slider-controls {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 10px
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(20, 69, 143, 0.1);
    border: 2px solid var(--accent-lime);
    color: var(--accent-lime);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.slider-btn:hover {
    background-color: var(--accent-lime);
    color: #ffffff;
    box-shadow: 0 5px 15px var(--accent-lime);
    transform: translateY(-2px)
}

@media (min-width:900px) {
    .video-slides-container {
        flex-direction: row;
        gap: 20px
    }

    .video-container {
        display: block !important
    }

    .slider-controls {
        display: none
    }

    .contact-message-left h2 {
        font-size: 2.5rem;
        margin-bottom: 80px
    }
}

.video-container {
    cursor: pointer
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2
}

.play-button i {
    color: var(--primary-green-dark);
    font-size: 2rem;
    margin-left: 5px
}

.video-container:hover .play-button {
    background-color: var(--accent-lime);
    transform: translate(-50%, -50%) scale(1.1)
}