/*!
Theme Name: Nuvly Sales
Theme URI: https://nuvly.ai/
Author: OCATGT
Author URI: https://octagt.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
*/

:root {
	--primary-blue: #0d6efd;
	--dark-gray: #4a5568;
	--light-gray: #e2e8f0;
	--cloud-shape: #536b7a;
	--white: #ffffff;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
	color: #333;
	line-height: 1.6;
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: #000;
    color: #fff;
    padding: 10px;
    text-decoration: none;
}
.skip-link:focus {
    top: 0; /* Hace que el enlace se vea cuando está enfocado */
}
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
/* Header */
header {
	background-color: var(--white);
	padding: 20px 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: relative;
}
.logo {
	display: flex;
	align-items: center;
	font-size: 28px;
	font-weight: bold;
	color: var(--dark-gray);
}
.logo span.blue {
	color: var(--primary-blue);
}
/* Hero Section */
.hero {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	padding: 80px 0;
	text-align: center;
}
.hero h1 {
	font-size: 48px;
	margin-bottom: 20px;
	color: var(--dark-gray);
}
.hero p {
	font-size: 20px;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.counter-container {
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	padding: 15px 25px;
	display: inline-block;
	margin-bottom: 25px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.counter-text {
	font-size: 18px;
	font-weight: bold;
	color: var(--dark-gray);
}
.counter-number {
	color: var(--primary-blue);
	font-size: 22px;
	font-weight: bold;
}
/* CTA Button */
.cta-button {
	display: inline-block;
	background-color: var(--primary-blue);
	color: white;
	font-size: 18px;
	font-weight: bold;
	padding: 15px 30px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}
.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 15px rgba(13, 110, 253, 0.2);
}
/* Features Section */
.features {
	padding: 80px 0;
	background-color: white;
}
.section-title {
	text-align: center;
	font-size: 36px;
	margin-bottom: 60px;
	color: var(--dark-gray);
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}
.feature-card {
	text-align: center;
	padding: 30px 20px;
	border-radius: 10px;
	transition: all 0.3s ease;
	background-color: white;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background-color: rgba(13, 110, 253, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.feature-icon i {
	font-size: 40px;
	color: var(--primary-blue);
}
.feature-title {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--dark-gray);
}
.feature-fast{
	width: 33px;
    height: 44px;
}
.feature-simple{
	width: 40px;
    height: 40px;
}
.feature-compatible{
	width: 44px;
    height: 44px;
}
.feature-desc {
	color: #666;
}
/* Testimonios section */ 
.testimonios{
	margin: 0px 0px 30px 0px;
}
.testimonios-grid{
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.testimonios-card{
	text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.testimonios-title{
	color: #0d6efd;
}
.testimonios-desc{
	text-align: left;
    padding: 5px;
}
/* How It Works */
.how-it-works {
	padding: 80px 0;
	background-color: #f8fafc;
}
.steps-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}
.step-card {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	position: relative;
	overflow: hidden;
}
.step-number {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	background-color: var(--primary-blue);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 20px;
}
.step-title {
	font-size: 20px;
	margin-bottom: 15px;
	color: var(--dark-gray);
}
.step-image {
	width: 100%;
	height: 342px;
	border-radius: 8px;
	margin-bottom: 15px;
	border: 1px solid var(--light-gray);
	object-fit: cover;
    aspect-ratio: 584 / 656;
}
/* Pricing Section */
.pricing {
	padding: 80px 0;
	background-color: white;
}
.gestoria{
	background-color: #f8fafc;
}
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}
.pricing-card {
	background-color: white;
	border-radius: 10px;
	padding: 40px 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.pricing-card.featured {
	transform: scale(1.05);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	border: 2px solid var(--primary-blue);
}
.pricing-badge {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--primary-blue);
	color: white;
	padding: 5px 15px;
	font-size: 14px;
	font-weight: bold;
	transform: translateX(30%) translateY(0%) rotate(45deg);
	transform-origin: top left;
	width: 150px;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.pricing-title {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--dark-gray);
}
.pricing-price {
	font-size: 48px;
	font-weight: bold;
	color: var(--primary-blue);
	margin-bottom: 20px;
}
.pricing-price .currency {
	font-size: 24px;
	vertical-align: super;
}
.pricing-price .period {
	font-size: 16px;
	color: #000000;
	font-weight: bold;
}
.pricing-features {
	list-style: none;
	margin-bottom: 30px;
}
.pricing-features li {
	padding: 10px 0;
	border-bottom: 1px solid var(--light-gray);
}
.pricing-features li:last-child {
	border-bottom: none;
}
/* FAQ Section */
.faq {
	padding: 80px 0;
	background-color: #f8fafc;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	background-color: white;
}

.faq-question {
	padding: 20px 30px;
	font-size: 18px;
	font-weight: bold;
	color: var(--dark-gray);
	background-color: white;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question::after {
	content: '+';
	font-size: 24px;
	color: var(--primary-blue);
}

.faq-answer {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: white;
}

.faq-item.active .faq-question::after {
	content: '-';
}

.faq-item.active .faq-answer {
	padding: 0 30px 20px;
	max-height: 1000px;
}

/* Final CTA */
.final-cta {
	padding: 100px 0;
	text-align: center;
	background: linear-gradient(135deg, #0d6efd 0%, #0099ff 100%);
	color: white;
}

.final-cta h2 {
	font-size: 36px;
	margin-bottom: 20px;
}

.final-cta p {
	font-size: 20px;
	max-width: 800px;
	margin: 0 auto 40px;
}

.final-cta .cta-button {
	background-color: white;
	color: var(--primary-blue);
}

/* Footer */
footer {
	background-color: #2d3748;
	padding: 60px 0 30px;
	color: #a0aec0;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	color: white;
	font-size: 18px;
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #a0aec0;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: white;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #4a5568;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background-color: var(--primary-blue);
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid #4a5568;
}

.custom-logo{
	width: 150px;
	height: unset;
}
.social-youtube{
	width: 24px;
	height: 17px;
}
.social-tiktok{
	width: 21px;
	height: 24px;
}
.social-linkedin{
	width: 24px;
	height: 22px;
}
.social-instagram{
	width: 24px;
	height: 24px;
}
.social-facebook{
	width: 12px;
	height: 24px;
}
/* Menu */
.header-container {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.main-menu {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 10px 0;
}
/* Estilo del botón hamburguesa */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #4a5568;
    padding: 10px;
	position: relative;
    z-index: 1001;
}
.menu-container {
    width: 100%;
}
#main {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
	justify-content: flex-end
}
#main li a {
    text-decoration: none;
    color: #4a5568;
    padding: 8px 12px;
    transition: all 0.3s ease;
    position: relative;
}
#main li a:hover {
    color: #0d6efd;
}
#main li a:active {
    color: #0d6efd;
}
#main li.current-menu-item a {
    color: #0d6efd;
}
#main li.current-menu-item a::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -2px;
    height: 2px;
    background-color: #0d6efd;
}
.menu-toggle .close-icon {
	display: none;
}
/* Post */ 
.entry-header{
	padding: 40px 0;
    position: relative;
}
.site-main{
	padding-bottom: 35px;
}
#load-more-button{
	background: #007cff;
    color: #fff;
    width: 200px;
    height: 29px;
    border: 1px solid #0174ed;
	line-height: 9px;
}
#load-more-container{
	margin: 10px 0px 10px 0px;
}
.nuvly-blog-list{
	min-height: calc(100vh - 500px);
}
.nuvly-text-card-h3{
	color: #007cff;
    cursor: pointer;
}
/* Form Registro */
.registration-form {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}
.form-field {
    margin-bottom: 20px;
}
.form-field label {
    display: block;
    margin-bottom: 5px;
}
.form-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    padding: 10px 20px;
    background: #007cff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background: #2d3748;
}
.form-progress {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.step-indicator {
    padding: 5px 10px;
    background: #e2e8f0;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    font-weight: 600;
}
.step-indicator.active {
	background: #007cff;
    color: #fff;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    font-weight: 600;
}
.title-form{
	text-align: center;
}
.form-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}
.form-field .required {
    color: red;
    font-weight: bold;
}
.form-field .field-error ul {
    margin-top: 5px;
    margin-left: 20px;
}
/* Inputs Form */
.inline-fields .input-group {
    display: flex;
    gap: 10px;
}
.inline-fields .input-group input {
    width: 33%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}
.thanks-h2{
	text-align: center;
    margin: 20px;
}
.thanks-card{
	border: 1px solid #007cff;
    padding: 20px;
    margin: 20px;
    box-shadow: 26px -16px #007cff;
}
/* Responsive */
@media (max-width: 768px) {
	header{
		padding: 5px 0;
	}
	.hero h1 {
		font-size: 30px;
	}
	.hero p {
		font-size: 18px;
	}
	.section-title {
		font-size: 28px;
	}
	.pricing-card.featured {
		transform: scale(1);
	}
	.menu-toggle {
        display: block;
    }
	.menu-toggle .menu-icon {
        display: inline;
    }
    .menu-toggle .close-icon {
        display: none;
    }
    .menu-toggle.active .menu-icon {
        display: none;
    }
	.menu-toggle.active .close-icon {
        position: absolute;
        top: -5px;
        right: 0px;
        z-index: 1002;
    }
    .menu-toggle.active .close-icon {
        display: inline;
    }
    .menu-container {
        display: none; /* Ocultar menú por defecto */
        position: absolute;
        top: 60px; /* Ajusta según la altura del header */
        right: 0;
        background: #fff;
        width: 200px; /* Ancho del popup */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        padding: 10px;
		width: 100%;
    	top: 10px;
		left: 0;
    }
    .menu-container.active {
        display: block; /* Mostrar cuando está activo */
    }
	button:hover{
		background: unset;
	}
    #main {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start; /* Alinear a la izquierda en el popup */
    }
    #main li a {
        padding: 10px;
        width: 100%;
        text-align: left;
        color: #4a5568;
    }
    #main li a:hover,
    #main li.current-menu-item a {
        color: #0d6efd;
    }
    #main li.current-menu-item a::after {
        left: 10px;
        right: 10px;
    }
	/* Post */ 
	.entry-header{
		padding: 5px 0;
		position: relative;
	}
	.site-main{
		padding-bottom: 10px;
	}
	.registration-form {
        margin: 20px;
        padding: 15px;
    }
}