/* ========================================
   MAPIA DIGITAL - Main Stylesheet
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    --primary-yellow: #fffd53;
    --primary-black: #000000;
    --dark-green: #2d4a1f;
    --medium-green: #4e7e32;
    --light-green: #5db53a;
    --text-yellow: #fffd53;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --border-color: #333333;
    --section-spacing: 6rem;
    --section-spacing-small: 4rem;
    --content-spacing: 3rem;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
}

/* ========================================
   Section Spacing & Separators
   ======================================== */
section {
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(78, 126, 50, 0.2) 20%, rgba(78, 126, 50, 0.5) 50%, rgba(78, 126, 50, 0.2) 80%, transparent 100%);
}

section.no-separator::after,
.hero::after,
.detailed-products-section::after {
    display: none;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--medium-green) 0%, var(--light-green) 100%);
    margin: 0 auto 3rem;
    border-radius: 2px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
}

.section-divider::before {
    left: -15px;
}

.section-divider::after {
    right: -15px;
}

/* ========================================
   Header & Navigation
   ======================================== */
header {
    background: var(--dark-green);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo-container {
    width: 180px;
    height: 60px;
    background: var(--bg-white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-yellow);
    padding: 0.5rem;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

nav a:hover {
    background: var(--primary-yellow);
    color: var(--dark-green);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 3px;
}

.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(7px, -7px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-yellow);
    padding: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--text-yellow);
    font-weight: 800;
    letter-spacing: -1px;
}

/* Hero Logo Styles */
.hero-logo {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-logo img {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 253, 83, 0.4))
            drop-shadow(0 10px 40px rgba(0, 0, 0, 0.6));
    transition: all 0.3s ease;
}

.hero-logo img:hover {
    filter: drop-shadow(0 0 50px rgba(255, 253, 83, 0.6))
            drop-shadow(0 10px 40px rgba(0, 0, 0, 0.8));
    transform: scale(1.05);
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--text-yellow);
    line-height: 1.4;
    font-weight: 400;
}

.hero .hero-subtitle {
    font-size: 1.9rem;
    margin-bottom: 2.5rem;
    color: var(--text-yellow);
    font-weight: 400;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 2px solid var(--primary-yellow);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 10px 30px rgba(255, 253, 83, 0.3);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-stat-label {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    background: var(--light-green);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border: 2px solid var(--light-green);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 253, 83, 0.6);
    background: var(--primary-yellow) !important;
    color: var(--primary-black) !important;
    border-color: var(--primary-yellow) !important;
}

.cta-button-secondary {
    background: transparent;
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border: 2px solid var(--text-white);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    background: var(--text-white);
    color: var(--dark-green);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
}

/* ========================================
   Contact Form Section
   ======================================== */
.contact-form-section {
    padding: 6rem 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact-form-container {
    padding: 4rem 3rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   Upload Section
   ======================================== */
.upload-section {
    padding: var(--section-spacing) 2rem;
    background: var(--bg-white);
    max-width: 1400px;
    margin: 0 auto;
}

.upload-section h2 {
    text-align: center;
    color: var(--medium-green);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.upload-main-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.main-upload-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid var(--medium-green);
}

.main-upload-card.info-card {
    cursor: default;
}

.main-upload-card.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--medium-green);
    box-shadow: 0 5px 15px rgba(78, 126, 50, 0.15);
}

.main-upload-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--medium-green);
}

.main-upload-card h3 {
    color: var(--medium-green);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
}

.main-upload-card p {
    color: #666;
    font-size: 1.1rem;
}

/* Analisis MAPIA Subsection */
.analisis-mapia {
    background: #f9f9f9;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.analisis-mapia h3 {
    text-align: center;
    color: var(--medium-green);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.analisis-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.analisis-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.analisis-card:hover {
    transform: translateY(-5px);
    border-color: var(--medium-green);
}

.analisis-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--medium-green);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(78, 126, 50, 0.08) 0%, rgba(93, 181, 58, 0.12) 100%);
    border-radius: 50%;
    position: relative;
}

.analisis-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--medium-green) 0%, var(--light-green) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.analisis-icon svg {
    position: relative;
    z-index: 1;
}

.analisis-card:hover .analisis-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--text-white);
}

.analisis-card:hover .analisis-icon::before {
    opacity: 1;
}

.analisis-card h4 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.analisis-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.upload-placeholder {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-placeholder:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-black);
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits-section {
    padding: var(--section-spacing) 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-white);
}

.benefits-section h2 {
    text-align: center;
    color: var(--medium-green);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 5px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 126, 50, 0.1), transparent);
    transition: left 0.5s;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    border-color: var(--light-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(78, 126, 50, 0.25);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--text-white);
}

.benefit-item:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--medium-green);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(78, 126, 50, 0.08) 0%, rgba(93, 181, 58, 0.12) 100%);
    border-radius: 50%;
    position: relative;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--medium-green) 0%, var(--light-green) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.benefit-icon svg {
    position: relative;
    z-index: 1;
}

.benefit-item h3 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
}

.benefit-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ========================================
   Products & Services Section
   ======================================== */
.services-section {
    padding: var(--section-spacing) 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-white);
}

.services-section h2 {
    text-align: center;
    color: var(--medium-green);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 5px;
    color: var(--primary-black);
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.service-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-yellow);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--medium-green);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-black);
}

.benefits-list {
    list-style: none;
    margin-top: 1rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.benefits-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.5rem;
}

/* ========================================
   Products Header Section (Fondo Blanco)
   ======================================== */
.products-header-section {
    padding: var(--section-spacing) 2rem 3rem;
    background: var(--bg-white);
    max-width: 1400px;
    margin: 0 auto;
}

.products-header-section h2 {
    text-align: center;
    color: var(--medium-green);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.products-header-section .section-intro {
    text-align: center;
    color: #666;
    font-size: 1.3rem;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
    padding: 0 2rem;
}

/* ========================================
   Detailed Products Section
   ======================================== */
.detailed-products-section {
    position: relative;
    padding: var(--section-spacing) 2rem;
    margin-top: 0;
    overflow: hidden;
}

.detailed-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/Fondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.detailed-products-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.detailed-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.detailed-products-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.detailed-products-grid.single-centered {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 2.5rem auto 0;
}

.detailed-product-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
}

.detailed-product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd700 100%);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 253, 83, 0.5);
    z-index: 10;
}

.product-badge.tech-badge {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--medium-green) 100%);
    color: var(--text-white);
}

.product-image-container {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-placeholder {
    color: var(--medium-green);
    font-size: 1rem;
    text-align: center;
    padding: 2rem;
}

.product-content {
    padding: 1.5rem;
}

.product-icon {
    font-size: 3rem;
    color: var(--medium-green);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(78, 126, 50, 0.08) 0%, rgba(93, 181, 58, 0.12) 100%);
    border-radius: 50%;
    position: relative;
}

.product-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--medium-green) 0%, var(--light-green) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.detailed-product-card:hover .product-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--text-white);
}

.detailed-product-card:hover .product-icon::before {
    opacity: 1;
}

.product-icon svg {
    position: relative;
    z-index: 1;
}

.product-content h3 {
    color: var(--medium-green);
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-top: 1rem;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    padding: var(--section-spacing) 2rem;
    background: var(--bg-white);
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-section h2 {
    text-align: center;
    color: var(--medium-green);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.pricing-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.pricing-table-container {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 1200px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.pricing-table thead {
    background: var(--medium-green);
    color: var(--text-white);
}

.pricing-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 2px solid var(--light-green);
}

.pricing-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    font-size: 1rem;
}

.pricing-table tbody tr:hover {
    background: #f9f9f9;
    transition: all 0.3s;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table .modalidad-cell {
    font-weight: bold;
    color: var(--medium-green);
    font-size: 1.1rem;
}

.pricing-table .precio-cell {
    font-weight: bold;
    color: var(--light-green);
    font-size: 1.15rem;
}

.pricing-note {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: 2rem;
    font-style: italic;
}

.pricing-table-drone thead {
    background: var(--medium-green);
}

.pricing-table-satellite thead {
    background: var(--medium-green);
}

.pricing-table-drone tbody tr:hover {
    background: rgba(93, 181, 58, 0.05);
}

.pricing-table-satellite tbody tr:hover {
    background: rgba(93, 181, 58, 0.05);
}

.pricing-table-drone .modalidad-cell {
    color: var(--medium-green);
}

.pricing-table-satellite .modalidad-cell {
    color: var(--medium-green);
}

.pricing-table-drone .precio-cell {
    color: var(--light-green);
}

.pricing-table-satellite .precio-cell {
    color: var(--light-green);
}

/* Modern Pricing Cards */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
}

/* Satellite cards - 2x2 layout */
.pricing-cards-container.satellite-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(78, 126, 50, 0.25);
    border-color: var(--light-green);
}

.pricing-card.featured {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd700 100%);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 253, 83, 0.4);
}

.pricing-card-header {
    background: linear-gradient(135deg, var(--medium-green) 0%, var(--light-green) 100%);
    color: var(--text-white);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.pricing-card.featured .pricing-card-header {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
}

.pricing-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.pricing-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.pricing-card-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 300;
}

.pricing-card-price {
    background: var(--bg-white);
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
}

.price-primary {
    font-size: 2rem;
    font-weight: 700;
    color: var(--medium-green);
    margin-bottom: 0.3rem;
}

.price-secondary {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-green);
    margin-bottom: 0.8rem;
}

.price-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.pricing-card-body {
    padding: 2rem;
}

.pricing-feature {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature-label {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.pricing-feature-value {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.pricing-card-footer {
    padding: 2rem;
    text-align: center;
    background: #f9f9f9;
}

.pricing-cta {
    background: var(--light-green);
    color: var(--text-white);
    padding: 1rem 2rem;
    border: 2px solid var(--light-green);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.pricing-cta:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 181, 58, 0.3);
}

.pricing-subsection-title {
    text-align: center;
    color: var(--medium-green);
    font-size: 2rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: center;
}

/* ========================================
   Success Projects Section
   ======================================== */
.success-projects-section {
    padding: var(--section-spacing) 2rem;
    background: #f5f5f5;
    max-width: 1400px;
    margin: 0 auto;
}

.success-projects-section h2 {
    text-align: center;
    color: var(--medium-green);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.projects-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.project-logo-container {
    width: 350px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.4s ease;
}

.project-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.3);
    transition: all 0.4s ease;
    opacity: 0.4;
}

.project-logo-container:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a2f14 100%);
    color: var(--text-white);
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--light-green) 50%, var(--primary-yellow) 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.footer-section p {
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-cta h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.8rem;
}

.footer-cta p {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--dark-green);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-yellow);
    box-shadow: 0 8px 20px rgba(255, 253, 83, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 300;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-yellow);
}

/* ========================================
   Before/After Comparison Slider
   ======================================== */
.comparison-section {
    padding: var(--section-spacing) 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-section h2 {
    text-align: center;
    color: var(--medium-green);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.comparison-intro {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
}

.comparison-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--medium-green);
}

.comparison-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
    background: #000;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-before {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.comparison-after {
    z-index: 1;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--primary-yellow);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-2px);
}

.comparison-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    border-radius: 50%;
    border: 3px solid var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.comparison-slider::after {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark-green);
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 1;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    z-index: 4;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.comparison-label.before {
    left: 20px;
}

.comparison-label.after {
    right: 20px;
    background: rgba(78, 126, 50, 0.9);
}

.comparison-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-feature {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.comparison-feature:hover {
    transform: translateY(-5px);
    border-color: var(--light-green);
    box-shadow: 0 10px 30px rgba(78, 126, 50, 0.15);
}

.comparison-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-green);
}

.comparison-feature h3 {
    color: var(--medium-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.comparison-feature p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ========================================
   Statistics Counter Section - TEMPORALMENTE DESACTIVADA
   ======================================== */
.stats-section {
    display: none !important; /* OCULTAR COMPLETAMENTE LA SECCIÓN */
    position: relative;
    padding: var(--section-spacing) 2rem;
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a2f14 100%);
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,253,83,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-header h2 {
    color: var(--primary-yellow);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.stats-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 253, 83, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--light-green) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 50px rgba(255, 253, 83, 0.2);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.4s;
    color: var(--primary-yellow);
}

.stat-icon svg {
    stroke: var(--primary-yellow);
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2px;
}

.stat-label {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

.stats-cta {
    text-align: center;
    margin-top: 4rem;
}

.stats-cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-yellow);
    color: var(--dark-green);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(255, 253, 83, 0.3);
}

.stats-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 253, 83, 0.5);
    background: var(--text-white);
}

.agtech-link {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.8rem 2rem;
    background: var(--primary-yellow);
    color: var(--dark-green);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid var(--primary-yellow);
}

.agtech-link:hover {
    transform: scale(1.05);
    background: transparent;
    color: var(--primary-yellow);
}

/* ========================================
   GLASSMORPHISM & MODERN EFFECTS
   ======================================== */

/* Glassmorphism Cards with Enhanced Shadows */
.benefit-item,
.analisis-card,
.detailed-product-card,
.pricing-card,
.comparison-feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px 0 rgba(78, 126, 50, 0.15),
        0 2px 8px 0 rgba(0, 0, 0, 0.05),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
}

/* Enhanced Gradients & Glow Effects */
.cta-button,
.pricing-cta,
.stats-cta-button {
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(93, 181, 58, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--light-green) 0%, var(--medium-green) 100%);
}

.cta-button::before,
.pricing-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 253, 83, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover,
.pricing-cta:hover,
.stats-cta-button:hover {
    box-shadow:
        0 8px 25px rgba(255, 253, 83, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.cta-button:hover::before,
.pricing-cta:hover::before {
    width: 300px;
    height: 300px;
}

/* Smooth Hover Animations */
.benefit-item,
.analisis-card,
.detailed-product-card,
.pricing-card,
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-item:hover,
.analisis-card:hover,
.detailed-product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(78, 126, 50, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(93, 181, 58, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
}

/* Animated Gradient Borders */
@keyframes gradient-rotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(255,253,83,0.05) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow:
        0 15px 50px rgba(255, 253, 83, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg,
        var(--primary-yellow),
        var(--light-green),
        var(--primary-yellow),
        var(--medium-green));
    background-size: 300% 300%;
    animation: gradient-rotate 3s ease infinite;
    box-shadow: 0 0 30px rgba(255, 253, 83, 0.4);
}

/* Icon Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(93, 181, 58, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(93, 181, 58, 0.8);
    }
}

.benefit-icon,
.analisis-icon,
.product-icon {
    animation: float 3s ease-in-out infinite;
}

.benefit-item:hover .benefit-icon,
.analisis-card:hover .analisis-icon,
.detailed-product-card:hover .product-icon {
    animation: float 1.5s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
}

/* Ripple Effect for Buttons */
.cta-button,
.cta-button-secondary,
.pricing-cta {
    position: relative;
    overflow: hidden;
}

.cta-button::after,
.cta-button-secondary::after,
.pricing-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
    opacity: 0;
}

.cta-button:active::after,
.cta-button-secondary:active::after,
.pricing-cta:active::after {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: 0s;
}

/* Enhanced Shadow Depth */
.hero-stat {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-stat:hover {
    box-shadow: 0 15px 60px rgba(255, 253, 83, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Parallax Hover Effect on Cards */
.detailed-product-card,
.pricing-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.detailed-product-card:hover,
.pricing-card:hover {
    transform: translateY(-15px) rotateX(2deg);
}

/* Smooth Text Glow */
.hero h1 {
    text-shadow: 0 0 20px rgba(255, 253, 83, 0.3),
                 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse-glow-text 3s ease-in-out infinite;
}

@keyframes pulse-glow-text {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 253, 83, 0.3),
                     2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 253, 83, 0.5),
                     2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

/* Modern Divider Animation */
.section-divider {
    animation: expand-divider 1s ease-out;
}

@keyframes expand-divider {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

/* Improved Border Radius */
.benefit-item,
.analisis-card,
.detailed-product-card,
.comparison-feature {
    border-radius: 20px;
}

.pricing-card {
    border-radius: 25px;
}

/* Gradient Overlays */
.product-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.detailed-product-card:hover .product-image-container::after {
    opacity: 1;
}

/* Shimmer Effect on Badges */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.product-badge,
.pricing-badge {
    position: relative;
    overflow: hidden;
}

.product-badge::after,
.pricing-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}

/* Smooth Scale Animation */
@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.benefit-item.animated,
.pricing-card.animated,
.detailed-product-card.animated {
    animation: scale-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Enhanced Gradient Backgrounds */
.detailed-products-section::after {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(45, 74, 31, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    ) !important;
}

.hero-stat {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-stat:hover {
    background: linear-gradient(135deg,
        rgba(45, 74, 31, 0.8) 0%,
        rgba(78, 126, 50, 0.7) 100%
    );
}

/* Improved Section Backgrounds */
.benefits-section,
.upload-section,
.pricing-section {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 250, 248, 1) 50%,
        rgba(255, 255, 255, 1) 100%
    );
}

/* Enhanced Icon Containers */
.benefit-icon,
.analisis-icon,
.product-icon {
    background: linear-gradient(135deg,
        rgba(78, 126, 50, 0.1) 0%,
        rgba(93, 181, 58, 0.15) 50%,
        rgba(78, 126, 50, 0.08) 100%
    );
}

.benefit-icon::before,
.analisis-icon::before,
.product-icon::before {
    background: linear-gradient(135deg,
        var(--medium-green) 0%,
        var(--light-green) 50%,
        var(--medium-green) 100%
    );
}

/* Badge Gradients */
.product-badge {
    background: linear-gradient(135deg,
        var(--primary-yellow) 0%,
        #ffd700 50%,
        var(--primary-yellow) 100%
    );
}

.pricing-badge {
    background: linear-gradient(135deg,
        var(--primary-yellow) 0%,
        #ffed4e 50%,
        var(--primary-yellow) 100%
    );
}

/* ========================================
   SMOOTH HOVER ANIMATIONS & TRANSITIONS
   ======================================== */

/* Smooth Card Hover Effects */
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 70px rgba(78, 126, 50, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(93, 181, 58, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow:
        0 15px 40px rgba(78, 126, 50, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Smooth Button Transitions */
.cta-button,
.cta-button-secondary,
.pricing-cta,
.stats-cta-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover,
.pricing-cta:hover {
    transform: translateY(-3px) scale(1.02);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-button-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Smooth Icon Hover Effects */
.benefit-icon,
.analisis-icon,
.product-icon {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-item:hover .benefit-icon,
.analisis-card:hover .analisis-icon,
.detailed-product-card:hover .product-icon {
    transform: scale(1.15) rotate(-5deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Smooth Social Link Hover */
.social-link {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.15) rotate(5deg);
}

/* Smooth Logo Hover */
.project-logo-container {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-logo-container:hover {
    transform: scale(1.08);
}

.project-logo-container img {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Smooth Comparison Feature Hover */
.comparison-feature {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.comparison-feature:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Smooth Statistics Card Hover */
.stat-card {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.stat-icon {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover .stat-icon {
    transform: scale(1.25) rotate(5deg);
}

/* Smooth Navigation Hover */
nav a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 80%;
}

/* Smooth Footer Link Hover */
.footer-links a {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '\u2192';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat {
        padding: 1rem 1.5rem;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-stat-label {
        font-size: 0.9rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    header {
        padding: 1rem;
    }

    nav {
        flex-wrap: wrap;
    }

    .logo-container {
        width: 120px;
        height: 50px;
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark-green);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
    }

    .logo-container:last-child {
        display: none;
    }

    .upload-options {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .analisis-options {
        grid-template-columns: 1fr;
    }

    .upload-main-options {
        grid-template-columns: 1fr;
    }

    .detailed-products-grid,
    .detailed-products-grid.two-columns,
    .detailed-products-grid.single-centered {
        grid-template-columns: 1fr;
    }

    .detailed-products-section {
        padding: 3rem 1rem;
    }

    .product-content {
        padding: 1.5rem;
    }

    .projects-logos-grid {
        gap: 3rem;
    }

    .project-logo-container {
        width: 200px;
        height: 100px;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 0.5rem;
    }

    .pricing-table th {
        font-size: 0.95rem;
    }

    .pricing-table .modalidad-cell {
        font-size: 1rem;
    }

    .pricing-table .precio-cell {
        font-size: 1rem;
    }

    .pricing-section h3 {
        font-size: 1.5rem !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .pricing-section h3 svg {
        width: 30px !important;
        height: 30px !important;
    }

    .pricing-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-cards-container.satellite-row {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-5px);
    }

    .pricing-card-title {
        font-size: 1.5rem;
    }

    .price-primary {
        font-size: 1.6rem;
    }

    .price-secondary {
        font-size: 1.1rem;
    }

    .pricing-subsection-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing-badge {
        top: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .comparison-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-slider::before {
        width: 40px;
        height: 40px;
    }

    .comparison-slider::after {
        font-size: 1.2rem;
    }

    .comparison-label {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stats-header h2 {
        font-size: 2rem;
    }

    /* Hero CTA Buttons - Mobile */
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Price Banner - Mobile */
    .price-banner {
        padding: 2rem 1rem;
    }

    .price-badge-large {
        flex-direction: column;
        gap: 1rem;
    }

    .price-badge-large svg {
        width: 50px !important;
        height: 50px !important;
    }

    .price-text-container {
        text-align: center;
    }

    .price-main-text {
        font-size: 2.5rem;
    }

    .price-sub-text {
        font-size: 1.1rem;
    }

    .price-banner-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .price-banner-cta {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 90%;
        max-width: 300px;
    }

    /* Upload Section - Mobile */
    .upload-section {
        padding: 3rem 1rem;
    }

    .upload-section h2 {
        font-size: 2rem;
    }

    /* Formulario - Mobile optimizations */
    .contact-form-section {
        padding: 1.5rem 0.5rem !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .contact-form-container {
        padding: 1.5rem 0.75rem !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        width: calc(100% - 1rem) !important;
    }

    .contact-form-container h3 {
        font-size: 1.5rem !important;
    }

    .contact-form-container p {
        font-size: 1rem !important;
    }

    .contact-form-container svg {
        width: 50px !important;
        height: 50px !important;
    }

    #uploadForm input,
    #uploadForm textarea,
    #uploadForm select {
        font-size: 16px !important; /* Previene zoom en iOS */
        padding: 0.75rem !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #uploadForm {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    #uploadForm > div {
        box-sizing: border-box !important;
        width: 100% !important;
    }

    #uploadForm label {
        font-size: 0.95rem !important;
    }

    /* Phone number field - Mobile optimizations - Stack vertically */
    #uploadForm > div:has(#countryCode) > div {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    #countryCode {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 0.75rem !important;
        font-size: 16px !important;
    }

    #userPhone {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 0.75rem !important;
        font-size: 16px !important;
        flex: none !important;
    }

    .analisis-mapia {
        padding: 2rem 1rem;
    }

    .upload-placeholder {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   Analysis Type Selection Modal
   ======================================== */
.analysis-type-card {
    transition: all 0.3s ease;
}

.analysis-type-card:hover {
    border-color: var(--light-green) !important;
    background: rgba(93, 181, 58, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(93, 181, 58, 0.2);
}

.analysis-type-card:active {
    transform: translateY(-2px);
}

/* ========================================
   Price Banner Section (Precio Destacado)
   ======================================== */
.price-banner {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--medium-green) 100%);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-yellow);
}

.price-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,253,83,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.price-banner-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.price-badge-large {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-badge-large svg {
    color: var(--primary-yellow);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.price-text-container {
    text-align: left;
}

.price-main-text {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.price-sub-text {
    font-size: 1.4rem;
    color: var(--text-white);
    font-weight: 600;
    margin-top: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.price-banner-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-banner-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-yellow);
    color: var(--dark-green);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-banner-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 253, 83, 0.5);
    background: var(--text-white);
}

/* Hero CTA Button Sizes */
.hero-cta-primary,
.hero-cta-secondary {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Responsive para modal de análisis */
@media (max-width: 768px) {
    #analysisTypeModal > div {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .analysis-type-card {
        padding: 1rem !important;
    }

    .analysis-type-card h4 {
        font-size: 1.2rem !important;
    }

    .analysis-type-card p {
        font-size: 0.85rem !important;
    }

    .analysis-type-card > div > div:first-child {
        width: 50px !important;
        height: 50px !important;
    }

    .analysis-type-card svg {
        width: 24px !important;
        height: 24px !important;
    }
}
