:root {
    /* Colors from Agente de Riesgo */
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7c3aed;
    --purple-800: #6b21a8;
    --purple-900: #581c87;

    --indigo-50: #eef2ff;
    --indigo-100: #e0e7ff;
    --indigo-500: #6366f1;
    --indigo-600: #4f46e5;
    --indigo-700: #4338ca;
    --indigo-800: #3730a3;

    /* Text and background colors */
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    margin-left: 280px;
    /* Space for sidebar */
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--purple-700) 0%, var(--purple-900) 100%);
    z-index: 1000;
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    align-items: center;
    padding: 2rem 1.5rem;
    background: var(--purple-800);
    border-bottom: 1px solid var(--purple-700);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.sidebar-logo span {
    display: block;
}

.sidebar-logo img {
    display: none;
}

.sidebar-nav {
    padding: 1.5rem 0;
}

.nav-section {
    margin-bottom: 2rem;
}

.nav-section-title {
    padding: 0 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    background: var(--purple-800);
    color: white;
    border-left-color: white;
}

.nav-item i {
    width: 20px;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Main content */
.main-content {
    min-height: 100vh;
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section with Dynamic Ocean Background */
.hero {
    background: url('imagesAR/Dia-1.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    /* reduce gap since there's no image */
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text .highlight {
    background: linear-gradient(135deg, var(--indigo-500), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 800px;
    /* constrain line width */
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    /* center the buttons */
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--indigo-600) 0%, var(--purple-600) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(147, 51, 234, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: white;
    color: var(--purple-700);
    border-color: white;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Features Section */
.features {
    background: var(--bg-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Dynamic Tree Background for Features Section */
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(99, 102, 241, 0.05) 100%);
    z-index: 1;
}

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

.tree-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.tree-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.tree-branch {
    stroke: var(--purple-200);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    animation: growBranch 8s ease-in-out infinite;
}

.tree-branch.branch-1 {
    animation-delay: 0s;
}

.tree-branch.branch-2 {
    animation-delay: 1s;
}

.tree-branch.branch-3 {
    animation-delay: 2s;
}

.tree-branch.branch-4 {
    animation-delay: 3s;
}

.tree-branch.branch-5 {
    animation-delay: 4s;
}

.tree-branch.branch-6 {
    animation-delay: 5s;
}

.tree-leaf {
    fill: var(--purple-300);
    opacity: 0.6;
    animation: leafFloat 6s ease-in-out infinite;
    transform-origin: center;
}

.tree-leaf.leaf-1 {
    animation-delay: 0s;
}

.tree-leaf.leaf-2 {
    animation-delay: 0.5s;
}

.tree-leaf.leaf-3 {
    animation-delay: 1s;
}

.tree-leaf.leaf-4 {
    animation-delay: 1.5s;
}

.tree-leaf.leaf-5 {
    animation-delay: 2s;
}

.tree-leaf.leaf-6 {
    animation-delay: 2.5s;
}

.tree-leaf.leaf-7 {
    animation-delay: 3s;
}

.tree-leaf.leaf-8 {
    animation-delay: 3.5s;
}

.tree-node {
    fill: var(--purple-500);
    opacity: 0.8;
    animation: nodeGlow 4s ease-in-out infinite;
}

.tree-node.node-1 {
    animation-delay: 0s;
}

.tree-node.node-2 {
    animation-delay: 0.8s;
}

.tree-node.node-3 {
    animation-delay: 1.6s;
}

.tree-node.node-4 {
    animation-delay: 2.4s;
}

.tree-node.node-5 {
    animation-delay: 3.2s;
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--purple-400);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 12s linear infinite;
}

.floating-particle.particle-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.floating-particle.particle-2 {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.floating-particle.particle-3 {
    left: 40%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.floating-particle.particle-4 {
    left: 60%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.floating-particle.particle-5 {
    left: 80%;
    animation-delay: 8s;
    animation-duration: 11s;
}

.floating-particle.particle-6 {
    left: 90%;
    animation-delay: 1s;
    animation-duration: 13s;
}

@keyframes growBranch {

    0%,
    100% {
        stroke-dasharray: 0 100;
        opacity: 0.3;
    }

    50% {
        stroke-dasharray: 50 100;
        opacity: 0.7;
    }
}

@keyframes leafFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translate(5px, -8px) rotate(5deg) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-3px, -12px) rotate(-3deg) scale(1.05);
        opacity: 0.6;
    }

    75% {
        transform: translate(8px, -6px) rotate(8deg) scale(1.15);
        opacity: 0.9;
    }
}

@keyframes nodeGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
        filter: drop-shadow(0 0 5px var(--purple-400));
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
        filter: drop-shadow(0 0 15px var(--purple-500));
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) translateX(30px);
        opacity: 0;
    }
}

/* Interactive Flow Diagram Section */
.flow-diagram {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fafbff 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.flow-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.flow-step {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    opacity: 0.7;
    transform: scale(0.95);
}

.flow-step.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--purple-500);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.2);
}

.flow-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.25);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%);
    background-size: 20px 20px;
    animation: shimmer 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flow-step.active .step-icon::before {
    opacity: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100px) translateY(-100px);
    }

    100% {
        transform: translateX(100px) translateY(100px);
    }
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--purple-700);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.step-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-lighter);
    font-size: 0.85rem;
    padding-top: 0;
}

.flow-step.active .step-details {
    max-height: 100px;
    padding-top: 0.75rem;
}

/* Flow Arrows */
.flow-arrow {
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 2rem;
    color: var(--purple-400);
    opacity: 0.6;
    animation: arrowPulse 2s ease-in-out infinite;
}

.flow-step:last-child .flow-arrow {
    display: none;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-50%) translateX(5px);
        opacity: 1;
    }
}

/* Flow Animation */
.flow-progress {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-50%);
    z-index: 1;
}

.flow-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--purple-600), var(--indigo-600));
    transition: width 2s ease;
    border-radius: 2px;
}

.flow-controls {
    text-align: center;
    margin-top: 3rem;
}

.flow-btn {
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.flow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.flow-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Responsiveness for Flow */
@media (max-width: 768px) {
    .process-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .flow-arrow {
        top: auto;
        bottom: -1rem;
        right: 50%;
        transform: translateX(50%) rotate(90deg);
    }

    .flow-progress {
        top: 0;
        left: 50%;
        right: auto;
        bottom: 0;
        width: 4px;
        height: auto;
        transform: translateX(-50%);
    }

    .flow-progress::before {
        width: 100% !important;
        height: 0;
        transition: height 2s ease;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-color: var(--purple-500);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--purple-600);
    font-size: 1rem;
}

/* Screenshots Section */
.platform-screenshots {
    background: var(--bg-light);
    padding: 6rem 0;
}

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

.screenshot-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.screenshot-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
}

.screenshot-content {
    padding: 2rem;
}

.screenshot-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.screenshot-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.screenshot-features {
    list-style: none;
}

.screenshot-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.screenshot-features i {
    color: var(--purple-600);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--purple-700) 0%, var(--indigo-800) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
    background-size: 40px 40px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mobile-header {
    display: none;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h2 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--purple-700);
}

.modal-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--purple-200);
    padding-bottom: 0.5rem;
}

.modal-content ol {
    list-style-position: inside;
    padding-left: 10px;
}

.modal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        margin-left: 0;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        background: var(--purple-800);
        color: white;
    }

    .mobile-header .sidebar-logo {
        font-size: 1rem;
    }

    .mobile-header .sidebar-logo img {
        display: none;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.mobile-open {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        position: static;
        background: transparent;
        color: white;
        border: none;
        padding: 0.5rem;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero {
        padding: 6rem 0 4rem 0;
    }

    .features-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-card {
        margin: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
}