* {
    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;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

/* WhatsApp button styles - adjusted for mobile-first and text visibility */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999; /* Higher z-index to ensure visibility */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center horizontally */
}

.whatsapp-float {
    will-change: transform;
    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;
}

/* WhatsApp text (resplandor) - hidden by default on mobile */
.whatsapp-text {
    display: none; /* Hide on mobile */
    color: #fffdfd;
    font-size: 12px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    white-space: nowrap; /* Prevent text wrapping */
    pointer-events: none; /* Allow clicks through the text to the button */
    opacity: 0; /* Hidden by default for desktop hover effect */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Desktop styles for WhatsApp button - show text on hover */
@media (min-width: 768px) {
    .whatsapp-container {
        /* Adjust position for desktop if needed, or keep it same as mobile */
        /* For example, if you want it aligned with the content: */
        right: calc(50% - 700px + 20px); /* Using the 1440px breakpoint logic from original CSS, adjust if 700px is not your content width */
    }

    .whatsapp-text {
        display: block; /* Make it block for positioning */
        position: absolute;
        right: 70px; /* Position to the left of the button, adjust as needed */
        bottom: 15px; /* Vertically align with the button */
        transform: translateX(0); /* Reset transform */
    }

    .whatsapp-container:hover .whatsapp-text {
        opacity: 1; /* Show text on hover */
        transform: translateX(-5px); /* Small animation on hover */
    }
}

@media (min-width: 1440px) { /* Original breakpoint, ensures specific right position */
    .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;
}