* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

:root {
    --primary-color: #FFA000;
    --secondary-color: #2C3E50;
    --text-color: #333333;
    --light-color: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}


.loading-text {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: 500;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.loading-status {
    font-size: 18px;
    letter-spacing: 3px;
    opacity: 0.9;
    animation: blink 1.5s ease-in-out infinite;
}

.company-name {
    font-size: 32px;
    letter-spacing: 6px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #FFA000;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.8),
                 0 0 40px rgba(255, 165, 0, 0.4);
}

.path {
    stroke: #fff;
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -10;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1))
           drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.path {
    stroke: #FFA000;
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: sweep 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
}

@keyframes sweep {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -125px;
    }
}

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

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

.whatsapp-container {
    position: fixed;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    right: 20px; /* Default position for smaller screens */
}

.whatsapp-text {
    color: #fffdfd;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Agregar will-change para optimizar animaciones */


.whatsapp-float {
    will-change: transform;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(13, 255, 5, 0.329);
    transition: all 0.3s ease;
    background: #25d3652a;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(13, 255, 5, 0.45);
}

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

/* Apply centered positioning for wider screens */
@media (min-width: 1440px) { /* Adjust breakpoint as needed */
    .whatsapp-container {
right: calc(50% - 700px + 20px);
    }
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

