/* Global styles - Shared components and base styles across all pages */

/* GLOBAL BASE */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Seravek', 'Plus Jakarta Sans', sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--color-bg);
	color: var(--color-text);
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

.container-full {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 3vw;
}

.section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, #ffffff08, transparent 30%);
	pointer-events: none;
}

.light {
	background: var(--color-bg);
}

h2 {
	font-size: var(--fs-xl);
	margin-bottom: 20px;
}

.section p {
	color: var(--color-text-secondary);
	line-height: 1.7;
	max-width: 950px;
}

.section-heading {
	margin-bottom: 70px;
}

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

.section-heading h2 {
	font-size: var(--fs-h1-lg);
	line-height: 1.1;
	margin-bottom: 22px;
}

.section-heading p {
	max-width: 760px;
	margin: auto;
}

.split-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 70px;
	align-items: center;
}

.split-layout h2,
.section-heading h2 {
	font-size: var(--fs-h5);
	line-height: 1.15;
	letter-spacing: -1px;
	max-width: 780px;
}

.hero {
	padding: 140px 0;
	text-align: center;
	background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg) 100%);
	position: relative;
	isolation: isolate;
}

.hero::after {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	background: var(--color-lime-highlight);
	filter: blur(120px);
	top: -120px;
	right: -120px;
	z-index: 0;
	pointer-events: none;
}

.hero > * {
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: var(--fs-h2);
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.hero p {
	color: var(--color-text-secondary);
	max-width: 700px;
	margin: auto;
	font-size: var(--fs-base);
}

.inner-hero {
	padding: 100px 0;
}

.eyebrow {
	display: inline-block;
	color: var(--color-lime-highlight);
	font-size: var(--fs-xs-lg);
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.gradient-text {
	background: linear-gradient(135deg, var(--color-lime-highlight), var(--color-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* SHARED COMPONENTS */
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.card {
	background: var(--gradient-card);
	padding: 28px;
	border-radius: 12px;
	transition: 0.3s ease;
	border: 1px solid var(--border-default);
}

.card:hover {
	border-color: var(--color-orange);
	transform: translateY(-4px);
}

.card h3 {
	margin-bottom: 10px;
}

.card p {
	color: var(--color-text-secondary);
	line-height: 1.6;
}


.premium-card {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: flex-start;
	background: linear-gradient(145deg, var(--color-bg), var(--color-bg));
	border: 1px solid var(--overlay-white);
	border-radius: 22px;
	padding: 40px;
	box-shadow: 0 24px 80px var(--shadow-accent);
}

.premium-card h3 {
	flex-basis: auto;
	margin: 0;
	line-height: 1.3;
}

.premium-card p {
	flex-basis: 100%;
	margin: 0;
	padding-bottom: 4px;
}

.premium-card p::after {
	content: "»»»»»»»";
	display: block;
	margin-top: 14px;
	color: var(--color-lime-highlight);
	font-size: var(--fs-lg);
	letter-spacing: -2px;
	font-weight: 600;
}


.card-number-lime { /* card number color lima lime-hightlight */
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	margin: 0;
	filter: var(--filter-lime);
}

.card-number-primary {/* card number color morado*/
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	margin: 0;
	filter: var(--filter-primary);
}

.card-number-orange {/* card number color orange*/
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	margin: 0;
	filter: var(--filter-orange);
}

.btn {
	background: var(--color-orange);
	padding: 12px 20px;
	border-radius: 8px;
	color: white !important;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	transition: 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn:hover {
	opacity: 0.9;
}

.primary-btn {
	background: var(--color-lime-highlight);
	color: var(--color-bg);
	border: 1px solid var(--color-lime-highlight);
}

.primary-btn:hover {
	background: var(--color-orange);
	color: var(--color-text);
	border-color: var(--color-orange);
}

.hero-btn {
	padding: 14px 48px;
	font-size: var(--fs-sm-lg);
}

/* HEADER AND NAVIGATION */
.header {
	background: var(--overlay-ink);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--overlay-primary);
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-weight: 700;
	font-size: var(--fs-base);
}

nav a {
	color: var(--color-text-secondary);
	margin-left: 20px;
	text-decoration: none;
	transition: 0.3s;
}

.lang-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* =========================
   THEME CONTROL (FINAL)
========================= */

.theme-control {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.12);

    transition: all .3s ease;
}

.theme-control:hover {
    transform: translateY(-2px);
}

/* Texto + icono */
.theme-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* =========================
   SWITCH
========================= */

.theme-switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Track */
.slider {
    position: absolute;
    inset: 0;

    cursor: pointer;

    background: #374151;

    border-radius: 999px;

    transition: all .3s ease;
}

/* Circle */
.slider::before {
    content: "";

    position: absolute;

    width: 22px;
    height: 22px;

    left: 3px;
    top: 3px;

    background: #fff;

    border-radius: 50%;

    transition: all .3s ease;
}

/* ACTIVE STATE */
.theme-switch input:checked + .slider {
    background: #84cc16;
}

.theme-switch input:checked + .slider::before {
    transform: translateX(24px);
}

/* =========================
   LIGHT THEME ADAPTATION
========================= */

.light-theme .theme-control {
    background: rgba(0,0,0,.05);
    border-color: rgba(0,0,0,.1);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .theme-control {
        padding: 6px 10px;
        gap: 8px;
    }
}
.lang-icon {
	width: 16px;
	height: 16px;
	display: inline-block;
}

nav a:hover {
	color: var(--color-lime-highlight);
}

.logo-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--color-text);
	text-decoration: none;
	font-weight: 800;
	letter-spacing: -0.3px;
}

.site-logo {
	width: 260px;
	height: 60px;
	object-fit: contain;
	display: block;
}

nav a.active {
	color: var(--color-text);
	position: relative;
}

nav a.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(135deg, var(--color-orange), var(--color-orange));
}

nav a.btn.active-btn {
	box-shadow: 0 0 0 1px var(--overlay-accent), 0 12px 30px var(--overlay-accent);
}
.logmine-hero-image {
	position: relative;
	overflow: hidden;
	background: var(--color-bg);
}

.logmine-hero-image .container {
	position: relative;
	z-index: 4;
}

.logmine-hero-image .inner-hero-image-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.88;
	transform: scale(1.02);
	z-index: 1;
}

.logmine-hero-image .inner-hero-image-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 44%, var(--overlay-primary), transparent 26%), linear-gradient(180deg, var(--overlay-black) 0%, var(--overlay-black) 100%), linear-gradient(90deg, var(--overlay-ink-deep) 0%, var(--overlay-ink-deep) 46%, var(--overlay-ink-deep) 100%);
	z-index: 2;
}

.logmine-hero-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(var(--overlay-white) 1px, transparent 1px), linear-gradient(90deg, var(--overlay-white) 1px, transparent 1px);
	background-size: 70px 70px;
	mask-image: linear-gradient(to bottom, black, transparent 80%);
	z-index: 3;
}

.logmine-hero-image::after {
	content: "";
	position: absolute;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: var(--overlay-primary);
	filter: blur(90px);
	left: 14%;
	top: 16%;
	z-index: 3;
	pointer-events: none;
}

.logmine-hero-image h1,
.logmine-hero-image p,
.logmine-hero-image .eyebrow,
.logmine-hero-image .hero-actions {
	position: relative;
	z-index: 4;
}

.logmine-hero-image h1 {
	text-shadow: 0 10px 32px var(--overlay-black);
}

.logmine-hero-image p {
	color: var(--color-text);
	text-shadow: 0 4px 18px var(--overlay-black);
}

/* CONTACT LAYOUT */
.contact-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 70px;
	align-items: flex-start;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	padding: 12px 16px;
	border-radius: 8px;
	border: 1px solid var(--border-default);
	background: rgba(255, 255, 255, 0.05);
	color: var(--color-text);
	font-size: var(--fs-sm);
	transition: 0.3s ease;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
	border-color: var(--color-orange);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--color-lime-highlight);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: var(--color-text-secondary);
}

.contact-form select {
	cursor: pointer;
}

.contact-form textarea {
	min-height: 120px;
	resize: vertical;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-note {
	font-size: var(--fs-xs-md);
	color: var(--color-text-secondary);
	margin-bottom: 16px;
}

.form-alert {
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 16px;
	border: 1px solid;
}

.form-alert.success {
	background: rgba(132, 204, 22, 0.1);
	color: var(--color-success);
	border-color: rgba(132, 204, 22, 0.5);
}

.form-alert.error {
	background: rgba(251, 113, 133, 0.1);
	color: var(--color-error);
	border-color: rgba(251, 113, 133, 0.5);
}

.website-field {
	display: none;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 56px;
	height: 56px;
	background: var(--color-success);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s ease;
	z-index: 999;
}

.whatsapp-float:hover {
	background: var(--color-lime-highlight);
	transform: scale(1.1);
}

.whatsapp-float svg {
	width: 28px;
	height: 28px;
	fill: var(--color-bg);
}

/* GLOBAL RESPONSIVE */

@media (max-width: 768px) {
	.split-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-layout {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.carousel-slide img {
		height: 300px;
	}

	.carousel-overlay h1 {
		font-size: var(--fs-xl-xlg);
	}

	.hero h1 {
		font-size: var(--fs-xl-xlg);
	}

	.section-heading h2 {
		font-size: var(--fs-h3);
	}

	.split-layout h2,
	.section-heading h2 {
		font-size: var(--fs-xl);
	}

	.nav {
		flex-wrap: wrap;
	}

	nav a {
		font-size: var(--fs-xs-lg);
		padding: 6px 12px;
	}
}

@media (max-width: 700px) {
	.section {
		padding: 60px 0;
	}

	.section-heading {
		margin-bottom: 50px;
	}

	.hero {
		padding: 80px 0;
	}

	.carousel-controls,
	.carousel-dots {
		margin-top: 16px;
	}
}

@media (max-width: 600px) {
	.container {
		width: 95%;
	}

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

@media (max-width: 430px) {
	.hero {
		padding: 60px 0;
	}

	.hero h1 {
		font-size: var(--fs-lg-lg);
	}

	.hero p {
		font-size: var(--fs-sm);
	}

	.section-heading h2 {
		font-size: var(--fs-xl);
	}

	.split-layout h2,
	.section-heading h2 {
		font-size: var(--fs-lg);
	}

	.carousel-slide img {
		height: 200px;
	}

	.carousel-overlay h1 {
		font-size: var(--fs-lg-md);
	}

	.btn {
		padding: 10px 24px;
		font-size: var(--fs-xs-md);
	}

	.whatsapp-float {
		width: 48px;
		height: 48px;
		bottom: 20px;
		right: 20px;
	}

	.whatsapp-float svg {
		width: 24px;
		height: 24px;
	}
}
