/* Variables */
:root {
    --primary-color: #ff5e8a;
    --secondary-color: #6c63ff;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --max-width: 1200px;
}

/* Animaciones */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(30deg);
    }
    50% {
        transform: translateY(-20px) rotate(30deg);
    }
    100% {
        transform: translateY(0px) rotate(30deg);
    }
}

@keyframes floatHorizontal {
    0% {
        transform: translateX(0px) rotate(20deg);
    }
    50% {
        transform: translateX(20px) rotate(20deg);
    }
    100% {
        transform: translateX(0px) rotate(20deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

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

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}



a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #ff3a71;
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Header */
header {
    padding: 0px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: none;
}

header.scrolled {
    background-color: #fffffff7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled nav ul li a {
    color: rgb(23, 23, 23);
}

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

header.scrolled .logo img {
    filter: none;
    padding: 2px 0px;
}

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

.logo img {
    max-width: 160px;
    padding: 12px 0px;
    filter: brightness(0) invert(1);
}


nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.menu-toggle i{
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 180px 0px 80px 0px;
    position: relative;
    min-height: max-content;
    overflow: hidden;
    color: #fff;
    text-align: center;
}



.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0%;
    left: 100%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / 65%) 15%, rgb(63 7 51) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-centered h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.hero-content-centered p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f0f0f0;
    line-height: 1.6;
}

.hero-image-wrapper {
    position: relative;
    bottom: -80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.hero-image {
    max-width: 1100px;
    width: 80%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.hero-image img {
    width: 100%;
}

/* Solutions and Features Section */
.solutions-features {
    padding: 100px 0 0px 0px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    background-color: rgba(255, 94, 138, 0.06);
    border-radius: 20px 20px 6px 20px;
    top: 15%;
    right: 8%;
    z-index: 0;
    animation: pulse 9s infinite ease-in-out;
}

.solutions::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 78px solid rgba(255, 94, 138, 0.04);
    bottom: 12%;
    left: 12%;
    transform: rotate(25deg);
    z-index: 0;
    animation: floatHorizontal 14s infinite ease-in-out;
}

.solutions .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.soluciones {
    margin-bottom: 30px !important;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 0px;
    color: var(--dark-color);
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solution-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 94, 138, 0.1);
    border-radius: 20px 20px 6px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.solution-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.solution-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.solution-card p {
    color: #666;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 94, 138, 0.1);
    border-radius: 20px 20px 6px 20px;
    top: 10%;
    left: 5%;
    z-index: 0;
    animation: pulse 8s infinite ease-in-out;
}

.features .container::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 94, 138, 0.07);
    border-radius: 20px 20px 6px 20px;
    top: 30%;
    left: 20%;
    z-index: 0;
    animation: pulse 12s infinite ease-in-out;
}

.features .container::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 94, 138, 0.05);
    border-radius: 8px;
    bottom: 25%;
    left: 40%;
    transform: rotate(15deg);
    z-index: 0;
    animation: rotate 20s infinite linear;
}

.features::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 94, 138, 0.08);
    transform: rotate(45deg);
    bottom: 15%;
    right: 10%;
    z-index: 0;
    animation: rotate 30s infinite linear;
}

.features .container {
    position: relative;
    z-index: 1;
}

/* Triángulo decorativo */
.features .section-header::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(255, 94, 138, 0.05);
    top: 60%;
    left: 15%;
    transform: rotate(30deg);
    z-index: 0;
    animation: float 15s infinite ease-in-out;
}

.features-tabs {
    margin-top: 50px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
    gap: 20px;
}

.tab-btn {
    padding: 12px 30px;
    background-color: #54313100;
    border: 2px solid transparent;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 100;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0px;
    border: 1px solid #c4c4c4;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
}

.tab-btn.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: rgba(255, 94, 138, 0.05);
}

.tab-content, .features-content {
    display: none;
}

.tab-content.active, .features-content.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.interactive-features {
    position: relative;
    padding: 30px 0 60px;
}

.features-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.features-circle {
    position: relative;
    display: grid;
    grid-template-areas:
        "left center right";
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    padding: 30px 0;
    width: 100%;
}

.feature-item.top-left, .feature-item.bottom-left {
    grid-area: left;
    justify-self: end;
    margin-bottom: 30px;
}

.feature-item.top-right, .feature-item.bottom-right {
    grid-area: right;
    justify-self: start;
    margin-bottom: 30px;
}

.feature-item.top-left, .feature-item.top-right {
    margin-top: 0;
}

.feature-item.bottom-left, .feature-item.bottom-right {
    margin-top: auto;
}

/* Left side features container */
.left-features, .right-features {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px 0;
    width: 100%;
    max-width: 350px;
}

.device-showcase {
    grid-area: center;
    justify-self: center;
    align-self: center;
    position: relative;
    z-index: 1;
}

.device-frame {
    position: relative;
    width: 320px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 10px solid #dce1e6;
    background-color: #fff;
    transform: scale(1.1);
}

.device-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Add connecting lines between features and device */
.features-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 350px;
    border: 2px dashed rgba(255, 94, 138, 0.2);
    border-radius: 20px 20px 6px 20px;
    z-index: 0;
}

.feature-item {
    background-color: #fff;
    border-radius: 20px 20px 6px 20px;
    padding: 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.13);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    max-width: 350px;
    z-index: 2;
    margin: 15px 0;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 94, 138, 0.1);
    border-radius: 20px 20px 6px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.feature-showcase {
    text-align: center;
}

.feature-showcase img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
/* Responsive Styles for Features Section */
@media (max-width: 992px) {
    .features-circle {
        grid-template-areas:
            "center"
            "left"
            "right";
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
    .left-features, .right-features {
        max-width: 100%;
        padding: 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 00px;
    }
    
    .feature-item.top-left, .feature-item.bottom-left,
    .feature-item.top-right, .feature-item.bottom-right {
        justify-self: center;
        max-width: 100%;
        margin: 10px auto;
    }
    
    .device-showcase {
        margin: 20px 0;
    }
    
    .features-circle::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .left-features, .right-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        max-width: 100%;
    }
}

.benefits {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: rgba(255, 94, 138, 0.07);
    border-radius: 20px 20px 6px 20px;
    bottom: 10%;
    left: 8%;
    z-index: 0;
    animation: pulse 10s infinite ease-in-out;
}

.benefits .container::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(255, 94, 138, 0.06);
    top: 40%;
    right: 25%;
    transform: rotate(20deg);
    z-index: 0;
    animation: float 13s infinite ease-in-out;
}

.benefits .container::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 94, 138, 0.04);
    border-radius: 10px;
    top: 70%;
    left: 30%;
    transform: rotate(45deg);
    z-index: 0;
    animation: rotate 25s infinite linear reverse;
}

.benefits::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: rgba(255, 94, 138, 0.05);
    transform: rotate(30deg);
    top: 15%;
    right: 12%;
    z-index: 0;
    animation: rotate 25s infinite linear;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefit-item {
    display: flex;
    margin-bottom: 40px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-number {
    font-size: 34px;
    background: #ff5e8a29;
    border-radius: 20px 20px 6px 20px;
    height: max-content;
    min-width: 55px;
    padding: 4px;
    height: 51px;
    font-weight: 700;
    color: #ff5e8ab8;
    /* opacity: 0.3; */
    margin-right: 20px;
    line-height: 1;
}

.benefit-info h3 {
    font-size: 22px;
    margin-bottom: 0px;
    color: #5d3765;
}

.benefit-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.benefits-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}



.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #5d3765;
}

#precios {
    position: relative;
    background-color: #faf3f5;
    padding-top: 190px; /* Increased padding to accommodate the diagonal cut */
    padding-bottom: 100px;
}

#precios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px; /* Height of the diagonal cut */
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
    z-index: 1;
}

.price {
    font-size: 20px;
    margin-bottom: 0px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 16px;
    color: #666;
}

.pricing-header p {
    color: #666;
}

.price-clp {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.pricing-features ul li i {
    margin-right: 10px;
}

.pricing-features ul li .fa-check {
    color: var(--success-color);
}

.pricing-features ul li .fa-times {
    color: var(--danger-color);
}

.pricing-footer {
    text-align: center;
}

/* Clients Section */
.clients {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.client-logo {
    flex: 0 0 auto;
    max-width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
}

@media (max-width: 768px) {
    .client-logos {
        gap: 30px;
    }
    
    .client-logo {
        max-width: 140px;
        height: 80px;
    }
    
    .client-logo img {
        max-height: 60px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background-color: rgba(255, 94, 138, 0.05);
    border-radius: 20px 20px 6px 20px;
    top: 15%;
    left: 7%;
    z-index: 0;
    animation: pulse 11s infinite ease-in-out;
}

.contact::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(255, 94, 138, 0.04);
    bottom: 20%;
    right: 10%;
    transform: rotate(30deg);
    z-index: 0;
    animation: floatHorizontal 16s infinite ease-in-out;
}

.contact {
    position: relative;
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Panel (Left side) */
.contact-info-panel {
    background-color: #ff5e8a; /* Turquoise color from the image */
    color: #fff;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-info-panel h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-panel p {
    margin-bottom: 40px;
    font-size: 16px;
    opacity: 0.9;
    max-width: 80%;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 20px;
    margin-right: 15px;
}

.contact-info-item p {
    margin-bottom: 0;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #fff;
    color: #ff5e8a;
}

/* Decorative circles in the background */
.contact-bg-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -30px;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 50px;
    right: 50px;
}

/* Contact Form Panel (Right side) */
.contact-form-panel {
    padding: 40px;
    background-color: #fff;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff5e8a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 191, 166, 0.2);
    background-color: #fff;
}

.btn-send-message {
    background-color: #ff5e8a;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-send-message:hover {
    background-color: #ff5e8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 191, 166, 0.3);
}

/* Responsive Design for Contact Section */
@media (min-width: 768px) {
    .contact-card {
        flex-direction: row;
        min-height: 600px;
    }
    
    .contact-info-panel {
        flex: 0 0 40%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .contact-form-panel {
        flex: 0 0 60%;
    }
}

@media (max-width: 767px) {
    .contact-info-panel {
        padding: 30px;
    }
    
    .contact-form-panel {
        padding: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .social-icons {
        margin-top: 20px;
    }
    
    .contact-info-panel p {
        max-width: 100%;
        margin-bottom: 25px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: #fff;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    margin-top: 0;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgb(255 94 138) 15%, rgb(153 58 84) 100%);
    padding: 80px 0 30px;
}

footer a, p, h3, i{
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo img {
   max-width: 200px;
   filter: brightness(0) invert(1);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 0px;
        width: 95%;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }
    
    .benefits-image {
        order: -1;
        margin-bottom: 40px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    nav.active {
        display: block;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        min-height: 80vh;
        background-color: #fffffff2;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    nav.active ul {
        flex-direction: column;
    }
    
    nav.active ul li {
        margin: 10px 0;
    }

      
    nav.active ul li a {
        color: #5d3765 !important;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .form-group {
        width: 100%;
        margin-right: 0;
    }
    .hero {
        height: max-content;
    }

    .hero-content-centered h1 {
        font-size: 38px !important;
    }

    .hero-content-centered p{
        font-size: 16px !important;
    }

    .cta-buttons{
        font-size: .9rem;
    }

    .cta-buttons a{
        padding: 12px 18px;
        display: flex;
        align-items: center;
    }

    .section-header h2{
        font-size: 1.7rem !important;
        line-height: 1.9rem !important;
        margin-bottom: 10px;
    }

    .section-header{
        margin-bottom: 30px !important;
    }

    .section-header p{
        font-size: 1rem !important;
    }
    .tab-btn{
        padding: 10px 15px !important;
        font-size: 14px !important;
    }
    .features-circle{
        padding: 0px !important;
    }
    .feature-text p{
        font-size: 12px !important;
    }
    .benefits{
        padding: 0 !important;
    }
    .benefit-info h3{
        font-size: 1.1rem !important;
        line-height: 1.3rem;
    }
    .benefit-info p{
        font-size: .9rem !important;
    }

    #precios{
        padding-top: 152px;
        padding-bottom: 20px;
    }
    .contact{
        padding: 48px 0;
    }
    .pricing-features ul li{
        margin-bottom: 10px !important;
    }
}

