/* Reset básico de estilos */
:root {
    color-scheme: light;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
    font-family: "EurostileExtd";
    src: url("../fonts/Eurostile/Eurostile-Extended-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: "EurostileExtdBlack";
    src: url("../fonts/Eurostile/eurostile_extended_black.ttf") format('truetype');
    font-display: swap;
}

@font-face {
    font-family: "EurostileExtdMedium";
    src: url("../fonts/Eurostile/eurostile-extd-medium.otf");
    font-display: swap;
}

@font-face {
    font-family: "NeueUltraLight";
    src: url("../fonts/Helvetica Neue UltraLight/Helvetica Neue UltraLight.ttf") format('truetype');
    font-display: swap;
}

@font-face {
    font-family: "NeueMedium";
    src: url("../fonts/Helvetica Neue Medium Extended/Helvetica Neue Medium Extended.ttf") format('truetype');
    font-display: swap;
}

@font-face {
    font-family: "NeueRegular";
    src: url("../fonts/HelveticaNeueRegular/HelveticaNeue\ Regular.ttf") format('truetype');
    font-display: swap;
}

@font-face {
    font-family: "PoppinsRegular";
    src: url("../fonts/Poppins/Poppins-Regular.ttf") format('truetype');
    font-display: swap;
}

:root {
    /* ====== Colors ====== */
    --pink-primary-color: #FF1D75;
    --pink-secondary-color: #E61667;
    --violet-primary-color: #A634FC;
    --violet-secondary-color: #8D2DEE;
    --magenta-primary-color: #D545C8;
    --magenta-secondary-color: #BC3EBA;
    --white-primary-color: #FBF9F9;
    --black-primary-color: #0c0c0cba;

    /*===== Font and typography =====*/
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --h4-font-size: 1.2rem;
    --normal-font-size: .938rem;
    --small-font-size: .713rem;
    --smaller-font-size: .575rem;

    /*===== Font weight =====*/
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-super-bold: 900;
    
}

/*===== Margenes =====*/
.m-1 { margin: 1rem; }
.m-2 { margin: 2rem; }
.m-3 { margin: 3rem; }
.m-4 { margin: 4rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mr-1 { margin-right: 1rem; }
.mr-2 { margin-right: 2rem; }
.mr-3 { margin-right: 3rem; }
.mr-4 { margin-right: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.ml-1 { margin-left: 1rem; }
.ml-2 { margin-left: 2rem; }
.ml-3 { margin-bottom: 3rem; }
.ml-4 { margin-bottom: 4rem; }
/*===== Relleno =====*/
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pr-1 { padding-right: 1rem; }
.pr-2 { padding-right: 2rem; }
.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pl-1 { padding-left: 1rem; }
.pl-2 { padding-left: 2rem; }

body {
    margin: 0;
    padding: 0;
}

.bd-container-large {
    margin-left: 5rem;
    margin-right: 5rem;
}

.bd-container-medium {
    margin-left: 2rem;
    margin-right: 2rem;
}

/* Partículas solo dentro del contenedor */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/******  BLOCK NAVBAR *****/
.navbar {
    background-color: white;
    color: var(--pink-primary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    font-family: EurostileExtdMedium;
    height: 80px;
    min-height: 80px;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--pink-primary-color);
    font-size: var(--small-font-size);
    text-decoration: none;
    padding: 4px 6px;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--black-primary-color);
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: var(--white-primary-color);
        position: absolute;
        top: 84px;
        width: 100%;
    }

    .menu-toggle:checked+.menu-icon+.nav-links {
        display: flex;
    }
}

.menu-toggle {
    display: none;
}

/****** END BLOCK NAVBAR *****/

/*===== Titles =====*/
.principal-title {
    font-weight: var(--font-super-bold);
    font-size: var(--h1-font-size);
    line-height: 2.5rem;
    margin: 0.5rem;

}
.title {
    font-weight: var(--font-bold);
    font-size: var(--h2-font-size);
    line-height: 2rem;
    margin: 0.5rem;
}
.subtitle {
    font-weight: var(--font-semi-bold);
    font-size: var(--h3-font-size);
    line-height: 1.5rem;
}
/*===== Fonts types =====*/
.eurostileExtdBlack {
    font-family: EurostileExtdBlack;
}

.eurostileExtdMedium{
    font-family: EurostileExtdMedium;
}

.eurostileExtd {
    font-family: EurostileExtd;
}

.poppinsRegular{
    font-family: PoppinsRegular;
}

.neueMedium{
    font-family: NeueMedium;
}

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

.description-section {
   font-size: var(--h4-font-size);
   line-height: 1.5;
}

.justify {
    text-align: justify;
}

.title-pink {
    color: var(--pink-primary-color);
}

.text-white {
    color: var(--white-primary-color);
}

.center-flex {
    display: flex;
    align-items: center;
}

.justify-center{
    justify-content: center;
}


.column {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.space-evenly {
    justify-content: space-evenly;
}




/******* ********/

.btn-pink {
    background: transparent linear-gradient(270deg, #E61667 0%, #AD2960 100%) 0% 0% no-repeat padding-box;
    display: inline-block;
    text-decoration: none;
    color: white;
    width: auto;
    border: 3px solid transparent linear-gradient(270deg, #E61667 0%, #AD2960 100%) 0% 0% no-repeat padding-box;
    border-radius: 8px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.5s ease-in-out;
}

.btn-pink:hover {
    /*background-color: #E61667;*/
    box-shadow: 0px 3px 30px rgba(230, 22, 103, 0.5);
    color: rgba(255, 255, 255, 1);
}

/* Tamaños */
.btn-small {
    padding: 0 8px;
    font: normal normal 500 8px / 20px EurostileExtd;
    margin: 8px;
}

.btn-normal {
    padding: 0 16px;
    font: normal normal 700 10px / 40px EurostileExtd;
    margin: 12px;
}

.btn-large {
    padding: 0 32px;
    font: normal normal 900 12px / 60px EurostileExtd;
    margin: 16px;
}

.btn-trasparent {
    background-color: transparent;
    display: inline-block;
    text-decoration: none;
    color: #FF1D75;
    width: auto;
    border: 3px solid #E61667;
    border-radius: 8px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.5s ease-in-out;
}

.btn-trasparent:hover {
    box-shadow: 0px 3px 30px rgba(230, 22, 103, 0.5);
}

.paragraph {
   font-size: var(--normal-font-size);
}

.small-font{
    font-size: var(--small-font-size);
}


/*** BTN FLOTANTE ***** */
.btn-contacto-fijo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: none;
  border-radius: 30px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1000;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.btn-contacto-fijo:hover {
  background-color: #f0f0f0;
}

.btn-contacto-fijo span {
  margin-right: 10px;
  opacity: 0;
  white-space: nowrap;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: var(--pink-primary-color);
  font-family: 'PoppinsRegular';
  letter-spacing: 1px;
}

.btn-contacto-fijo img {
  width: 70px;
  transition: transform 0.3s ease;
}

.btn-contacto-fijo:hover span {
  opacity: 1;
  transform: translateX(0);
}

.btn-contacto-fijo:hover img {
  transform: scale(1.1);
}

.type-dics{
    list-style-type: disc;
}
