/* ========================================
   LANDING PAGE STYLES
   ======================================== */

/* ========================================
   IMPORTS & BASE STYLES
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

body {
	background: #F3F2F7 !important;
	margin: 0;
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.comercializa-section,
.catalogo-section {
	border: none !important;
	outline: none !important;
	box-shadow: none;
}

/* ========================================
   NAVBAR STYLES
   ======================================== */
.landing-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 2.5rem 0.75rem 2.5rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(24,119,242,0.06);
    gap: 2rem;
}

.landing-logo {
    height: 2.375rem;
}

.landing-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.landing-menu a {
    color: #8AC454;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.0625rem;
    letter-spacing: 1px;
    font-family: 'Didact Gothic', sans-serif;
    transition: color 0.2s;
}

.landing-menu a:hover {
    color: #679B36;
}

.landing-btns {
    display: flex;
    gap: 1rem;
}

.landing-btn {
    box-sizing: border-box;
    background: #A99DDB;
    border: 1px solid #8F64C0;
    border-radius: 90px;
    color: #fff;
    padding: 0.625rem 1.375rem;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.landing-btn-signin {
    background: #fff;
    color: #8F64C0;
    border: 1px solid #8F64C0;
}

.landing-btn-signup {
    background: #A99DDB;
    color: #fff;
    border: 1px solid #8F64C0;
}

.landing-btn:hover {
    background: #8F64C0;
    transform: scale(1.05);
}

.landing-btn-signin:hover {
    background: #8F64C0;
    color: #fff;
}

.landing-btn-signup:hover {
    background: #8F64C0;
    color: #fff;
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */
.hero-section {
    min-height: 68vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    gap: 2rem;
    margin: 0;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    font-family: 'Montserrat', sans-serif !important;
}

.hero-title-container {
    position: relative;
    font-family: 'Montserrat', sans-serif !important;
    font-style: italic !important;
    font-weight: 800 !important;
    font-size: 4rem !important;
    line-height: 78px !important;
    text-align: left;
    width: 100%;
}

.hero-title-outline-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: transparent;
    -webkit-text-stroke: 1.5px #000000;
    z-index: 1;
    width: 100%;
    text-align: left;
}

.hero-title-fill-layer {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
}

.hero-title-main {
    display: block;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    font-style: italic !important;
    font-size: 4rem !important;
    line-height: 78px !important;
    margin-bottom: 0.5rem;
}

/* Especificidad extra para superar Tailwind CSS */
.hero-section .hero-content .hero-title .hero-title-main {
    font-weight: 800 !important;
    font-style: italic !important;
}

.hero-title-filled {
    color: #56389C;
    font-family: 'Montserrat', sans-serif !important;
}

.hero-title-white {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif !important;
}

.hero-description {
    font-size: 1.4rem;
    color: #2d3a4b;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
    font-style: italic;
    font-family: 'Montserrat', sans-serif !important;
}

.highlight {
    color: #6FBA89;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif !important;
}

.hero-cta-button {
    background: linear-gradient(135deg, #8F64C0 0%, #5a3e8a 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(143, 100, 192, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #5a3e8a 0%, #8F64C0 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(143, 100, 192, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta-button:hover::before {
    left: 100%;
}

.hero-cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover i {
    transform: translateX(4px) rotate(15deg);
}

/* Animación de entrada para el botón */
@keyframes buttonSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-cta-button {
    animation: buttonSlideIn 0.8s ease-out 0.5s both;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    position: relative;
}

.hero-circle-background {
    position: absolute;
    width: 530px;
    height: 530px;
    left: 51%;
    top: 53%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #EEEAFC 0%, #8F64C0 100%);
    box-shadow: 0px 87px 85px -12px rgba(169, 157, 219, 0.79);
    border-radius: 50%;
    z-index: 1;
}

.hero-small-circle {
    position: absolute;
    width: 14%;
    height: 12%;
    left: 76%;
    top: 17%;
    background: linear-gradient(180deg, #EEEAFC 0%, #8F64C0 100%);
    border-radius: 50%;
    z-index: 3;
}

.hero-model-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.recycling-bins {
    position: absolute;
    z-index: 15;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.recycling-bin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 15;
}

.bin-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 8px;
}

.yellow-bin {
    top: 19%;
    left: 28%;
    transform: translate(-50%, -50%);
}

.blue-bin {
    top: 39%;
    left: -8%;
    transform: translate(50%, -50%);
}

.green-bin {
    bottom: 41%;
    right: -12%;
    transform: translate(-50%, 50%);
}

/* Tiny decorative circle around the hero image */
.hero-tiny-circle {
	position: absolute;
    width: 5%;
    height: 5%;
    left: 20%;
    top: 90%;
	background: linear-gradient(180deg, #EEEAFC 0%, #8F64C0 100%);
	border-radius: 50%;
	z-index: 4;
}

/* Solid decorative dots around the hero image */
.hero-dot-purple {
	position: absolute;
    width: 10px;
    height: 10px;
    left: 15%;
    top: 22%;
	background: #A99DDB;
	border-radius: 50%;
	z-index: 4;
}

.hero-dot-light {
	position: absolute;
	width: 15px;
	height: 15px;
    left: 85%;
    top: 82%;
	background: #EEEAFC;
	border-radius: 50%;
	z-index: 4;
}

@media (max-width: 768px) {
	.hero-tiny-circle {
		width: 10%;
		height: 10%;
		left: 72%;
		top: 22%;
	}
	.hero-dot-purple {
		left: 55%;
		top: 22%;
	}
	.hero-dot-light {
		left: 78%;
		top: 70%;
	}
}

@media (max-width: 480px) {
	.hero-tiny-circle {
		width: 12%;
		height: 12%;
		left: 68%;
		top: 20%;
	}
	.hero-dot-purple {
		left: 52%;
		top: 24%;
	}
	.hero-dot-light {
		left: 75%;
		top: 72%;
	}
}

/* ========================================
   COMERCIALIZA SECTION STYLES
   ======================================== */
.comercializa-section {
    background: #F3F2F7;
    padding: 0.9375rem 0 1.25rem 0;
    text-align: center;
}

.comercializa-title {
    font-size: 2.25rem;
    color: #56389C;
    margin-bottom: 2rem;
    font-weight: 400;
}

.comercializa-cards {
    display: flex;
    gap: 5.625rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.comercializa-card {
    position: relative;
    width: 21.5rem;
    height: 34.375rem;
    padding: 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.comercializa-card:first-child {
    background: linear-gradient(180deg, #A4C2E6 0%, #A99DDB 100%);
    border-radius: 1.5rem;
}

.comercializa-card:last-child {
    background: linear-gradient(180deg, #83D98B 0%, #A99DDB 100%);
    border-radius: 1.5rem;
}

.comercializa-card h3 {
    font-size: 1.875rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.625rem;
}

.comercializa-card p {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 1.125rem;
}

.comercializa-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.comercializa-card .card-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.comercializa-btn {
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.comercializa-btn:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

#comercializa-btn-ofrece:hover {
    background: #466D92 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(70, 109, 146, 0.4);
}

#comercializa-btn-comprar:hover {
    background: #6FBA89 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(111, 186, 137, 0.4);
}

/* Estilos para los iconos de WhatsApp en los botones */
.comercializa-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.comercializa-btn:hover i {
    transform: scale(1.1);
}

/* ========================================
   ESTADÍSTICAS SECTION STYLES
   ======================================== */
.estadisticas-section {
    background: linear-gradient(0deg, rgba(86, 56, 156, 0.5), rgba(86, 56, 156, 0.5)), url('../images/reganvi-foto-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 2.375rem 0 1.75rem 0;
    text-align: center;
}

.estadisticas-section .container {
    position: relative;
    z-index: 2;
}

.porque-section {
    background: #3D667A;
    padding: 2.375rem 0 1.75rem 0;
    text-align: center;
}

.porque-title {
    text-align: center;
    color: #3D667A;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    margin-top: 1.875rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 1.125rem;
    flex-wrap: wrap;
}

.stat-box {
    font-size: 1.5rem;
    color: #83D98B !important;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif !important;
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif !important;
}

/* ========================================
   SOCIOS SECTION STYLES
   ======================================== */
.socios-section {
    background: #A99DDB;
    position: relative;
    padding: 1.375rem 0 1.75rem 0;
    text-align: center;
}

.socios-title,
.socios-logos {
    position: relative;
    z-index: 2;
}

.socios-title {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 700;
}

.socios-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.375rem;
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin-top: 1.25rem;
}

.socio-logo {
    width: 11.25rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.625rem 0;
    background: transparent;
}

.socio-logo img {
    max-width: 100%;
    max-height: 4.375rem;
    filter: brightness(0) invert(1);
}

/* ========================================
   FLOATING BUTTON STYLES
   ======================================== */
.floating-btn-container {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5a3e8a 0%, #9b8ed6 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(90,62,138,0.3);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    background: linear-gradient(135deg, #9b8ed6 0%, #5a3e8a 100%);
    transform: scale(1.1);
}

.floating-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(90,62,138,0.15);
    padding: 18px 16px;
    min-width: 180px;
    align-items: flex-end;
}

.floating-action-btn {
    background: #5a3e8a;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 4px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.floating-action-btn:last-child {
    background: #9b8ed6;
}

.floating-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90,62,138,0.2);
}

/* ========================================
   UTILITY STYLES
   ======================================== */
.hero-gradient {
    background: linear-gradient(135deg, #c7d7c5 0%, #a8c4a2 100%);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(90,62,138,0.15);
}

/* ========================================
   CATALOGO SECTION STYLES
   ======================================== */
.catalogo-section {
	background: #F3F2F7;
	padding: 2.5rem 1rem 2.5rem 1rem;
}

.catalogo-title {
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 2.25rem;
	color: #6FBA89;
	margin-bottom: 1.75rem;
}

.catalogo-grid {
	max-width: 80rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 2rem;
}

.catalogo-card {
	background: #ffffff;
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	padding: 1.25rem 1.25rem 1.5rem 1.25rem;
	transition: transform .2s ease, box-shadow .2s ease;
}

.catalogo-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.catalogo-img-wrap {
	border-radius: 0.75rem;
	height: 16rem;
	overflow: hidden;
	margin-bottom: 0.75rem;
}

.catalogo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.catalogo-item-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1.25rem;
	color: #2d3a4b;
	margin: 0 0 0.25rem 0;
}

.catalogo-item-stock {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	color: #8da1b2;
	margin: 0 0 0.75rem 0;
}

.catalogo-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	background: #5DBB6A;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	box-shadow: 0 6px 14px rgba(93,187,106,0.25);
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.catalogo-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 18px rgba(93,187,106,0.35);
	background: #4da55a;
}

.catalogo-btn i { font-size: 1.1rem; }

/* Responsive grid */
@media (max-width: 900px) {
	.catalogo-grid { 
		grid-template-columns: repeat(2, 1fr) !important; 
	}
	.catalogo-img-wrap { height: 14rem; }
}
@media (max-width: 560px) {
	.catalogo-grid { 
		grid-template-columns: 1fr !important; 
	}
	.catalogo-img-wrap { height: 13rem; }
	.catalogo-title { font-size: 1.75rem; }
}

/* Desktop large (web) */
@media (min-width: 1200px) {
	.catalogo-grid { 
		max-width: 90rem; 
		gap: 2.5rem; 
		grid-template-columns: repeat(3, 1fr) !important; 
	}
	.catalogo-card { padding: 1.5rem 1.5rem 1.75rem 1.5rem; }
	.catalogo-img-wrap { height: 18rem; }
	.catalogo-item-title { font-size: 1.35rem; }
	.catalogo-item-stock { font-size: 1.05rem; }
	.catalogo-btn { padding: 0.875rem 1.5rem; font-size: 1.05rem; }
}

/* Desktop extra large (>=1440px) */
@media (min-width: 1440px) {
	.catalogo-grid { 
		max-width: 100rem; 
		gap: 3rem; 
		grid-template-columns: repeat(3, 1fr) !important; 
	}
	.catalogo-card { padding: 1.75rem 1.75rem 2rem 1.75rem; }
	.catalogo-img-wrap { height: 20rem; }
	.catalogo-item-title { font-size: 1.45rem; }
	.catalogo-item-stock { font-size: 1.125rem; }
	.catalogo-btn { padding: 1rem 1.75rem; font-size: 1.1rem; }
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet & Small Desktop */
@media (max-width: 900px) {
    .socios-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .socio-logo {
        width: 7.5rem;
        height: 3.75rem;
    }
    
    .socio-logo img {
        max-height: 2.5rem;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    /* Navbar */
    .landing-navbar {
        padding: 0.9375rem 1.25rem 0.625rem 1.25rem;
        flex-direction: column;
        gap: 0.9375rem;
    }
    
    .landing-menu {
        gap: 1.25rem;
    }
    
    .landing-menu a {
        font-size: 0.9375rem;
    }
    
    .landing-btns {
        gap: 0.75rem;
    }
    
    .landing-btn {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 1rem 1rem 0rem;
        text-align: center;
        justify-content: flex-start;
        flex-direction: column;
        gap: 1.5rem;
        min-height: 100vh;
        background: #f8f9fa;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        order: 1;
        padding-top: 2rem;
    }
    
    .hero-title-main {
        font-size: 3.2rem;
        line-height: 0.9;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin: 1rem 0 1.5rem 0;
        line-height: 1.3;
        padding: 0 1rem;
    }
    
    .hero-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .hero-image-container {
        max-width: 100%;
        position: relative;
        order: 2;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible;
        margin-top: 1rem;
    }
    
    .hero-circle-background {
        position: absolute;
        width: 250px;
        height: 250px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: linear-gradient(180deg, #EEEAFC 0%, #8F64C0 100%);
        box-shadow: 0px 20px 40px -8px rgba(169, 157, 219, 0.4);
        border-radius: 50%;
        z-index: 1;
    }
    
    .hero-model-image {
        max-width: 280px;
        height: auto;
        position: relative;
        z-index: 2;
        margin-top: 0;
    }
    
    .recycling-bins {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 3;
    }
    
    .recycling-bin {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .bin-icon {
        width: 45px;
        height: 45px;
    }
    
    .yellow-bin {
        top: 8%;
        left: 8%;
    }
    
    .blue-bin {
        top: 55%;
        left: -5%;
    }
    
    .green-bin {
        top: 8%;
        right: 8%;
    }
    
    .hero-small-circle {
        position: absolute;
        width: 43px;
        height: 45px;
        left: 70%;
        top: 5%;
        background: linear-gradient(180deg, #EEEAFC 0%, #8F64C0 100%);
        border-radius: 50%;
        z-index: 3;
    }
    
    .hero-tiny-circle {
        position: absolute;
        width: 15px;
        height: 15px;
        left: 20%;
        top: 91%;
        background: linear-gradient(180deg, #EEEAFC 0%, #8F64C0 100%);
        border-radius: 50%;
        z-index: 3;
    }
    
    .hero-dot-purple {
        position: absolute;
        width: 8px;
        height: 8px;
        left: 6%;
        top: 25%;
        background: #A99DDB;
        border-radius: 50%;
        z-index: 3;
    }
    
    .hero-dot-light {
        position: absolute;
        width: 10px;
        height: 10px;
        left: 82%;
        top: 88%;
        background: #EEEAFC;
        border-radius: 50%;
        z-index: 3;
    }
    
    .bin-icon {
        width: 40px;
        height: 40px;
    }
    
    .bin-label {
        font-size: 0.65rem;
    }
    
    .yellow-bin {
        top: 20%;
        left: 20%;
    }
    
    .blue-bin {
        top: 43%;
        left: -7%;
    }
    
    .green-bin {
        top: -60%;
        left: 35%;
    }
    
    /* Comercializa Section */
    .comercializa-title {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .comercializa-cards {
        gap: 1.25rem;
        padding: 0 0.9375rem;
    }
    
    .comercializa-card {
        min-width: 15rem;
        max-width: 18.75rem;
        padding: 1.5rem 1.25rem;
    }
    
    .comercializa-card h3 {
        font-size: 1.2rem;
    }
    
    .comercializa-card p {
        font-size: 0.95rem;
    }
    
    .comercializa-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    /* Estadísticas Section */
    .porque-section {
        padding: 1.875rem 0.9375rem 1.25rem 0.9375rem;
    }
    
    .stats-row {
        gap: 1.875rem;
    }
    
    .stat-box {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .socios-title {
        font-size: 1.8rem;
    }
    
    /* Floating Button */
    .floating-btn-container {
        bottom: 1.25rem;
        right: 1.25rem;
    }
    
    .floating-btn {
        width: 3.125rem;
        height: 3.125rem;
        font-size: 1.5rem;
    }
    
    .floating-menu {
        bottom: 3.75rem;
        padding: 0.9375rem 0.75rem;
        min-width: 10rem;
    }
    
    .floating-action-btn {
        padding: 0.5rem 0.9375rem;
        font-size: 0.875rem;
    }
}

/* Laptops pequeñas - Control del círculo */
@media (max-width: 1254px) and (min-width: 931px) {
    .hero-circle-background {
        width: 404px;
        height: 384px;
        top: 21rem;
    }
    
    .hero-model-image {
        max-width: 510px;
        margin-top: 170px;
    }
    .hero-small-circle {
        left: 75%;
        top: 27%;
        width: 15%;
        height: 12%;
    }

    .hero-tiny-circle {
        left: 26%;
        top: 94%;
        width: 4%;
        height: 3%;
    }

    .hero-dot-purple {
        left: 6%;
        top: 25%;
        width: 8px;
        height: 8px;
    }

    .hero-dot-light {
        left: 78%;
        top: 90%;
        width: 8px;
        height: 8px;
    }

    .hero-dot-purple {
        left: 20%;
        top: 27%;
        width: 7px;
        height: 7px;
    }

    .blue-bin {
        top: 57%;
        left: -15%;
        width: 18%;
        height: 18%;
    }

    .green-bin {
        top: 21%;
        right: 70%;
        width: 18%;
        height: 18%;
    }

    .yellow-bin {
        top: 30%;
        left: 40%;
        width: 18%;
        height: 18%;
    }

}

/* Tablets y dispositivos medianos - Centrado */
@media (max-width: 930px) {
    .hero-title-container {
        text-align: center;
    }
    
    .hero-title-outline-layer {
        text-align: center;
    }
    
    .hero-title-fill-layer {
        text-align: center;
    }
}

/* Tablets */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-title-container {
        font-size: 3rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.01em;
    }
    
    .hero-title-outline-layer {
        -webkit-text-stroke: 1.2px #000000;
    }
    
    .hero-title-main {
        font-size: 3rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.01em;
        margin-bottom: 0.4rem;
        font-style: italic !important;
        font-weight: 800 !important;
    }
}

/* Mobile Small */
@media (max-width: 600px) {
    .socios-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .socio-logo {
        width: 5.625rem;
        height: 2.5rem;
    }
    
    .socio-logo img {
        max-height: 1.75rem;
    }
}

/* Mobile Medium */
@media (max-width: 640px) and (min-width: 481px) {
    .hero-title-container {
        font-size: 2.6rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.01em;
    }
    
    .hero-title-outline-layer {
        -webkit-text-stroke: 1.1px #000000;
    }
    
    .hero-title-main {
        font-size: 2.6rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.01em;
        margin-bottom: 0.35rem;
        font-style: italic !important;
        font-weight: 800 !important;
    }
}

/* Mobile Extra Small */
@media (max-width: 480px) {
    /* Navbar */
    .landing-navbar {
        padding: 0.75rem 0.9375rem 0.5rem 0.9375rem;
    }
    
    .landing-logo {
        height: 2rem;
    }
    
    .landing-menu {
        gap: 0.9375rem;
    }
    
    .landing-menu a {
        font-size: 0.875rem;
    }
    
    .landing-btns {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .landing-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 1rem 1rem 0rem 0.75rem;
        gap: 1rem;
        min-height: 100vh;
    }
    
    .hero-content {
        padding-top: 1.5rem;
    }
    
    .hero-title-container {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.01em;
    }
    
    .hero-title-outline-layer {
        -webkit-text-stroke: 1px #000000;
    }
    
    .hero-title-main {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.01em;
        margin-bottom: 0.3rem;
        font-style: italic !important;
        font-weight: 800 !important;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .hero-cta-button {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
    
    .hero-image-container {
        height: 350px;
        margin-top: 0.5rem;
    }
    
    .hero-circle-background {
        width: 250px;
        height: 250px;
        box-shadow: 0px 87px 85px -12px rgba(169, 157, 219, 0.79);
    }
    
    .hero-model-image {
        max-width: 288px;
    }
    
    .bin-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-small-circle {
        width: 40px;
        height: 40px;
        top: 15px;
        left: 195px;
    }
    
    .hero-tiny-circle {
        width: 20px;
        height: 20px;
        top: 250px;
        left: 45px;
    }
    
    .hero-dot-purple {
        width: 5px;
        height: 5px;
        top: 80px;
        left: 18px;
    }
    
    .hero-dot-light {
        width: 12px;
        height: 12px;
        top: 245px;
        left: 230px;
    }
    
    /* Comercializa Section */
    .comercializa-title {
        font-size: 1.4rem;
        margin-bottom: 0.9375rem;
    }
    
    .comercializa-cards {
        gap: 0.9375rem;
        padding: 0 0.625rem;
    }
    
    .comercializa-card {
        min-width: 12.5rem;
        max-width: 17.5rem;
        padding: 1.25rem 0.9375rem;
    }
    
    .comercializa-card h3 {
        font-size: 1.1rem;
    }
    
    .comercializa-card p {
        font-size: 0.9rem;
    }
    
    .comercializa-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
    
    /* Estadísticas Section */
    .porque-section {
        padding: 1.5625rem 0.625rem 0.9375rem 0.625rem;
    }
    
    .stats-row {
        gap: 1.25rem;
        flex-direction: column;
    }
    
    .stat-box {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .socios-title {
        font-size: 1.5rem;
    }
    
    .socios-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9375rem;
    }
    
    .socio-logo {
        width: 5rem;
        height: 2.1875rem;
    }
    
    .socio-logo img {
        max-height: 1.5625rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 400px) {
    .socios-logos {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .socio-logo {
        width: 4.5rem;
        height: 2rem;
    }
    
    .socio-logo img {
        max-height: 1.25rem;
    }
    
    /* Floating Button */
    .floating-btn-container {
        bottom: 0.9375rem;
        right: 0.9375rem;
    }
    
    .floating-btn {
        width: 2.8125rem;
        height: 2.8125rem;
        font-size: 1.25rem;
    }
    
    .floating-menu {
        bottom: 3.4375rem;
        padding: 0.75rem 0.625rem;
        min-width: 8.75rem;
    }
    
    .floating-action-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
}

/* ========================================
   ABOUT REGANVI SECTION
   ======================================== */
.about-reganvi-section {
	background: #F3F2F7;
	padding: 2.5rem 1rem 2.5rem 1rem;
}

.about-container {
	max-width: 80rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 2rem;
	align-items: center;
}

.about-bot-image { width: 100%; height: auto; object-fit: contain; }

.about-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 2.25rem;
	color: #56389C;
	margin: 0 0 .25rem 0;
}

.about-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	color: #7b8794;
	margin: 0 0 1rem 0;
}

.faq-list { display: grid; gap: 1rem; }

.faq-item {
	background: #B8A8E2;
	border-radius: 18px;
	padding: .85rem 1.25rem;
	color: #ffffff;
}

.faq-summary {
	list-style: none;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	gap: .75rem;
}

.faq-item[open] .faq-summary { opacity: .95; }

.faq-plus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px; height: 28px;
	border-radius: 999px;
	background: rgba(255,255,255,.25);
	font-size: 1.2rem;
	font-weight: 700;
}

.faq-content {
	margin-top: .5rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: .95rem;
	color: #F5F5FF;
}

/* Summary default marker off for FAQ */
.faq-summary { list-style: none; cursor: pointer; }
.faq-summary::-webkit-details-marker { display: none; }

/* Smooth accordion animation */
.faq-item .faq-content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 300ms ease, opacity 300ms ease;
}
.faq-item[open] .faq-content {
	max-height: 500px; /* suficiente para el contenido habitual */
	opacity: 1;
}

@media (max-width: 900px) {
	.about-container { grid-template-columns: 1fr; }
	.about-bot-image { max-width: 360px; margin: 0 auto; }
}

/* about-left layout */
.about-left { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; }
.about-left .about-title { font-size: 3rem; font-weight: 400; color: #56389C; }
.about-left .about-subtitle { font-size: 1.125rem; color: #6b6f7a; margin-bottom: .5rem; }
.about-left .about-bot-image { max-width: 520px; }

@media (max-width: 900px) {
	.about-left .about-title { font-size: 2.25rem; }
	.about-left .about-bot-image { max-width: 420px; }
}
@media (max-width: 560px) {
	.about-left .about-title { font-size: 2rem; }
	.about-left .about-bot-image { max-width: 360px; }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

/* Footer principal */
footer {
    position: relative;
    z-index: 10;
}

/* Enlaces de navegación del footer */
.footer-link {
    color: #5a3e8a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
}

.footer-link:hover {
    color: #8F64C0;
    background-color: rgba(143, 100, 192, 0.1);
    transform: translateY(-1px);
}

/* Contenedor de iconos de redes sociales */
.social-icon-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 8px;
}

.social-icon-link:hover {
    transform: translateY(-3px) scale(1.1);
}



/* Responsive del footer */
@media (max-width: 768px) {
    footer .container > div:first-child {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
        padding: 3px 6px;
    }
    
    .social-icon-link i {
        font-size: 32px;
    }
    
    .social-icon-link {
        padding: 6px;
    }
}

/* Animación de entrada para el footer */
@keyframes footerSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    animation: footerSlideUp 0.8s ease-out;
}