html {
    font-size: 16px;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/Roboto-VariableFont_wdth,wght.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

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

section h2 {
    font-size: 1.8rem;
}

body {
    background-color: #040714;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
	color: #fff;
}

main {
    display: flex;
    flex-direction: column;
	gap: 60px;
}

@view-transition {
    navigation: auto;
}

@keyframes zoom-out-blur {
    from {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }

    to {
        transform: scale(0.9);
        opacity: 0;
        filter: blur(10px);
    }
}

@keyframes zoom-in-clear {
    from {
        transform: scale(1.1);
        opacity: 0;
        filter: blur(10px);
    }

    to {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

::view-transition-old(main),
::view-transition-new(main) {
    animation-duration: 0.6s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

::view-transition-old(main) {
    animation-name: zoom-out-blur;
}

::view-transition-new(main) {
    animation-name: zoom-in-clear;
}

.hello-world-link {
    color: yellow;
    transition: color 0.2s ease;
}

.hello-world-link:hover {
    color: #CCCC00;
}

.hero-container {
	display: flex;
	flex-direction: column;
}

/*Header->*/

.main_logo {
	width: 45px;
  	height: 45px;
}

header {
    flex-shrink: 0;
}

.topnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #5800FF;
    padding: 20px;
    color: white;
}

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

.logo-titulo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #040714;
    color: #FFF;
    text-decoration: none;
    transition: background-color 0.2s ease;
	cursor: pointer;
}

.social-icon:hover {
    background-color: #4B5165;
}

/*<-Header*/

/*Footer->*/

.footer {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #0E0B14;
    color: #FFF;
}

.footer ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.footer ul li {
    margin: 1rem;
    box-sizing: border-box;
}

.footer a {
    color: #FFF;
    text-decoration: none;
}

.footer p {
    width: 100%;
}

#footer-logo {
    width: 100%;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#footer-politics {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1.5rem);
    list-style: none;
}

#footer-actions li a:hover{
	color: #FF1A75ff;
}

#footer-politics li a:hover{
	color: #FF1A75ff;
}

.footer-icons:hover {
  	fill: #FF1A75;
  	transition: fill 0.2s;
    transform: translateY(-2px);
}

/*<-Footer*/

/*Carousel->*/

.responsive-two-columns {
    display:flex;
    flex-wrap:wrap;
}

.responsive-two-columns > * {
    width:100%;
    padding:40px;
}

@media (min-width:768px) and (orientation: portrait) {
  	.responsive-two-columns > * {
    	width:50%;
  	}
	.responsive-two-columns{
		max-height: 35vh;
	}
	.carousel-container-page1{
		max-height: 35vh;
	}
}

@media (min-width:400px) and (orientation: landscape) {
    .responsive-two-columns > * {
        width:50%;
    }
}

#carousel-list-container {
    width: 100%;
    top: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 999;
    box-sizing: border-box;
}

#carousel-list-container h2 {
    padding: 20px;
    font-size: 2rem;
    font-weight: 400;
    color: #FFF;
    box-sizing: border-box;
}

#carousel-list-container h3 {
    padding: 1rem;
    margin: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(0.5rem, 2vw, 1.5rem);
    font-size: clamp(1.2rem, 0.4rem + 1.2vw, 3rem);
    color: #FFF;
    box-sizing: border-box;
    background-color: #0A0F1F;
    border-radius: 6px;
}

#carousel-list-container h3 mark {
    background: none;
    color: yellow;
    font-weight: 400;
}

#carousel-list-container h3 p {
    color: #FFF;
    font-weight: 400;
}

#carousel-list-container h3 a {
    color: yellow;
    font-weight: 400;
}

#carousel-list {
    list-style: none;
}

.carousel-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.carousel {
    position: relative;
    width: 100%;
    margin: auto;
    columns: 1;
    block-size: 10lh;
    min-height: 65vh;
    overflow: hidden;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
}

.carousel::column {
    scroll-snap-align: center;
}

.carousel__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fade 16s infinite;
    animation-fill-mode: both;
}

.carousel__slide:nth-child(1) {
    animation-delay: 0s;
}

.carousel__slide:nth-child(2) {
    animation-delay: 4s;
}

.carousel__slide:nth-child(3) {
    animation-delay: 8s;
}

.carousel__slide:nth-child(4) {
    animation-delay: 12s;
}

@keyframes fade {
    0%     { opacity: 0; }
    6.25%  { opacity: 1; }
    18.75% { opacity: 1; }
    25%    { opacity: 0; }
    100%   { opacity: 0; }
}

.imagen {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mask-image: linear-gradient(to bottom, #040714 80%, transparent);
}

@media (max-width: 768px) {
    .imagen {
        max-height: 50dvh;
        width: 100%;
    }

    .carousel {
        min-height: 55dvh;
    }
}

/*<-Carousel*/

/*Selector->*/

.club-selector {
    position: relative;
    width: 200px;
    font-family: sans-serif;
    border-radius: 6px;
    padding: 1em;
    user-select: none;
}

.club-selector h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #FFF;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
	background-color: #3A3F50;
    padding: 1rem;
    border-radius: 6px;
  	transition: background-color 0.2s ease, transform 0.2s ease;
}

.club-selector h4:hover {
  	background-color: #4B5165;
  	transform: scale(1.05);
}

.club-selector h4::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #FFF;
    transition: transform 0.3s ease;
    margin-right: 1rem;
}

.club-selector.open h4::after {
    transform: translateY(-50%) rotate(180deg);
}

.club-selector ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: none;
    position: absolute;
	flex-direction: column;
    left: 0;
    right: 0;
    z-index: 10;
}

.club-selector.open ul {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	border-radius: 6px;
	background-color: #FFF;
	max-height: 50vh;
	overflow-y: auto;
	overflow-x: hidden; 
	scroll-behavior: smooth;
}

.club-selector.open ul::-webkit-scrollbar {
  	width: 8px;
}

.club-selector.open ul::-webkit-scrollbar-track {
  	background: #f0f0f0;
  	border-radius: 10px;
}

.club-selector.open ul::-webkit-scrollbar-thumb {
  	background: #888;
  	border-radius: 10px;
}

.club-selector.open ul::-webkit-scrollbar-thumb:hover {
  	background: #555;
}

.club-selector a {
	font-weight: 400;
	text-decoration: none;
	width: 100%;
    color: #222;
    padding: .8rem;
    padding-left: 1rem;
    transition: background 0.2s;
    border-radius: 8px;
    box-sizing: border-box;
	white-space: nowrap;
}

.club-selector a:last-child {
    border-bottom: none;
}

.club-selector a:hover {
	background-color: #DDDDDD;
	border-radius: 0px;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 16px; /* espacio para el icono */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/*<-Selector*/

/*Questions*/

@media (width >= 640px) {
    .section-politics {
        grid-column: 1 / -1;
    }

    .section-politics > * {
        width: fit-content;
        max-width: 66.666%;
    }
}

.section-politics {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0px 40px;
  	flex: 1;
	width: 100%;
}

.section-politics h2 {
	margin-bottom: 30px;
	text-align: center;
}

.section-politics ul li{
	margin-left: 3rem;
	padding-bottom: 1rem;
}

.section-politics ul h3 {
	margin-bottom: 1rem;
	margin-top: 2rem;
	font-weight: 400;
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.7);
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.section-politics ul p {
	line-height: 2rem;
	font-size: 1rem;
	font-weight: 400;
}

.tab {
	position: relative;
}

.tab input {
	position: absolute;
	opacity: 0;
	z-index: -1;
}

.tab__content {
	color:white;
	max-height: 0;
	overflow: hidden;
	transition: all 0.35s;
}

.tab input:checked ~ .tab__content {
	max-height: 400rem;
}

.accordion {
	color: #5800FF;
	border: 0.5px solid;
	border-radius: 0.5rem;
	overflow: hidden;
}

.tab__label,
.tab__close {
	display: flex;
	color: white;
	background: #5800FF;
	cursor: pointer;
}

.tab__label {
	justify-content: space-between;
	padding: 1rem;
}

.tab__label::after {
	content: "\276F";
	width: 1em;
	height: 1em;
	text-align: center;
	transform: rotate(90deg);
	transition: all 0.35s;
}

.tab input:checked + .tab__label::after {
	transform: rotate(270deg);
}

.tab__content p {
	color: white;
	margin: 0;
	padding: 1rem;
}

.tab__close {
	justify-content: flex-end;
	padding: 0.5rem 1rem;
	font-size: 1rem;
}

.accordion--radio {
	--theme: white;
}

.tab input:not(:checked) + .tab__label:hover::after {
	animation: bounce .5s infinite;
}

@keyframes bounce {
	25% {
	  transform: rotate(90deg) translate(.25rem);
	}
	75% {
	  transform: rotate(90deg) translate(-.25rem);
	}
}

.bg-services-icons{
  	background-color: #4A4E54;
  	display: inline-flex;
  	justify-content: center;
  	align-items: center;
  	border-radius: 50%;
  	padding: 6px;
  	vertical-align: middle;
  	margin-right: 3px;
}

/*<-Questions*/

/*shortcut-section->*/
.shortcut-section {
  	display: flex; 
  	flex-wrap: wrap; 
  	gap: 10px; 
  	justify-content: center; 
  	align-items: center;
	padding: 0px 40px;
}

.short-card {
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	width: 140px;
  	padding: 16px;
  	border-radius: 12px;
  	background-color: #3A3F50;
  	text-decoration: none;
  	color: white;
  	transition: background-color 0.2s ease;
}

.short-card:hover {
  	background-color: #4B5165;
}

.avatar {
  	width: 64px;
  	height: 64px;
  	background-color: #444A57;
  	border-radius: 50%;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	margin-bottom: 12px;
}

.avatar .material-symbols-outlined {
  	font-size: 35px;
  	color: white;
}

.short-label {
  	font-size: 0.85rem;
  	font-weight: 500;
  	text-align: center;
}
/*<-shortcut-section*/

/*escudos-section->*/

.escudos-section {
  	display: flex;  
  	gap: 30px; 
  	justify-content: center; 
  	align-items: center; 
  	flex-direction: column;
  	padding: 0px 40px;
}

@keyframes scroll {
  	0% {
    	transform: translateX(0);
  	}
  	100% {
    	transform: translateX(calc(-250px * 6));
  	}
}

/* Slider container */
.slider {
  	background: #040714;
  	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
  	height: 100px;
  	margin: auto;
  	overflow: hidden;
  	position: relative;
  	width: 100%;
}

/* Gradientes laterales */
.slider::before,
.slider::after {
  	content: "";
  	position: absolute;
  	width: 200px;
  	height: 100px;
  	z-index: 2;
  	background: linear-gradient(to right, rgba(4,7,20,1) 0%, rgba(4,7,20,0) 100%);
}

.slider::before {
  	top: 0;
  	left: 0;
}

.slider::after {
  	top: 0;
  	right: 0;
  	transform: rotateZ(180deg);
}

/* Track (contenedor de slides) */
.slider .slide-track {
  	display: flex;
  	width: calc(300px * 8);
  	animation: scroll 40s linear infinite;
}

/* Cada slide */
.slider .slide {
  	height: 100px;
  	width: 250px;
  	display: flex;
  	align-items: center;
  	justify-content: center;
}

/* Imágenes (escudos) */
.slider .slide img {
  	max-height: 80px;
  	max-width: 100%;
  	object-fit: contain;
}

@media (orientation: portrait) {
	
	.carousel__slide {
		width: 100%;
		height: auto;
	}

}

/*<-escudos-section*/

/*sections animation->*/

@keyframes show {
	from {
		opacity: 0.3;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.escudos-section,
.comparison-section,
.services-section,
.how-section {
	view-timeline-name: --reveal;

	animation-name: show;
	animation-fill-mode: both;
	animation-timing-function: ease-out;

	animation-timeline: --reveal;
	animation-range: entry 25% cover 50%;
}

/*<-sections animation*/

/*cta-section->*/

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #5800FF;
    color: white;
    text-align: center;
    gap: 30px;
}

.cta-section p {
    max-width: 850px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

/* Primary */

.cta-button-primary {
    background-color: white;
    color: #5800FF;
}

.cta-button-primary:hover {
    background-color: #e5e5e5;
}

/* Secondary */

.cta-button-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cta-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .cta-button {
        width: 100%;
        box-sizing: border-box;
    }
}

/*<-cta-section*/

/*comparison-section->*/

.comparison-section {
    padding: 60px 40px;
    background-color: #5800FF;
    color: white;
}

.comparison-header {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-header h2 {
    margin: 0 0 15px;
    line-height: 1.1;
}

.comparison-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.comparison-card {
    padding: 32px;
    border-radius: 20px;
    background-color: white;
    border: 1px solid #e7e7e7;
}

.comparison-card-primary {
    border: 2px solid white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.comparison-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.comparison-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background-color: #5800FF;
    color: white;
}

.comparison-icon-secondary {
    background-color: #f1f1f1;
    color: #777;
}

.comparison-label {
    display: block;
    margin-bottom: 3px;
    color: #777;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-card h3 {
    margin: 0;
    font-size: 1.6rem;
}

.comparison-card-primary h3 {
    color: #5800FF;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 28px;
    color: #444;
    font-size: 1rem;
    line-height: 1.4;
}

.comparison-check,
.comparison-cross {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}

.comparison-check {
    background-color: #eee9ff;
    color: #5800FF;
}

.comparison-cross {
    background-color: #f1f1f1;
    color: #888;
}

.comparison-check svg,
.comparison-cross svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 700px) {

    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .comparison-card {
        padding: 25px 22px;
    }

    .comparison-card-primary {
        order: -1;
    }
}

/*<-comparison-section*/

/*services-section->*/

.services-section {
    padding: 0px 40px;
    background-color: #040714;
    color: white;
}

.services-header {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.services-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 13px;
    border-radius: 100px;
    background-color: rgba(88, 0, 255, 0.12);
    border: 1px solid rgba(88, 0, 255, 0.3);
    color: #9d7cff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.services-header h2 {
    margin: 0 0 16px;
    line-height: 1.1;
}

.services-header p {
    margin: 0;
    color: #9da2b3;
    font-size: 1rem;
    line-height: 1.6;
}


/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(230px, auto));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}


/* CARDS */

.service-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 18px;
    background: #0a0e1d;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(88, 0, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}


/* DISTRIBUCIÓN */

.service-card:nth-child(1) {
    grid-column: span 1;
}

.service-card:nth-child(2) {
    grid-column: span 2;
    grid-row: span 2;
}

.service-card:nth-child(3) {
    grid-column: span 1;
}

.service-card:nth-child(4) {
    grid-column: span 1;
}

.service-card:nth-child(5) {
    grid-column: span 1;
}


/* FEATURED */

.service-card-featured {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(88, 0, 255, 0.28),
            transparent 45%
        ),
        #0a0e1d;
    border-color: rgba(88, 0, 255, 0.45);
}

.service-featured-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    top: -120px;
    right: -100px;
    border-radius: 50%;
    background: #5800FF;
    filter: blur(100px);
    opacity: 0.25;
    pointer-events: none;
}

.service-featured-label {
    display: inline-block;
    width: fit-content;
    margin: 20px 0 10px;
    color: #9d7cff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ICON */

.service-icon {
    position: relative;
    z-index: 1;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(88, 0, 255, 0.12);
    border: 1px solid rgba(88, 0, 255, 0.25);

    color: #8d6cff;
}

.service-icon svg {
    width: 22px;
    height: 22px;
}


/* TEXT */

.service-card h3 {
    position: relative;
    z-index: 1;

    margin: 22px 0 10px;

    font-size: 1.3rem;
    line-height: 1.2;
}

.service-card p {
    position: relative;
    z-index: 1;

    margin: 0;

    color: #9298aa;
    font-size: 1rem;
    line-height: 1.65;
}

.service-card p + p {
    margin-top: 12px;
}

.service-card strong {
    color: #d8d3ff;
}


/* FEATURED TYPOGRAPHY */

.service-card-featured h3 {
    font-size: 1.6rem;
}

.service-card-featured p {
    max-width: 600px;
    font-size: 1rem;
}


/* RESPONSIVE */

@media (max-width: 850px) {

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
        grid-row: auto;
    }

    .service-card:nth-child(2) {
        grid-column: span 2;
        grid-row: auto;
    }
}


@media (max-width: 600px) {
    .services-section {
        padding: 0px 40px;
    }

    .services-header p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
        grid-row: auto;
    }

    .service-card {
        padding: 25px;
    }

    .service-card-featured {
        min-height: 300px;
    }
}

/*<-services-section*/

/*how-section->*/

.how-section {
    padding: 60px 40px;
    background-color: #5800FF;
    color: white;
}

.how-container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: center;

    max-width: 1150px;
    margin: 0 auto;
}


/* IMAGEN */

.how-image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 24px;
    background-color: #040714;
}

.how-image img {
    width: 100%;
    height: 100%;
    min-height: 620px;

    display: block;

    object-fit: cover;
}


/* Overlay sobre imagen */

.how-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4, 7, 20, 0.05) 40%,
            rgba(4, 7, 20, 0.55) 100%
        );

    pointer-events: none;
}


/* Badge */

.how-image-badge {
    position: absolute;
    z-index: 2;
    left: 22px;
    bottom: 22px;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 10px 15px;

    border-radius: 100px;

    background: rgba(4, 7, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.how-status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background-color: #5dff9a;
    box-shadow: 0 0 10px rgba(93, 255, 154, 0.8);
}


/* CONTENIDO */

.how-tag {
    display: inline-block;

    margin-bottom: 13px;

    padding: 6px 12px;

    border-radius: 100px;

    background-color: rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.9);

    font-size: 0.85rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.how-content h2 {
    margin: 0 0 15px;
    line-height: 1.1;
}

.how-intro {
    max-width: 550px;

    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 1rem;
    line-height: 1.6;
}


/* PASOS */

.how-steps {
    display: flex;
    flex-direction: column;
}

.how-step {
    position: relative;

    display: flex;
    gap: 18px;

    padding-bottom: 25px;
}


/* Línea vertical */

.how-step:not(.how-step-last)::after {
    content: "";

    position: absolute;

    left: 16px;
    top: 37px;
    bottom: 0;

    width: 1px;

    background-color: rgba(255, 255, 255, 0.2);
}


/* Número */

.how-step-number {
    position: relative;
    z-index: 1;

    width: 33px;
    height: 33px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background-color: white;
    color: #5800FF;

    font-size: 0.9rem;
    font-weight: 800;
}


/* Texto */

.how-step-content {
    padding-top: 2px;
}

.how-step-content h3 {
    margin: 0 0 5px;

    font-size: 1.1rem;
    line-height: 1.3;
}

.how-step-content p {
    max-width: 500px;

    margin: 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 1rem;
    line-height: 1.55;
}


/* RESPONSIVE */

@media (max-width: 850px) {

    .how-container {
        grid-template-columns: 1fr;
    }

    .how-image {
        min-height: 420px;
    }

    .how-image img {
        min-height: 420px;
    }

    .how-content {
        max-width: 650px;
        margin: 0 auto;
    }

}


@media (max-width: 550px) {

    .how-section {
        padding: 60px 40px;
    }

    .how-image {
        min-height: 300px;
        border-radius: 18px;
    }

    .how-image img {
        min-height: 300px;
    }

    .how-image-badge {
        left: 15px;
        bottom: 15px;

        padding: 8px 12px;

        font-size: 0.85rem;
    }

    .how-intro {
        margin-bottom: 30px;
    }

    .how-step {
        gap: 14px;
        padding-bottom: 22px;
    }

    .how-step-number {
        width: 31px;
        height: 31px;
    }

    .how-step:not(.how-step-last)::after {
        left: 15px;
        top: 35px;
    }

    .how-step-content h3 {
        font-size: 1rem;
    }

    .how-step-content p {
        font-size: 1rem;
    }

}

/*<-how-section*/

.numero-camaras {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 2rem;
}

.numero-camaras span {
    display: block;
}

.numero-camaras span::before {
    content: "•";
    margin-right: 0.6rem;
}
