* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/*-----FONTS-----*/
@font-face {
  font-family: 'Inter-Light';
  src: url('../fonts/Inter-Light.woff2') format('woff2'),
    url('../fonts/Inter-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
 
@font-face {
  font-family: 'Inter-regular';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
    url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Medium';
  src: url('../fonts/Inter-Medium.woff2') format('woff2'),
    url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Bold';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
    url('../fonts/Inter-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-ExtraLight';
  src: url('../fonts/Inter-ExtraLight.woff2') format('woff2'),
    url('../fonts/Inter-ExtraLight.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}


body {
  font-family: 'Inter', sans-serif;
}

:root {
  --negro: black;
  --blanco: white;
  --azul: #2B49FF;
  --espaciado-base: 16px;

  /* Fuentes */
  --font-light: 'Inter-Light', sans-serif;
  --font-regular: 'Inter-regular', sans-serif;
  --font-medium: 'Inter-Medium', sans-serif;
  --font-bold: 'Inter-Bold', sans-serif;

  /* Tamaños de fuente */
  --font-size-title: 60px;
  --font-size-subtitle: 35px;
  --font-size-parrafo: 20px;
}

/*SELECCIÓN DE TEXTO*/
::selection {
  background: var(--azul);
  color: white;
}

::-moz-selection {
  background: var(--azul);
  color: white;
}



/*SERVICIOS*/
.custom-cursor {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 255, 0.8);
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 10px;
    text-align: center;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1000;
    user-select: none;
}

.section2 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 40px;
    background-color: #fff;
    position: relative;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 200px;
    width: 100%;
    max-width: 1200px;
}

.circles-container {
    position: relative;
    width: 460px;
    height: 460px;
    min-width: 460px;
    min-height: 460px;
    border-radius: 50%;
}

.circle {
    position: absolute;
    background-color: #fff;
    border: 2px solid var(--azul);
    border-radius: 50%;
    color: var(--azul);
    font-size: 16px;
    line-height: 1.2;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition:
        background-color 0.3s,
        color 0.3s,
        transform 0.6s ease,
        width 0.3s ease,
        height 0.3s ease,
        font-size 0.3s ease,
        left 0.6s ease,
        top 0.6s ease;
    box-sizing: border-box;
    z-index: 1;
    word-break: break-word;
    transform-origin: center center;
}

.circle.small {
    font-family: var(--font-regular);
    width: 120px;
    height: 120px;
    font-size: 15px;
    padding: 12px 8px;
}

.circle.large {
    font-family: var(--font-regular);
    width: 140px;
    height: 140px;
    font-size: 17px;
    padding: 15px 10px;
}

.circle.active {
    font-family: var(--font-medium);
    font-weight: normal;
    width: 220px !important;
    height: 220px !important;
    background-color: var(--azul);
    color: white;
    font-size: 25px !important;
    padding: 25px 15px !important;
    z-index: 20;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-family: var(--font-bold);
    font-weight: normal;
    font-size: 40px;
    color: var(--azul);
}

.section2-subtitulo {
    font-family: var(--font-bold);
    font-weight: normal;
    padding: 15px 0px 15px 0px;
    font-size: 25px;
    color: var(--azul);
}

.text-content p {
    font-family: var(--font-regular);
    color: var(--azul);
    font-size: 20px;
    padding: 15px 0px 15px 0px;
}

.text-container {
    display: none;
}

.text-container.active {
    display: block;
}

.text-container ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.text-container ul li {
    font-family: var(--font-regular);
    margin-bottom: 6px;
    font-size: 20px;
    color: var(--azul);
}

@media (max-width: 768px) {

    /* Ocultamos cursor personalizado en responsive */
    .custom-cursor {
        display: none !important;
    }

    .content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        /* Más espacio vertical en móvil */
    }

    .circles-container {
        width: 280px;
        height: 280px;
        min-width: 280px;
        min-height: 280px;
    }

    .circle,
    .circle.small,
    .circle.large,
    .circle.active {
        width: 70px !important;
        height: 70px !important;
        font-size: 12px !important;
        padding: 8px 5px !important;
    }

    .circle.active {
        width: 140px !important;
        height: 140px !important;
        font-size: 14px !important;
        padding: 10px 6px !important;
        background-color: var(--azul);
        color: white;
        z-index: 10;
        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .text-content {
        padding-top: 20px;
        max-width: 100%;
    }

    .text-container h2 {
        font-size: 24px;
    }

    .text-container p,
    .text-container ul {
        font-size: 15px;
    }

    .section2 {
        padding: 20px;
    }

    .text-container ul li {
        margin-bottom: 6px;
        font-size: 15px;
    }

}