:root {
    --primary-orange: #FF6B35;
    --secondary-red: #D9534F;
    --white: #FFFFFF;
    --text-dark: #333333;
}

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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    transition: background-image 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100vw;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.circular-slider {
    position: relative;
    width: 500px;
    height: 500px;
    margin-bottom: 20px;
}

.slider-sections {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    transition: transform 0.5s ease;
}

.section {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: inherit; /* Mantiene la forma del fragmento */
}

.section:hover {
    opacity: 0.9;
    cursor: pointer;
}

.section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inherit;
}


.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.section-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.section-label {
    position: absolute;
    transform-origin: center;
    color: white;
    font-size: 10px;
    text-align: center;
    width: 80px;
    opacity: 0.8;
}

.navigation-controls {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.nav-button {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: var(--secondary-red);
}

.current-section-indicator {
    background-color: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    max-width: 300px;
}
/* Estilo para el botón de WhatsApp */
.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    margin: 40px auto 0;
    font-size: 20px;
    font-weight: bold;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 280px;
}

/* Efecto al pasar el mouse */
.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Logo de WhatsApp */
.whatsapp-logo {
    width: 28px;
    height: 28px;
}

/* Asegurarse de que los botones de navegación estén más arriba */
.navigation-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
