:root {
	--color-primary: #1b1c23;
	--color-secondary-pink: #4A90E2;
	--color-secondary-teal: #2EC4B6;
	--color-accent: #FF6B35;
	--color-light: #ffffff;
	--transition: all 0.6s ease;
	--border-radius: 10px;
	--color-primary: #1b1c23;
	--color-secondary-pink: #f578a3;
	--color-secondary-orange: #f59778;
	--color-light: #ffffff;
	--transition: all 0.6s ease;
	--border-radius: 10px;
}

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

html {
	scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo a la izquierda */
header .logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

header .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Menu toggle a la derecha */
header .menu-toggle {
    margin-left: auto;
    z-index: 1001;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--color-light);
	background-color: var(--color-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	background: linear-gradient(135deg, var(--color-primary) 0%, #2a2b35 100%);
	padding: 8rem 2rem 4rem;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1100px;
}

.hero-badge {
	display: inline-block;
	background: none;
	color: var(--color-light);
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 2rem;
	border: 1px solid #ffffff;
}

.hero-title {
	font-family: 'Lora', serif;
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	margin-bottom: 1.7rem;
	line-height: 1.3;
	letter-spacing: -3px;
	background: linear-gradient(135deg, var(--color-light) 0%, #cccccc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: clamp(1.2rem, 3vw, 1.8rem);
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 3rem;
	font-weight: 300;
	line-height: 1.4;
}

.hero-cta {
	display: inline-flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius);
	transition: var(--transition);
	font-size: 1.1rem;
	position: relative;
	overflow: hidden;
}

.cta-primary {
	background: #2a2b35;
	color: var(--color-light);
	border: 2px solid #ffffff;
}

.cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
}

.cta-secondary {
	background: transparent;
	color: var(--color-light);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

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


/* Platform Section */
.platform-section {
	display: grid;
	grid-template-columns: 2fr 3fr;
	min-height: 100vh;
	align-items: center;
	background-color: rgba(27, 28, 35, 0.95);
}

.platform-visual {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #2a2b35 0%, var(--color-primary) 100%);
	padding: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
}

.platform-logos {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	align-items: center;
}

.platform-logo-item {
	text-align: center;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	width: 100%;
	max-width: 300px;
	transition: var(--transition);
}

.platform-logo-item:hover {
	transform: scale(1.05);
	background: rgba(255, 255, 255, 0.05);
	border-color: var(--color-secondary-pink);
}

.platform-logo-item h3 {
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 0.5rem;
}

.marketo-color {
	background: linear-gradient(135deg, #5C4EE5, #8B7FE8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hubspot-color {
	background: linear-gradient(135deg, #FF7A59, #FFB84D);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.platform-logo-item p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4rem;
	background: none;
}

.benefits-header {
	margin-bottom: 3rem;
}

.benefits-badge {
	display: inline-block;
	background: none;
	color: var(--color-light);
	padding: 0.4rem 1.2rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	border: 1px solid #ffffff;
}

.benefits-title {
	font-family: 'Lora', serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	letter-spacing: -2px;
}

.benefits-description {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: .5rem;
	line-height: 1.6;
}

.benefits-grid {
	display: grid;
	gap: .5rem;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item:last-child {
	border-bottom: none;
}

.benefit-icon {
	width: 28px;
	height: 28px;
	background: none;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
	padding-top: 3px;
	color: var(--color-secondary-pink);
}

.benefit-content h4 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--color-light);
}

.benefit-content p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

/* Problem Section */
.problem-section {
	padding: 8rem 0;
	background: var(--color-primary);
}

.section-header {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 6rem;
}

.section-badge {
	display: inline-block;
	background: none;
	color: var(--color-light);
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 2rem;
	border: 1px solid #ffffff;
}

.section-title {
	font-family: 'Lora', serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	letter-spacing: -2px;
}

.section-description {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.problem-card {
	padding: 3rem 2rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: var(--transition);
	text-align: center;
}

.problem-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(74, 144, 226, 0.5);
}

.problem-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.problem-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-light);
}

.problem-description {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}

/* Solution Section */
.solution-section {
	padding: 8rem 0;
	background: linear-gradient(135deg, #2a2b35 0%, var(--color-primary) 100%);
}

.solution-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	margin-top: 4rem;
}

.solution-text {
	padding: 2rem;
}

.solution-list {
	list-style: none;
	margin-top: 2rem;
}

.solution-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-item:last-child {
	border-bottom: none;
}

.solution-number {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--color-secondary-pink), var(--color-secondary-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.solution-item-content h4 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--color-light);
}

.solution-item-content p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

.solution-visual {
	background: rgba(255, 255, 255, 0.03);
	border-radius: var(--border-radius);
	padding: 4rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.automation-icon {
	font-size: 8rem;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, var(--color-secondary-orange), var(--color-secondary-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.platform-badge {
	display: inline-block;
	padding: 1rem 2rem;
	background: rgba(74, 144, 226, 0.1);
	border: 2px solid var(--color-secondary-blue);
	border-radius: var(--border-radius);
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--color-light);
	margin-bottom: 1rem;
}

/* Services Section */
.services-section {
	padding: 8rem 0;
	background: var(--color-primary);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.service-card {
	padding: 3rem 2rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.05);
	border-color: var(--color-secondary-orange);
}

.service-icon {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	display: block;
}

.service-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-light);
}

.service-description {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.service-features {
	list-style: none;
	padding: 0;
}

.service-features li {
	padding: 0.5rem 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.95rem;
}

.service-features li::before {
	content: "✓ ";
	color: var(--color-secondary-pink);
	font-weight: 700;
	margin-right: 0.5rem;
}

/* Process Section */
.process-section {
	padding: 8rem 0;
	background: linear-gradient(135deg, #2a2b35 0%, var(--color-primary) 100%);
}

.process-timeline {
	max-width: 900px;
	margin: 4rem auto 0;
}

.process-step {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 3rem;
	padding: 3rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
}

.process-step:last-child {
	border-bottom: none;
}

.step-number-large {
	font-family: 'Lora', serif;
	font-size: 5rem;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.1);
	line-height: 1;
}

.step-content {
	padding-top: 0.5rem;
}

.step-label {
	display: inline-block;
	background: linear-gradient(135deg, var(--color-secondary-pink), var(--color-secondary-pink));
	color: var(--color-light);
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.step-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-light);
}

.step-description {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
	padding: 8rem 0;
	background: linear-gradient(135deg, var(--color-secondary-pink), var(--color-secondary-pink));
	text-align: center;
}

.cta-section .section-title {
	color: var(--color-light);
	margin-bottom: 2rem;
}

.cta-section .section-description {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 3rem;
	font-size: 1.3rem;
}

.cta-section .cta-button {
	background: var(--color-light);
	color: var(--color-primary);
	font-size: 1.2rem;
	padding: 1.2rem 3rem;
}

.cta-section .cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.platform-section {
		grid-template-columns: 1fr;
	}

	.benefits-section {
		padding: 3rem 2rem;
	}

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

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	    header {
        padding: 1rem 0;
    }
    
    header .logo-img {
        height: 40px;
    }
}
	.container {
		padding: 0 15px;
	}

	.hero {
		padding: 6rem 1rem 3rem;
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.cta-button {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}

	.benefits-section {
		padding: 2rem 1rem;
	}

	.benefit-item {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.problem-grid,
	.services-grid {
		grid-template-columns: 1fr;
	}

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

	.process-step {
		grid-template-columns: 60px 1fr;
		gap: 1.5rem;
	}

	.step-number-large {
		font-size: 3rem;
	}


/* Animation on scroll */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.slide-in-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
	opacity: 1;
	transform: translateX(0);
}


.main-footer {
	background-color: #1b1c23;
	color: white;
	padding: 60px 15px 30px 15px;
	width: 100%;
	margin-top: 0;
}

.footer-container {
	max-width: 1900px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.footer-section {
	display: flex;
	flex-direction: column;
}

.footer-section h3 {
	font-size: 50px;
	margin-bottom: 20px;
	color: #ffffff;
	font-weight: 500;
	font-family: 'Chillax', sans-serif;
}

.footer-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 20px;
}

.footer-section ul li {
	margin-bottom: 12px;
}

.footer-section a {
	color: #e0e0e0;
	text-decoration: none;
	font-size: 50px;
	transition: color 0.3s ease;
	font-family: 'Montserrat', sans-serif;
}

.footer-section a:hover {
	color: var(--color-secondary-orange);
}

.footer-logo-section {
	display: flex;
	flex-direction: column;
}

.footer-logo-section .logo {
	margin-bottom: 15px;
}

.logo {
display: flex;
align-items: center;
gap: 12px;
}
.logo-img {
height: 50px;
width: auto;
object-fit: contain;
}
.logo-text {
font-size: 1.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: -1px;
color: var(--color-light);
}

.footer-contact-info {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
	font-size: 30px;
	font-family: 'Chillax', sans-serif;
}

.footer-contact-info span {
	color: #e0e0e0;
	flex: 1;
}

.footer-bottom {
	border-top: 1px solid #333;
	margin-top: 40px;
	padding-top: 20px;
	text-align: center;
	color: #b0b0b0;
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
}



@media (max-width: 480px) {
	.logo-text {
		font-size: 1.5rem;
	}

	.logo-img {
		height: 40px;
	}

	.section-title {
		font-size: 2rem;
	}

	.main-footer {
		padding: 30px 0 15px 0;
	}

	.footer-container {
		padding: 0 15px;
		gap: 25px;
	}

	.footer-section h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.footer-section a {
		font-size: 15px;
	}

	.footer-section ul li {
		margin-bottom: 8px;
	}

	.footer-logo-section p {
		font-size: 13px;
		line-height: 1.4;
	}

	.footer-contact-info {
		font-size: 13px;
		margin-bottom: 10px;
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-contact-info strong {
		width: auto;
		margin-right: 0;
		margin-bottom: 3px;
	}

	.footer-bottom {
		margin-top: 30px;
		padding-top: 15px;
		font-size: 12px;
		line-height: 1.4;
	}
}



/* Menú desplegado */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 1.5rem 2rem;
	background-color: var(--color-primary);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateX(100%);
	transition: transform 0.5s ease;
}

.menu-overlay.active {
	transform: translateX(0);
}

.nav-links {
	list-style: none;
	text-align: left;
	padding: 0 20px;
}

.nav-links li {
	margin-bottom: .2rem;
}

.nav-links a {
	position: relative;
	display: inline-block;
	padding: 2px 0;
	font-size: clamp(2rem, 8vw, 5rem);
	font-weight: 700;
	text-decoration: none;
	color: var(--color-light);
	text-transform: lowercase;
	transition: var(--transition);
	font-family: 'Chillax', sans-serif;
}

.nav-links a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--color-secondary-orange), var(--color-secondary-orange));
	transition: var(--transition);
	z-index: -1;
}

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

.nav-links a:hover::after {
	width: 1600px;
}

.menu-toggle {
	cursor: pointer;
	width: 40px;
	height: 30px;
	position: relative;
	z-index: 1001;
}

.menu-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--color-light);
	border-radius: 2px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: var(--transition);
}

.menu-toggle span:nth-child(1) {
	top: 0;
}

.menu-toggle span:nth-child(2) {
	top: 12px;
}

.menu-toggle span:nth-child(3) {
	top: 24px;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* Menú desplegado */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-primary);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateX(100%);
	transition: transform 0.5s ease;
}

.menu-overlay.active {
	transform: translateX(0);
}

.nav-links {
	list-style: none;
	text-align: left;
	padding: 0 20px;
}

.nav-links li {
	margin-bottom: .2rem;
}

.nav-links a {
	position: relative;
	display: inline-block;
	padding: 2px 0;
	font-size: clamp(2rem, 8vw, 5rem);
	font-weight: 700;
	text-decoration: none;
	color: var(--color-light);
	text-transform: lowercase;
	transition: var(--transition);
	font-family: 'Chillax', sans-serif;
}

.nav-links a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--color-secondary-orange), var(--color-secondary-orange));
	transition: var(--transition);
	z-index: -1;
}

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

.nav-links a:hover::after {
	width: 1600px;
}
/* ====================================================
   RESPONSIVE MOBILE - marketing-automation
   ==================================================== */
@media (max-width: 768px) {
    #custom-cursor { display: none !important; }
    .hero { padding: 120px 1.5rem 4rem; min-height: auto; }
    .hero-title { font-size: clamp(1.8rem, 6vw, 3rem); }
    .hero-cta { flex-direction: column; gap: 1rem; }
    .cta-button { width: 100%; text-align: center; }
    .platform-section { flex-direction: column !important; }
    .platform-visual { width: 100% !important; }
    .benefits-section { width: 100% !important; padding: 1.5rem !important; }
    .benefits-grid { grid-template-columns: 1fr !important; }
    .platform-logos { flex-direction: column; gap: 1.5rem; }
    .section-title { font-size: clamp(1.8rem, 6vw, 3rem) !important; }
}

/* ====================================================
   MENÚ DROPDOWN — Servicios con 10 opciones
   ==================================================== */
.nav-has-dropdown {
    position: relative;
}

.nav-dropdown-toggle .nav-arrow {
    display: inline-block;
    font-style: normal;
    transition: transform 0.3s ease;
    font-size: 0.6em;
    vertical-align: middle;
    margin-left: 4px;
}

.nav-has-dropdown.open .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    list-style: none;
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 0;
    border-left: 2px solid var(--color-secondary-pink);
}

.nav-has-dropdown.open .nav-dropdown {
    display: block;
}

.nav-dropdown li {
    margin-bottom: 0;
}

.nav-dropdown a {
    font-size: clamp(1rem, 3vw, 1.8rem) !important;
    font-weight: 400 !important;
    padding: 4px 0 !important;
    color: rgba(255,255,255,0.75) !important;
    display: block;
}

.nav-dropdown a:hover {
    color: var(--color-secondary-pink) !important;
}

/* Asegurar que el overlay tenga scroll si el dropdown hace el menú más largo */
.menu-overlay {
    overflow-y: auto;
}

