@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap");

:root {
    --primary-color: #ffd54f;
    --primary-light: #fff3c4;
    --primary-dark: #ffca28;
    --accent-color: #ecc100;
    --text-light: #ffffff;
    --text-dark: #2c3e50;
    --gradient-start: rgba(0, 0, 0, 0);
    --gradient-end: rgba(0, 0, 0, 0.8);
    --background-light: #fffdf7;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --amber-950: #451a03;
    --text-darker: #2c3e50;
    --text-lighter: #718096;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Montserrat", sans-serif;
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff9900;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    display: none;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.85) saturate(1.1) contrast(1.05);
    transition: transform 8s ease;
    transform-origin: center;
    animation: subtle-zoom 25s infinite alternate;
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1.06);
    }
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: -1;
}

.content-wrapper {
    position: relative; /* Changed from absolute to relative */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 0 2rem;
}

.bee-container {
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 30px rgba(255, 213, 79, 0.2);
    animation: float 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    transform-style: preserve-3d;
}

.bee-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    animation: shimmer 12s linear infinite;
}

.bee-container::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 213, 79, 0.3);
    box-shadow: 0 0 20px rgba(255, 213, 79, 0.5);
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.3;
        box-shadow: 0 0 10px rgba(255, 213, 79, 0.3);
    }
    100% {
        opacity: 0.8;
        box-shadow: 0 0 30px rgba(255, 213, 79, 0.7);
    }
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-subtle {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-12px) rotate(2deg);
    }
    50% {
        transform: translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateY(8px) rotate(-2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Hero Text Styling */
.hero-text {
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
}

.hero-text h1 {
    font-family: "Playfair Display", serif;
    font-size: 5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.2);
    background: linear-gradient(
        to right,
        #ffffff 20%,
        var(--primary-light) 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    animation: text-reveal 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    position: relative;
    line-height: 1.1;
}

.hero-text h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(255, 213, 79, 0.8);
    opacity: 0;
    animation: fade-in 1.5s forwards 1s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes text-reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.brand-name {
    position: relative;
    font-weight: 700;
    display: inline-block;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(255, 213, 79, 0.5),
        0 0 30px rgba(255, 213, 79, 0.3);
}

@keyframes highlight-appear {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.tagline {
    font-size: 1.7rem;
    font-weight: 300;
    margin: 1.5rem 0 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-up 1.2s forwards 1s;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Button Styling */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fade-up 1.2s forwards 1.4s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 180px;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.1);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 213, 79, 0.5),
        0 12px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 15px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: float-random 20s infinite linear;
}

/* Create multiple particles with different sizes and animations */
.floating-particles::before,
.floating-particles::after,
.floating-particles .p1,
.floating-particles .p2,
.floating-particles .p3,
.floating-particles .p4,
.floating-particles .p5 {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-particle 15s infinite linear;
}

.floating-particles::before {
    width: 13vmin;
    height: 13vmin;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
    box-shadow: 0 0 20px rgba(255, 213, 79, 0.2);
}

.floating-particles::after {
    width: 7vmin;
    height: 7vmin;
    top: 70%;
    left: 80%;
    animation-delay: -5s;
    animation-duration: 30s;
    box-shadow: 0 0 15px rgba(255, 213, 79, 0.15);
}

.floating-particles .p1 {
    width: 10vmin;
    height: 10vmin;
    top: 30%;
    left: 85%;
    animation-delay: -2s;
    animation-duration: 28s;
    background: rgba(255, 213, 79, 0.05);
}

.floating-particles .p2 {
    width: 5vmin;
    height: 5vmin;
    top: 60%;
    left: 30%;
    animation-delay: -7s;
    animation-duration: 22s;
    background: rgba(255, 213, 79, 0.05);
}

.floating-particles .p3 {
    width: 8vmin;
    height: 8vmin;
    top: 10%;
    left: 50%;
    animation-delay: -12s;
    animation-duration: 35s;
    background: rgba(255, 255, 255, 0.08);
}

.floating-particles .p4 {
    width: 6vmin;
    height: 6vmin;
    top: 80%;
    left: 15%;
    animation-delay: -9s;
    animation-duration: 27s;
    background: rgba(255, 255, 255, 0.06);
}

.floating-particles .p5 {
    width: 12vmin;
    height: 12vmin;
    top: 40%;
    left: 65%;
    animation-delay: -15s;
    animation-duration: 32s;
    background: rgba(255, 213, 79, 0.04);
}

@keyframes float-particle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -50px) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes float-random {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translate(100px, -100px) scale(1.5) rotate(180deg);
        opacity: 0.4;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
        opacity: 0;
    }
}

/* Navbar styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.5rem 2rem;
    background: rgba(44, 62, 80, 0.05);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(44, 62, 80, 0.85);
    padding: 1rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Add a subtle light effect to the hero section */
.light-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 213, 79, 0.1) 0%,
        rgba(255, 213, 79, 0) 50%
    );
    pointer-events: none;
    z-index: -1;
    animation: rotate-light 30s infinite linear;
}

@keyframes rotate-light {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 4.5rem;
    }

    .tagline {
        font-size: 1.5rem;
        max-width: 90%;
    }
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 4rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .bee-container {
        width: 120px;
        height: 120px;
    }

    .btn {
        padding: 0.9rem 2.2rem;
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.3rem;
        max-width: 100%;
    }

    .bee-container {
        width: 100px;
        height: 100px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .bee-container {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }

    .navbar {
        padding: 1rem;
    }

    .navbar.scrolled {
        padding: 0.8rem 1rem;
    }
}

/*Sección 2*/

/* MaiA Section - Enhanced Styling for Multiple Vertical Sections */
.maia-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #fff 100%);
    overflow: hidden;
    z-index: 1;
}

/* Honeycomb background pattern */
.maia-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='rgba(255, 213, 79, 0.08)' stroke-width='1' d='M25,50 L37.5,68.3 L62.5,68.3 L75,50 L62.5,31.7 L37.5,31.7 Z'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.6;
    z-index: -1;
}

/* Radial gradient overlays */
.maia-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at 10% 20%,
            rgba(255, 213, 79, 0.1) 0%,
            rgba(255, 213, 79, 0) 50%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(255, 213, 79, 0.1) 0%,
            rgba(255, 213, 79, 0) 60%
        );
    z-index: -1;
}

.maia-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

/* Floating bee elements for the container */
.maia-container::before,
.maia-container::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 213, 79, 0.8);
    z-index: -1;
    opacity: 0.7;
}

.maia-container::before {
    top: 15%;
    left: 5%;
    animation: float-bee 8s ease-in-out infinite;
}

.maia-container::after {
    bottom: 10%;
    right: 8%;
    animation: float-bee 10s ease-in-out infinite 2s;
}

/* Content section styling */
.maia-content-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 120px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 1s ease-out forwards;
}

/* Stagger animations for each section */
.maia-content-section:nth-child(2) {
    animation-delay: 0.2s;
}

.maia-content-section:nth-child(3) {
    animation-delay: 0.4s;
}

.maia-content-section:nth-child(4) {
    animation-delay: 0.6s;
}

.maia-content-section:nth-child(5) {
    animation-delay: 0.8s;
    margin-bottom: 0; /* Remove margin from last section */
}

/* Section title styling */
.section-title {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title .highlight {
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 213, 79, 0.3);
}

/* Section title decoration */
.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(255, 213, 79, 0.2) 0%,
        rgba(255, 213, 79, 0.8) 50%,
        rgba(255, 213, 79, 0.2) 100%
    );
    border-radius: 3px;
}

/* Content row styling for each section */
.maia-content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
    width: 100%;
    position: relative;
}

/* Alternate layout for even sections */
.maia-content-section:nth-child(even) .maia-content-row {
    flex-direction: row-reverse;
}

/* Animations */
@keyframes float-bee {
    0%,
    100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(15px, -15px);
    }
    50% {
        transform: translate(0, -30px);
    }
    75% {
        transform: translate(-15px, -15px);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text content styling */
.maia-text {
    flex: 1;
    max-width: 600px;
    position: relative;
}

/* Glowing orb behind text */
.maia-text::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 120px;
    height: 120px;
    background: rgba(255, 213, 79, 0.15);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    animation: pulse-subtle 6s infinite alternate;
}

@keyframes pulse-subtle {
    0% {
        opacity: 0.15;
        transform: scale(1);
    }
    100% {
        opacity: 0.25;
        transform: scale(1.1);
    }
}

.maia-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: text-fade-in 0.8s ease-out forwards;
}

.maia-text p:nth-child(2) {
    animation-delay: 0.3s;
}

.maia-text p:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes text-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature list styling */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: text-fade-in 0.8s ease-out forwards 0.8s;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 213, 79, 0.2);
    border-radius: 10px;
    color: var(--primary-dark);
}

.feature-text {
    font-weight: 600;
    color: var(--text-dark);
}

/* Estilo de beneficios */
/* Estilos colapsables para la sección "Beneficios" */
.benefits-container {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    opacity: 0;
    transform: translateY(20px);
    animation: text-fade-in 0.8s ease-out forwards 0.8s;
    border: 1px solid rgba(255, 213, 79, 0.15);
    box-shadow: inset 0 0 20px rgba(255, 214, 79, 0.15),
        0 0 25px rgba(255, 214, 79, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.benefits-container::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: 50px;
    background: linear-gradient(
            45deg,
            rgba(255, 213, 79, 0.4),
            rgba(252, 202, 40, 0.3),
            rgba(255, 152, 0, 0.3),
            rgba(180, 83, 9, 0.4)
        )
        border-box;
    filter: blur(3px);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: border-shine 6s linear infinite;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.benefits-container::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        rgba(255, 213, 79, 0.1),
        rgba(252, 202, 40, 0.05),
        rgba(255, 152, 0, 0.05),
        rgba(180, 83, 9, 0.1)
    );
    border-radius: 52px;
    filter: blur(8px);
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite alternate;
    pointer-events: none;
}

.benefits-container .collapsible-header::after {
    position: absolute;
    right: 50px;
    font-size: 0.85em;
    color: rgba(231, 149, 25, 0.8);
    opacity: 0.9;
    font-style: italic;
    text-shadow: 0 0 5px rgba(231, 149, 25, 0.2);
}

@keyframes border-shine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.benefits-container.collapsible-container {
    opacity: 1;
    transform: none;
    animation: none;
}

.benefits-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.benefit-check {
    color: var(--primary-dark);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* Metrics styling */
.metrics-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: text-fade-in 0.8s ease-out forwards 0.8s;
}

.metric-item {
    flex: 1;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.6) 100%
    );
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.sustainability-note {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(255, 213, 79, 0.5);
}

.maia-video-container {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.video-showcase {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.video-showcase-wide {
    height: 350px;
}

.video-hexagon {
    position: relative;
    width: 320px;
    height: 400px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: float-video 8s ease-in-out infinite;
}

/* Improved hexagon border */
.hexagon-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: 3;
    pointer-events: none;
    background: transparent;
    border: 2px solid rgba(255, 213, 79, 0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: border-pulse 4s infinite alternate;
}

.hexagon-border-alt {
    border-color: rgba(255, 213, 79, 0.2);
    animation-delay: 2s;
}

.hexagon-border-wide {
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

@keyframes border-pulse {
    0% {
        opacity: 0.3;
        border-color: rgba(255, 213, 79, 0.3);
    }
    100% {
        opacity: 0.8;
        border-color: rgba(255, 213, 79, 0.8);
    }
}

.video-hexagon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 213, 79, 0.1) 0%,
        rgba(255, 213, 79, 0) 70%
    );
    z-index: 3;
    pointer-events: none;
}

/* Clip path for hexagon shape */
.video-hexagon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.video-hexagon-alt {
    transform: perspective(1000px) rotateY(5deg) rotateX(2deg);
    animation-name: float-video-alt;
}

.video-hexagon-wide {
    width: 480px;
    height: 300px;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

.video-hexagon:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 30px rgba(255, 213, 79, 0.3);
}

@keyframes float-video {
    0%,
    100% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg)
            translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg)
            translateY(-15px);
    }
}

@keyframes float-video-alt {
    0%,
    100% {
        transform: perspective(1000px) rotateY(5deg) rotateX(2deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(5deg) rotateX(2deg)
            translateY(-15px);
    }
}

/* Video styling */
.feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Glow effect behind video */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 430px;
    background: rgba(255, 213, 79, 0.15);
    filter: blur(40px);
    z-index: 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: pulse-glow 6s infinite alternate;
}

.glow-effect-alt {
    background: rgba(255, 213, 79, 0.12);
    animation-delay: 2s;
}

.glow-effect-wide {
    width: 510px;
    height: 330px;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

@keyframes pulse-glow {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Improved floating hexagon decorations */
.floating-hexagon {
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath fill='rgba(255, 213, 79, 0.2)' d='M20,2 L38,12 L38,28 L20,38 L2,28 L2,12 Z'/%3E%3C/svg%3E");
    background-size: contain;
    z-index: 1;
    opacity: 0.7;
    animation: float-hex 15s ease-in-out infinite;
}

.floating-hexagon-sm {
    width: 30px;
    height: 30px;
    animation-duration: 12s;
}

.floating-hexagon-md {
    width: 40px;
    height: 40px;
    animation-duration: 15s;
}

.floating-hexagon-lg {
    width: 50px;
    height: 50px;
    animation-duration: 18s;
}

@keyframes float-hex {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* Add a subtle animated gradient line */
.animated-line {
    position: absolute;
    bottom: -60px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 213, 79, 0) 0%,
        rgba(255, 213, 79, 0.5) 50%,
        rgba(255, 213, 79, 0) 100%
    );
    opacity: 0.3;
    animation: line-move 15s linear infinite;
}

@keyframes line-move {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Testimonials styling */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: text-fade-in 0.8s ease-out forwards;
}

.testimonial-item:nth-child(1) {
    animation-delay: 0.3s;
}

.testimonial-item:nth-child(2) {
    animation-delay: 0.6s;
}

.testimonial-item:nth-child(3) {
    animation-delay: 0.9s;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-item::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(255, 213, 79, 0.2);
    z-index: 0;
}

.testimonial-quote {
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 213, 79, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    font-weight: bold;
    color: var(--primary-dark);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Call to Action styling */
.cta-container {
    background: linear-gradient(
        135deg,
        rgba(255, 213, 79, 0.15) 0%,
        rgba(255, 213, 79, 0.05) 100%
    );
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--primary-dark);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 213, 79, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 213, 79, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.cta-button.secondary:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Honeycomb background for CTA */
.cta-honeycomb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

.honeycomb-cell {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='rgba(255, 213, 79, 0.3)' stroke-width='1' d='M25,50 L37.5,68.3 L62.5,68.3 L75,50 L62.5,31.7 L37.5,31.7 Z'/%3E%3C/svg%3E");
    background-size: contain;
}

.honeycomb-cell:nth-child(1) {
    top: 10%;
    left: 5%;
}

.honeycomb-cell:nth-child(2) {
    top: 20%;
    right: 10%;
}

.honeycomb-cell:nth-child(3) {
    bottom: 15%;
    left: 15%;
}

.honeycomb-cell:nth-child(4) {
    bottom: 20%;
    right: 15%;
}

.honeycomb-cell:nth-child(5) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.honeycomb-cell:nth-child(6) {
    top: 70%;
    left: 30%;
}

.honeycomb-cell:nth-child(7) {
    top: 30%;
    right: 30%;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .maia-content-row {
        gap: 4rem;
    }

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

    .video-hexagon-wide {
        width: 420px;
        height: 270px;
    }

    .glow-effect-wide {
        width: 450px;
        height: 300px;
    }

    .testimonials-container {
        gap: 1.5rem;
    }

    .testimonial-item {
        min-width: 280px;
    }
}

@media (max-width: 992px) {
    .maia-section {
        padding: 80px 0;
    }

    .maia-content-row,
    .maia-content-section:nth-child(even) .maia-content-row {
        flex-direction: column;
        text-align: center;
        gap: 5rem;
    }

    .maia-text {
        max-width: 100%;
        order: 1;
    }

    .maia-video-container {
        margin: 0 auto 3rem;
        order: 0;
        max-width: 100%;
    }

    .maia-text::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .maia-content-section {
        margin-bottom: 100px;
    }

    .maia-content-section:last-child {
        margin-bottom: 0;
    }

    .video-showcase {
        height: 400px;
    }

    .video-showcase-wide {
        height: 320px;
    }

    .feature-list {
        justify-content: center;
    }

    .metrics-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .metric-item {
        width: 100%;
        max-width: 300px;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-item {
        max-width: 100%;
    }

    .cta-title {
        font-size: 2.2rem;
    }
}

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

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

    .maia-text p {
        font-size: 1.1rem;
    }

    .video-hexagon {
        width: 280px;
        height: 350px;
    }

    .video-hexagon-wide {
        width: 360px;
        height: 230px;
    }

    .glow-effect {
        width: 310px;
        height: 380px;
    }

    .glow-effect-wide {
        width: 390px;
        height: 260px;
    }

    .maia-content-section {
        margin-bottom: 80px;
    }

    .video-showcase {
        height: 380px;
    }

    .video-showcase-wide {
        height: 280px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .maia-section {
        padding: 40px 0;
    }

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

    .video-hexagon {
        width: 240px;
        height: 300px;
    }

    .video-hexagon-wide {
        width: 280px;
        height: 180px;
    }

    .glow-effect {
        width: 270px;
        height: 330px;
    }

    .glow-effect-wide {
        width: 310px;
        height: 210px;
    }

    .maia-content-section {
        margin-bottom: 60px;
    }

    .video-showcase {
        height: 330px;
    }

    .video-showcase-wide {
        height: 230px;
    }

    .feature-list {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
    }

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

    .cta-description {
        font-size: 1.1rem;
    }
}

/* Efficiency and Productivity Section Styling */
.efficiency-stats {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: text-fade-in 0.8s ease-out forwards 0.8s;
}

.efficiency-stat-row {
    margin-bottom: 1.5rem;
}

.efficiency-bar-container {
    width: 100%;
}

.efficiency-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.efficiency-bar-wrapper {
    height: 30px;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.efficiency-bar {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-radius: 6px;
    transition: width 1.5s ease-out;
    position: relative;
    overflow: hidden;
}

.efficiency-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    animation: bar-shine 3s linear infinite;
}

@keyframes bar-shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.efficiency-bar-before {
    background: #e0e0e0;
    color: #666;
    width: 0;
    animation: bar-grow 1.5s ease-out forwards;
}

.efficiency-bar-after {
    background: linear-gradient(
        90deg,
        rgba(255, 213, 79, 0.7) 0%,
        rgba(255, 213, 79, 0.9) 100%
    );
    color: var(--text-dark);
    font-weight: 600;
    width: 0;
    animation: bar-grow 1.5s ease-out forwards 0.5s;
}

@keyframes bar-grow {
    0% {
        width: 0;
    }
    100% {
        width: var(--width, 100%);
    }
}

.efficiency-bar span {
    position: relative;
    z-index: 2;
}

/* Productivity features styling */
.productivity-features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: text-fade-in 0.8s ease-out forwards 1s;
}

.productivity-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.productivity-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.productivity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: rgba(255, 213, 79, 0.2);
    border-radius: 12px;
    color: var(--primary-dark);
}

.productivity-content {
    flex: 1;
}

.productivity-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.productivity-content p {
    font-size: 1rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Efficiency showcase styling */
.efficiency-showcase {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.efficiency-image-hexagon {
    position: relative;
    width: 320px;
    height: 400px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: float-video 8s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.efficiency-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.hexagon-border-efficiency {
    border-color: rgba(255, 213, 79, 0.4);
    animation-delay: 1s;
}

.glow-effect-efficiency {
    background: rgba(255, 213, 79, 0.18);
    animation-delay: 1.5s;
}

.efficiency-stats-overlay {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    z-index: 3;
}

.efficiency-stat-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 213, 79, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: pulse-circle 3s infinite alternate;
}

@keyframes pulse-circle {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Floating particles */
.floating-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 213, 79, 0.6);
    box-shadow: 0 0 10px rgba(255, 213, 79, 0.8);
    z-index: 1;
    animation: float-particle 10s ease-in-out infinite;
}

@keyframes float-particle {
    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }
    25% {
        transform: translate(15px, -15px);
        opacity: 0.9;
    }
    50% {
        transform: translate(0, -25px);
        opacity: 0.6;
    }
    75% {
        transform: translate(-15px, -10px);
        opacity: 0.9;
    }
}

/* Responsive adjustments for efficiency section */
@media (max-width: 992px) {
    .efficiency-stats-overlay {
        top: auto;
        right: 20px;
        bottom: 20px;
        transform: none;
    }

    .productivity-features {
        align-items: center;
    }

    .productivity-feature {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .efficiency-stat-circle {
        width: 80px;
        height: 80px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .efficiency-bar span {
        font-size: 0.9rem;
    }

    .productivity-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .productivity-icon {
        margin-bottom: 1rem;
    }
}

/*Sección de herramientas*/

/* Estilos generales de la sección */
.herramientas-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        var(--background-light) 0%,
        #ffffff 100%
    );
    overflow: hidden;
    z-index: 1;
}

/* Patrón de fondo de panal de abeja */
.herramientas-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23fbbf24' d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100'/%3E%3C/svg%3E");
    background-size: 56px 100px;
    opacity: 0.08;
    z-index: -1;
}

/* Nuevas partículas decorativas */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

/* Diferentes formas y tamaños de partículas */
.particle-1,
.particle-5,
.particle-9 {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 213, 79, 0.3);
    border-radius: 50%;
}

.particle-2,
.particle-6,
.particle-10 {
    width: 15px;
    height: 15px;
    background-color: rgba(253, 230, 138, 0.25);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.particle-3,
.particle-7,
.particle-11 {
    width: 10px;
    height: 10px;
    background-color: rgba(252, 211, 77, 0.2);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.particle-4,
.particle-8,
.particle-12 {
    width: 8px;
    height: 8px;
    background-color: rgba(245, 158, 11, 0.15);
    transform: rotate(45deg);
}

/* Posiciones y animaciones de las partículas */
.particle-1 {
    top: 15%;
    left: 10%;
    animation: particle-move-1 20s linear infinite;
}

.particle-2 {
    top: 25%;
    left: 20%;
    animation: particle-move-2 25s linear infinite;
}

.particle-3 {
    top: 60%;
    left: 5%;
    animation: particle-move-3 22s linear infinite;
}

.particle-4 {
    top: 75%;
    left: 15%;
    animation: particle-move-4 18s linear infinite;
}

.particle-5 {
    top: 10%;
    right: 15%;
    animation: particle-move-5 24s linear infinite;
}

.particle-6 {
    top: 30%;
    right: 10%;
    animation: particle-move-6 26s linear infinite;
}

.particle-7 {
    top: 55%;
    right: 20%;
    animation: particle-move-7 23s linear infinite;
}

.particle-8 {
    top: 80%;
    right: 10%;
    animation: particle-move-8 19s linear infinite;
}

.particle-9 {
    top: 20%;
    left: 40%;
    animation: particle-move-9 21s linear infinite;
}

.particle-10 {
    top: 40%;
    left: 30%;
    animation: particle-move-10 27s linear infinite;
}

.particle-11 {
    top: 35%;
    right: 35%;
    animation: particle-move-11 22s linear infinite;
}

.particle-12 {
    top: 70%;
    right: 40%;
    animation: particle-move-12 20s linear infinite;
}

/* Animaciones de movimiento para las partículas */
@keyframes particle-move-1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes particle-move-2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-80px, 80px) rotate(120deg);
    }
    66% {
        transform: translate(80px, 40px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes particle-move-3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(120px, -60px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes particle-move-4 {
    0% {
        transform: translate(0, 0) rotate(45deg);
    }
    25% {
        transform: translate(60px, -40px) rotate(135deg);
    }
    50% {
        transform: translate(100px, 0) rotate(225deg);
    }
    75% {
        transform: translate(40px, 40px) rotate(315deg);
    }
    100% {
        transform: translate(0, 0) rotate(405deg);
    }
}

@keyframes particle-move-5 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-100px, 80px) scale(1.2);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes particle-move-6 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-60px, -60px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 60px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes particle-move-7 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-80px, -40px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes particle-move-8 {
    0% {
        transform: translate(0, 0) rotate(45deg);
    }
    33% {
        transform: translate(-40px, -60px) rotate(165deg);
    }
    66% {
        transform: translate(-80px, 0) rotate(285deg);
    }
    100% {
        transform: translate(0, 0) rotate(405deg);
    }
}

@keyframes particle-move-9 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(40px, 60px) scale(1.1);
    }
    50% {
        transform: translate(80px, 0) scale(1);
    }
    75% {
        transform: translate(40px, -60px) scale(0.9);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes particle-move-10 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -70px) rotate(90deg);
    }
    50% {
        transform: translate(0, -140px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, -70px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes particle-move-11 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(60px, 60px) rotate(120deg);
    }
    66% {
        transform: translate(0, 120px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes particle-move-12 {
    0% {
        transform: translate(0, 0) rotate(45deg);
    }
    50% {
        transform: translate(-60px, -60px) rotate(225deg);
    }
    100% {
        transform: translate(0, 0) rotate(405deg);
    }
}

/* Contenedor principal con más espacio */
.herramientas-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%; /* Más espacio en los márgenes laterales */
    position: relative;
}

/* Sección de imagen hero mejorada */
.img-content-hero {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
}

.img-content-hero img {
    width: 100%;
    height: 500px; /* Imagen más alta */
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.05); /* Ligero zoom en la imagen */
    transition: transform 8s ease;
}

.img-content-hero:hover img {
    transform: scale(1.1); /* Efecto de zoom al pasar el mouse */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

/* Título simplificado */
.overlay .section-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    animation: fade-in-down 0.8s ease-out forwards;
}

.hero-description {
    color: #ffffff;
    font-size: 26px;
    max-width: 800px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: fade-in-up 0.8s ease-out forwards 0.5s;
    margin: 0 auto;
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Texto introductorio adicional */
.intro-text {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    animation: fade-in-up 0.8s ease-out forwards;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.herramientas-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1600px;
}

.herramienta-item {
    position: relative;
    perspective: 1000px;
    animation: fade-in-up 0.5s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

.herramienta-item:nth-child(1) {
    --item-index: 1;
}
.herramienta-item:nth-child(2) {
    --item-index: 2;
}
.herramienta-item:nth-child(3) {
    --item-index: 3;
}
.herramienta-item:nth-child(4) {
    --item-index: 4;
}
.herramienta-item:nth-child(5) {
    --item-index: 5;
}
.herramienta-item:nth-child(6) {
    --item-index: 6;
}
.herramienta-item:nth-child(7) {
    --item-index: 7;
}

.herramienta-inner {
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 213, 79, 0.1);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
    transform-style: preserve-3d;
    padding: 40px 30px; /* Más padding para dar espacio */
}

.herramienta-item:hover .herramienta-inner {
    transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 213, 79, 0.3), 0 0 30px rgba(255, 213, 79, 0.1);
}

/* Hexágono decorativo mejorado */
.hexagon-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 213, 79, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transform: rotate(30deg);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 0;
}

.herramienta-item:hover .hexagon-decoration {
    background-color: rgba(255, 213, 79, 0.2);
    transform: rotate(45deg) scale(1.1);
}

/* Contenedor de icono mejorado */
.herramienta-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.herramienta-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 213, 79, 0.2);
}

.herramienta-item:hover .herramienta-icon-container {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08),
        0 0 0 2px rgba(255, 213, 79, 0.3), 0 0 20px rgba(255, 213, 79, 0.2);
}

.herramienta-item:nth-child(3n + 1) .herramienta-icon-container {
    background: linear-gradient(
        135deg,
        rgba(255, 243, 199, 0.8) 0%,
        rgba(255, 243, 199, 0.9) 100%
    );
    color: #92400e;
}

.herramienta-item:nth-child(3n + 2) .herramienta-icon-container {
    background: linear-gradient(
        135deg,
        rgba(253, 230, 138, 0.8) 0%,
        rgba(253, 230, 138, 0.9) 100%
    );
    color: #78350f;
}

.herramienta-item:nth-child(3n + 3) .herramienta-icon-container {
    background: linear-gradient(
        135deg,
        rgba(252, 211, 77, 0.8) 0%,
        rgba(252, 211, 77, 0.9) 100%
    );
    color: #451a03;
}

/* Eliminado el efecto de brillo detrás del icono */

.herramienta-icon-container i {
    font-size: 36px; /* Icono más grande */
    transition: all 0.3s ease;
}

.herramienta-item:hover .herramienta-icon-container i {
    transform: scale(1.1);
}

/* Contenido de texto mejorado */
.herramienta-content {
    position: relative;
    z-index: 1;
}

.herramienta-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.herramienta-item:hover .herramienta-content h3 {
    color: #b45309;
}

.herramienta-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Estadísticas en cada tarjeta */
.herramienta-stats {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(255, 243, 199, 0.4);
    padding: 10px 15px;
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #b45309;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #4a5568;
}

/* Nota informativa final */
.info-footer {
    display: flex;
    align-items: center;
    background-color: rgba(255, 243, 199, 0.5);
    border-radius: 20px;
    padding: 30px;
    margin-top: 80px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    animation: fade-in-up 0.8s ease-out forwards;
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    box-shadow: 0 10px 20px rgba(255, 213, 79, 0.3);
}

.info-icon i {
    font-size: 30px;
    color: #92400e;
}

.info-footer p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Responsive Styles mejorados */
@media (max-width: 1400px) {
    .herramientas-list {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
    }

    .herramientas-section {
        padding: 100px 0;
    }

    .img-content-hero img {
        height: 450px;
    }

    .overlay .section-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 24px;
    }

    .intro-text {
        margin-bottom: 50px;
    }

    .intro-text p {
        font-size: 17px;
    }

    .info-footer {
        padding: 25px;
        margin-top: 70px;
    }

    .particles-container .particle {
        opacity: 0.5;
    }
}

@media (max-width: 1200px) {
    .herramientas-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }

    .herramientas-section {
        padding: 90px 0;
    }

    .img-content-hero {
        margin-bottom: 70px;
    }

    .img-content-hero img {
        height: 400px;
    }

    .overlay .section-title {
        font-size: 44px;
    }

    .hero-description {
        font-size: 22px;
    }

    .herramienta-inner {
        padding: 30px 25px;
    }

    .herramienta-icon-container {
        width: 70px;
        height: 70px;
    }

    .herramienta-icon-container i {
        font-size: 32px;
    }

    .stat-value {
        font-size: 22px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        margin-right: 20px;
    }

    .info-icon i {
        font-size: 26px;
    }

    .info-footer p {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .herramientas-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .herramientas-section {
        padding: 80px 0;
    }

    .img-content-hero {
        margin-bottom: 60px;
    }

    .img-content-hero img {
        height: 350px;
    }

    .overlay .section-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 20px;
    }

    .intro-text {
        margin-bottom: 40px;
    }

    .intro-text p {
        font-size: 16px;
    }

    .herramienta-inner {
        padding: 25px 20px;
    }

    .herramienta-icon-container {
        width: 65px;
        height: 65px;
    }

    .herramienta-icon-container i {
        font-size: 30px;
    }

    .herramienta-content h3 {
        font-size: 22px;
    }

    .herramienta-content p {
        font-size: 15px;
    }

    .stat-value {
        font-size: 20px;
    }

    .info-footer {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .particles-container .particle {
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .herramientas-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .herramientas-section {
        padding: 70px 0;
    }

    .herramientas-container {
        padding: 0 4%;
    }

    .img-content-hero {
        margin-bottom: 50px;
        border-radius: 20px;
    }

    .img-content-hero img {
        height: 320px;
    }

    .overlay .section-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
        padding: 0 20px;
    }

    .intro-text {
        margin-bottom: 30px;
    }

    .intro-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .herramienta-inner {
        padding: 20px 15px;
    }

    .herramienta-icon-container {
        width: 60px;
        height: 60px;
    }

    .herramienta-icon-container i {
        font-size: 28px;
    }

    .herramienta-content h3 {
        font-size: 20px;
    }

    .herramienta-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .stat-value {
        font-size: 18px;
    }

    .stat-label {
        font-size: 13px;
    }

    .info-footer p {
        font-size: 15px;
    }

    .particles-container .particle {
        opacity: 0.3;
    }
}

@media (max-width: 576px) {
    .herramientas-list {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .herramientas-section {
        padding: 60px 0;
    }

    .herramientas-container {
        padding: 0 3%;
    }

    .img-content-hero {
        margin-bottom: 40px;
        border-radius: 16px;
    }

    .img-content-hero img {
        height: 280px;
    }

    .overlay .section-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .intro-text p {
        font-size: 14px;
    }

    .herramienta-content p {
        font-size: 14px;
    }

    .info-footer {
        padding: 20px 15px;
        margin-top: 50px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-icon i {
        font-size: 22px;
    }

    .info-footer p {
        font-size: 14px;
    }

    .particles-container .particle {
        opacity: 0.25;
    }
}

/* Estilos para las secciones de Descarga y Cómo Funciona */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-description {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 800px;
}

/* ===== SECCIÓN DE DESCARGA DE LA APP ===== */
.descarga-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, var(--amber-50) 100%);
    overflow: hidden;
}

/* Partículas decorativas */
.descarga-section .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.descarga-section .particle {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.descarga-section .particle-1 {
    top: 15%;
    left: 10%;
    width: 15px;
    height: 15px;
    background-color: rgba(255, 213, 79, 0.3);
    border-radius: 50%;
    animation: particle-float 20s linear infinite;
}

.descarga-section .particle-2 {
    top: 25%;
    right: 15%;
    width: 20px;
    height: 20px;
    background-color: rgba(253, 230, 138, 0.25);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: particle-rotate 25s linear infinite;
}

.descarga-section .particle-3 {
    bottom: 20%;
    left: 20%;
    width: 12px;
    height: 12px;
    background-color: rgba(252, 211, 77, 0.2);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: particle-float-rotate 22s linear infinite;
}

.descarga-section .particle-4 {
    bottom: 30%;
    right: 25%;
    width: 10px;
    height: 10px;
    background-color: rgba(245, 158, 11, 0.15);
    transform: rotate(45deg);
    animation: particle-pulse 18s linear infinite;
}

.descarga-section .particle-5 {
    top: 40%;
    left: 30%;
    width: 18px;
    height: 18px;
    background-color: rgba(255, 213, 79, 0.2);
    border-radius: 50%;
    animation: particle-float-reverse 24s linear infinite;
}

.descarga-section .particle-6 {
    top: 60%;
    right: 10%;
    width: 14px;
    height: 14px;
    background-color: rgba(253, 230, 138, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: particle-rotate-reverse 26s linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, 30px);
    }
    50% {
        transform: translate(100px, 0);
    }
    75% {
        transform: translate(50px, -30px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes particle-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes particle-float-rotate {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, 20px) rotate(90deg);
    }
    50% {
        transform: translate(60px, 0) rotate(180deg);
    }
    75% {
        transform: translate(30px, -20px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes particle-pulse {
    0%,
    100% {
        transform: scale(1) rotate(45deg);
    }
    50% {
        transform: scale(1.5) rotate(45deg);
    }
}

@keyframes particle-float-reverse {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-50px, 30px);
    }
    50% {
        transform: translate(-100px, 0);
    }
    75% {
        transform: translate(-50px, -30px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes particle-rotate-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/* Contenido principal de la sección de descarga */
.descarga-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.descarga-text {
    flex: 1;
    padding-right: 60px;
}

.descarga-text .highlight {
    color: var(--amber-600);
    position: relative;
}

.descarga-text .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--amber-200);
    z-index: -1;
    border-radius: 4px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 143, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
    z-index: 2;
}

.feature-icon i {
    color: #ff8f00;
    font-size: 22px;
}

.feature-text {
    flex-grow: 1;
}

.feature-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.feature-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .app-features {
        grid-template-columns: 1fr;
    }

    .feature {
        flex-direction: row;
        align-items: flex-start;
    }

    .feature-icon {
        margin-top: 3px;
    }
}

@media screen and (max-width: 480px) {
    .feature {
        padding: 10px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .feature-icon i {
        font-size: 18px;
    }

    .feature-text h3 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 13px;
    }
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--amber-100) 0%,
        var(--amber-200) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.feature-icon i {
    font-size: 24px;
    color: var(--amber-700);
}

.feature-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
}

/* Botones de descarga */
.download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.android-btn {
    background: linear-gradient(135deg, #689f38 0%, #33691e 100%);
    color: white;
}

.ios-btn {
    background: linear-gradient(135deg, #2c3e50 0%, #1a202c 100%);
    color: white;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.btn-icon {
    margin-right: 15px;
}

.btn-icon i {
    font-size: 30px;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-small-text {
    font-size: 12px;
    opacity: 0.9;
}

.btn-large-text {
    font-size: 18px;
    font-weight: 600;
}

/* Valoración de la app */
.app-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    display: flex;
    color: var(--amber-400);
}

.stars i {
    margin-right: 3px;
}

.app-rating p {
    font-size: 14px;
    color: #4a5568;
}

/* Mockup de la app */
.app-mockup {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background-color: #1a1a1a;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    padding: 10px;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.phone-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.phone-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #333;
    z-index: 3;
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%
    );
    border-radius: 40px;
    z-index: 4;
    pointer-events: none;
}

.floating-screens {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-screen {
    position: absolute;
    width: 200px;
    height: 400px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.floating-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-1 {
    top: 50px;
    right: -30px;
    transform: perspective(1000px) rotateY(10deg) rotateX(-5deg);
    z-index: 0;
    animation: float-screen-1 6s ease-in-out infinite;
}

.screen-2 {
    bottom: 50px;
    left: -30px;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    z-index: 0;
    animation: float-screen-2 8s ease-in-out infinite 1s;
}

@keyframes float-screen-1 {
    0%,
    100% {
        transform: perspective(1000px) rotateY(10deg) rotateX(-5deg)
            translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(10deg) rotateX(-5deg)
            translateY(-15px);
    }
}

@keyframes float-screen-2 {
    0%,
    100% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg)
            translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg)
            translateY(15px);
    }
}

.contenedor-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    overflow: hidden;
}

.img-flotante {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 500 / 200;
    height: auto;
    border-radius: 24px 24px 16px 16px;
    animation: flotar 3s ease-in-out infinite;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

@keyframes flotar {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.mockup-shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(
        ellipse,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    border-radius: 50%;
    z-index: 0;
}

.mockup-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='rgba(255, 213, 79, 0.1)' d='M50 0L93.3 25V75L50 100L6.7 75V25z'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    background-repeat: repeat;
    z-index: 0;
    opacity: 0.5;
}

/* ===== SECCIÓN DE CÓMO FUNCIONA ===== */
.como-funciona-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--amber-50) 0%, #fff 100%);
    overflow: hidden;
}

.como-funciona-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23fbbf24' d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100'/%3E%3C/svg%3E");
    background-size: 56px 100px;
    opacity: 0.05;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-header .section-title {
    margin-bottom: 20px;
}

.section-header .section-description {
    margin: 0 auto;
}

/* Flujo del proceso */
.process-flow {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(
        135deg,
        var(--amber-400) 0%,
        var(--amber-600) 100%
    );
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.step-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        var(--amber-100) 0%,
        var(--amber-200) 100%
    );
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.step-icon i {
    font-size: 30px;
    color: var(--amber-700);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-illustration {
    background-color: var(--amber-50);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    position: relative;
    overflow: hidden;
}

/* Conectores entre pasos */
.process-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--amber-300), var(--amber-400));
    margin: 0 auto 40px;
    position: relative;
}

.process-connector::before,
.process-connector::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--amber-400);
    border-radius: 50%;
    transform: translateX(-50%);
}

.process-connector::before {
    top: -5px;
}

.process-connector::after {
    bottom: -5px;
}

/* Ilustraciones animadas para cada paso */
.hive-icon {
    font-size: 40px;
    color: var(--amber-600);
    margin-right: 20px;
    animation: pulse-icon 3s ease-in-out infinite;
}

.data-stream {
    display: flex;
    align-items: center;
}

.data-point {
    width: 8px;
    height: 8px;
    background-color: var(--amber-400);
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0;
    animation: data-flow 2s linear infinite reverse;
}

.data-point:nth-child(2) {
    animation-delay: 0.5s;
}

.data-point:nth-child(3) {
    animation-delay: 1s;
}

@keyframes data-flow {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(50px);
        opacity: 0;
    }
}

@keyframes pulse-icon {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.transmission-animation {
    width: 100%;
    height: 2px;
    background-color: var(--amber-200);
    position: relative;
}

.transmission-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--amber-500);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: transmission 3s linear infinite;
}

.transmission-dot:nth-child(2) {
    animation-delay: 1s;
}

.transmission-dot:nth-child(3) {
    animation-delay: 2s;
}

@keyframes transmission {
    0% {
        left: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.analysis-animation {
    width: 100%;
    display: flex;
    justify-content: center;
}

.analysis-graph {
    display: flex;
    align-items: flex-end;
    height: 80px;
    gap: 10px;
}

.graph-bar {
    width: 15px;
    background-color: var(--amber-400);
    border-radius: 4px 4px 0 0;
    animation: graph-grow 4s ease-in-out infinite;
}

.graph-bar:nth-child(1) {
    animation-delay: 0s;
    height: 30%;
}

.graph-bar:nth-child(2) {
    animation-delay: 0.5s;
    height: 60%;
}

.graph-bar:nth-child(3) {
    animation-delay: 1s;
    height: 40%;
}

.graph-bar:nth-child(4) {
    animation-delay: 1.5s;
    height: 70%;
}

.graph-bar:nth-child(5) {
    animation-delay: 2s;
    height: 50%;
}

@keyframes graph-grow {
    0%,
    100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.3);
    }
}

.notification-animation {
    display: flex;
    align-items: center;
}

.notification-bell {
    font-size: 30px;
    color: var(--amber-600);
    margin-right: 15px;
    animation: bell-ring 3s ease-in-out infinite;
}

.notification-popup {
    width: 80px;
    height: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    animation: popup-appear 3s ease-in-out infinite;
}

.notification-dot {
    width: 8px;
    height: 8px;
    background-color: var(--amber-500);
    border-radius: 50%;
}

.notification-line {
    width: 100%;
    height: 4px;
    background-color: #e2e8f0;
    border-radius: 2px;
}

@keyframes bell-ring {
    0%,
    50%,
    100% {
        transform: rotate(0deg);
    }
    5%,
    15%,
    25%,
    35%,
    45% {
        transform: rotate(10deg);
    }
    10%,
    20%,
    30%,
    40% {
        transform: rotate(-10deg);
    }
}

@keyframes popup-appear {
    0%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
    10%,
    90% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Tarjetas de beneficios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: -30px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background-color: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--amber-100) 0%,
        var(--amber-200) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 24px;
    color: var(--amber-700);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.benefit-card p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

/* Estilos responsivos */
@media (max-width: 1200px) {
    .descarga-content {
        flex-direction: column;
    }

    .descarga-text {
        padding-right: 0;
        margin-bottom: 60px;
        text-align: center;
    }

    .app-features .feature {
        justify-content: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .app-rating {
        justify-content: center;
    }

    .app-mockup {
        height: 500px;
    }

    .section-title {
        font-size: 42px;
    }

    .section-description {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .descarga-section,
    .como-funciona-section {
        padding: 100px 0;
    }

    .app-mockup {
        height: 450px;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }

    .floating-screen {
        width: 180px;
        height: 360px;
    }

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

    .section-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .descarga-section,
    .como-funciona-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .process-step {
        flex-direction: column;
        padding: 25px;
    }

    .step-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

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

    .section-title {
        font-size: 34px;
    }

    .section-description {
        font-size: 16px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon i {
        font-size: 20px;
    }

    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .descarga-section,
    .como-funciona-section {
        padding: 60px 0;
    }

    .app-mockup {
        height: 400px;
    }

    .phone-frame {
        width: 200px;
        height: 420px;
    }

    .floating-screen {
        display: none;
    }

    .section-title {
        font-size: 30px;
    }

    .step-illustration {
        height: 100px;
    }
}

/* Estilos para las secciones de Testimonios y Contacto */

.testimonios-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, var(--amber-50) 100%);
    overflow: hidden;
}

.honeycomb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23fbbf24' d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100'/%3E%3C/svg%3E");
    background-size: 56px 100px;
    opacity: 0.05;
    z-index: 0;
}

.testimonios-section .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.testimonios-section .particle {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.testimonios-section .particle-1 {
    top: 15%;
    left: 10%;
    width: 15px;
    height: 15px;
    background-color: rgba(255, 213, 79, 0.3);
    border-radius: 50%;
    animation: particle-float 20s linear infinite;
}

.testimonios-section .particle-2 {
    top: 25%;
    right: 15%;
    width: 20px;
    height: 20px;
    background-color: rgba(253, 230, 138, 0.25);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: particle-rotate 25s linear infinite;
}

.testimonios-section .particle-3 {
    bottom: 20%;
    left: 20%;
    width: 12px;
    height: 12px;
    background-color: rgba(252, 211, 77, 0.2);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: particle-float-rotate 22s linear infinite;
}

.testimonios-section .particle-4 {
    bottom: 30%;
    right: 25%;
    width: 10px;
    height: 10px;
    background-color: rgba(245, 158, 11, 0.15);
    transform: rotate(45deg);
    animation: particle-pulse 18s linear infinite;
}

.testimonios-section .particle-5 {
    top: 40%;
    left: 30%;
    width: 18px;
    height: 18px;
    background-color: rgba(255, 213, 79, 0.2);
    border-radius: 50%;
    animation: particle-float-reverse 24s linear infinite;
}

.testimonios-section .particle-6 {
    top: 60%;
    right: 10%;
    width: 14px;
    height: 14px;
    background-color: rgba(253, 230, 138, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: particle-rotate-reverse 26s linear infinite;
}

@keyframes particle-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes particle-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes particle-float-rotate {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes particle-pulse {
    0%,
    100% {
        transform: scale(1) rotate(45deg);
    }
    50% {
        transform: scale(1.5) rotate(45deg);
    }
}

@keyframes particle-float-reverse {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
}

@keyframes particle-rotate-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/* Encabezado de la sección */
.testimonios-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonios-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.testimonios-section .section-description {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid de testimonios */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

/* Tarjetas de testimonios */
.testimonio-card {
    position: relative;
    border-radius: 20px;
    transition: var(--transition-normal);
    z-index: 1;
}

.testimonio-card:hover {
    transform: translateY(-10px);
}

.testimonio-inner {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.testimonio-card:hover .testimonio-inner {
    box-shadow: var(--shadow-lg);
    border-color: var(--amber-300);
}

.testimonio-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--amber-100) 0%,
        var(--amber-200) 100%
    );
    opacity: 0.5;
    z-index: 0;
    border-radius: 20px;
    transition: var(--transition-normal);
}

.testimonio-card:hover::before {
    opacity: 0.7;
    transform: scale(1.05);
}

.testimonio-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonio-image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
    position: relative;
    margin-right: 20px;
    flex-shrink: 0;
}

.testimonio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
    animation: rotate 10s linear infinite;
}

.testimonio-meta {
    flex: 1;
    position: relative;
}

.testimonio-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-darker);
    margin: 0 0 5px 0;
}

.testimonio-role {
    font-size: 14px;
    color: var(--text-lighter);
    margin: 0;
}

.experience-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(
        135deg,
        var(--amber-500) 0%,
        var(--amber-600) 100%
    );
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.experience-years {
    font-weight: 700;
    margin-right: 5px;
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.rating i {
    color: var(--amber-400);
    font-size: 18px;
}

.testimonio-content {
    position: relative;
}

.testimonio-quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    color: var(--amber-300);
    opacity: 0.5;
}

.testimonio-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-darker);
    padding-left: 35px;
    position: relative;
    font-style: italic;
}

/* Estadísticas */
.testimonios-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--amber-100) 0%,
        var(--amber-200) 100%
    );
    opacity: 0.3;
    z-index: -1;
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--amber-300);
}

.stat-item:hover::before {
    opacity: 0.5;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        var(--amber-400) 0%,
        var(--amber-500) 100%
    );
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.stat-icon::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-lighter);
}

/* ===== SECCIÓN DE CONTACTO ===== */

.contacto-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--amber-50) 0%, #fff 100%);
    overflow: hidden;
}

.contacto-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.honeycomb-pattern {
    position: absolute;
    width: 300px;
    height: 600px;
    background-size: 56px 100px;
    opacity: 0.05;
}

.honeycomb-pattern.left {
    top: 0;
    left: 0;
    transform: rotate(-15deg);
}

.honeycomb-pattern.right {
    top: 50px;
    right: 0;
    transform: rotate(15deg);
}

/* Contenido principal */
.contacto-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.contacto-header {
    text-align: center;
    margin-bottom: 60px;
}

.contacto-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contacto-section .section-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 40px;
}

.planes-section {
    position: relative;
    padding: 120px 0px;
    background: linear-gradient(360deg, var(--amber-50) 0%, #fff 100%);
    overflow: hidden;
}

/* Tarjetas de información de contacto */
.contacto-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contacto-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.contacto-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--amber-100) 0%,
        var(--amber-200) 100%
    );
    opacity: 0.3;
    z-index: -1;
    transition: var(--transition-normal);
}

.contacto-card:hover .contacto-inner {
    box-shadow: var(--shadow-lg);
    opacity: 0.3;
    z-index: -1;
    transition: var(--transition-normal);
}

.contacto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--amber-300);
}

.contacto-card:hover::before {
    opacity: 0.5;
}

.contacto-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--amber-400) 0%,
        var(--amber-500) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.contacto-card-icon::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

.contacto-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-darker);
    margin-bottom: 15px;
}

.contacto-card p {
    font-size: 16px;
    color: var(--text-lighter);
    line-height: 1.5;
    margin: 0 0 8px 0;
}

/* Botones de contacto */
.contacto-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.contacto-btn {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contacto-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2)
    );
    z-index: 1;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.email-btn {
    background: linear-gradient(
        135deg,
        var(--amber-500) 0%,
        var(--amber-600) 100%
    );
    color: white;
}

.contacto-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contacto-btn .btn-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 28px;
    position: relative;
    z-index: 2;
}

.contacto-btn .btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.contacto-btn .btn-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contacto-btn .btn-description {
    font-size: 14px;
    opacity: 0.9;
}

.contacto-btn .btn-arrow {
    flex-shrink: 0;
    margin-left: 15px;
    font-size: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.contacto-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Redes sociales */
.social-media {
    text-align: center;
    margin-top: 40px;
}

.social-media h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-darker);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2)
    );
    z-index: 1;
}

.social-icon i {
    position: relative;
    z-index: 2;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
}
.contacto-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.hex-decoration {
    position: absolute;
    background-color: var(--amber-300);
    opacity: 0.1;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 5%;
    animation: float-slow 15s ease-in-out infinite;
}

.hex-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 10%;
    animation: float-medium 12s ease-in-out infinite;
}

.hex-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 5%;
    animation: float-fast 10s ease-in-out infinite;
}

@keyframes float-slow {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes float-medium {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(20px) rotate(-5deg);
    }
}

@keyframes float-fast {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

/* Estilos responsivos */
@media (max-width: 1200px) {
    .testimonios-section,
    .contacto-section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 42px;
    }

    .section-description {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .testimonios-section,
    .contacto-section {
        padding: 80px 0;
    }

    .testimonios-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 calc(50% - 30px);
    }

    .section-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .testimonios-section,
    .contacto-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .testimonio-text {
        font-size: 16px;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .section-title {
        font-size: 34px;
    }

    .section-description {
        font-size: 16px;
    }

    .contacto-buttons {
        gap: 15px;
    }

    .contacto-btn {
        padding: 15px 20px;
    }

    .contacto-btn .btn-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .contacto-btn .btn-label {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .testimonios-section,
    .contacto-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .testimonio-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonio-image-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .experience-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-flex;
        margin-top: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/*Fin de la sección contacto*/

footer {
    position: relative;
    background: linear-gradient(
        180deg,
        var(--background-light) 0%,
        var(--amber-50) 100%
    );
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 0;
    border-top: 1px solid rgba(252, 211, 77, 0.3);
    color: #333333;
    width: 100%;
}

.footer-decoration {
    position: absolute;
    background-color: var(--amber-200);
    opacity: 0.15;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.footer-hex-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation: float-slow 20s ease-in-out infinite;
}

.footer-hex-2 {
    width: 250px;
    height: 250px;
    bottom: 50px;
    left: -80px;
    animation: float-medium 15s ease-in-out infinite;
}

.footer-hex-3 {
    width: 180px;
    height: 180px;
    top: 30%;
    left: 30%;
    animation: float-fast 12s ease-in-out infinite;
}

.footer-hex-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 15%;
    animation: float-medium 18s ease-in-out infinite reverse;
    opacity: 0.1;
}

.footer-hex-5 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation: float-fast 10s ease-in-out infinite;
    opacity: 0.1;
}

@keyframes float-slow {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes float-medium {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(20px) rotate(-5deg);
    }
}

@keyframes float-fast {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23fbbf24' d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100'/%3E%3C/svg%3E");
    background-size: 56px 100px;
    opacity: 0.05;
    z-index: 0;
}

.footer-light {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(252, 211, 77, 0.1) 0%,
        rgba(252, 211, 77, 0) 70%
    );
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.footer-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    z-index: 1;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 40px;
    position: relative;
    flex: 2;
    max-width: 35%;
}

.footer-logo-section::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(252, 211, 77, 0),
        rgba(252, 211, 77, 0.5),
        rgba(252, 211, 77, 0)
    );
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-logo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        var(--amber-400) 0%,
        var(--amber-600) 100%
    );
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-logo-icon::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.footer-logo-icon i {
    font-size: 32px;
    color: white;
}

.footer-logo-text {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    background: linear-gradient(to right, var(--amber-700), var(--amber-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    font-size: 17px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 100%;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--amber-100) 0%,
        var(--amber-200) 100%
    );
    color: var(--amber-700);
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--amber-400) 0%,
        var(--amber-600) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(245, 158, 11, 0.2);
}

.social-link:hover::before {
    opacity: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    position: relative;
    flex: 1;
    align-items: center;
    text-align: center;
}

.footer-column::before {
    display: none;
}

.footer-column h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    width: 100%;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--amber-500), var(--amber-300));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-column:hover h3::after {
    width: 80px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.footer-contact-info li:hover {
    transform: translateY(-5px);
}

.footer-contact-info i {
    width: 40px;
    height: 40px;
    background: linear-gradient(
        135deg,
        var(--amber-100) 0%,
        var(--amber-200) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-700);
    font-size: 18px;
    margin-right: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-contact-info li:hover i {
    background: linear-gradient(
        135deg,
        var(--amber-300) 0%,
        var(--amber-400) 100%
    );
    color: var(--text-dark);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.footer-contact-info span {
    font-size: 16px;
    color: #444444;
    line-height: 1.6;
    padding-top: 5px;
    text-align: left;
    flex: 1;
    display: block;
    width: calc(100% - 58px);
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(252, 211, 77, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.product-item:hover {
    transform: translateY(-8px);
}

.product-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--amber-100) 0%,
        var(--amber-200) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-item:hover .product-icon {
    background: linear-gradient(
        135deg,
        var(--amber-200) 0%,
        var(--amber-300) 100%
    );
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-icon i {
    font-size: 22px;
    color: var(--amber-700);
}

.product-info {
    flex: 1;
    text-align: left;
    width: calc(100% - 70px);
}

.product-name {
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
    font-size: 17px;
    text-align: left;
}

.product-desc {
    font-size: 15px;
    color: #444444;
    line-height: 1.5;
    text-align: left;
}

.footer-column p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 20px;
    text-align: center;
}

.hours-list {
    list-style: none;
    padding: 10px;
    margin: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    width: 100%;
    text-align: center;
}

.hours-item {
    display: flex;
    justify-content: center;
    padding: 14px 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-bottom: 1px dashed rgba(252, 211, 77, 0.2);
}

.hours-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
}

.day {
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    padding-right: 15px;
    text-align: center;
}

.time {
    color: #444444;
    font-size: 16px;
    text-align: center;
}

.footer-bottom {
    position: relative;
    margin-top: 100px;
    padding: 35px 0;
    border-top: 1px solid rgba(252, 211, 77, 0.2);
    z-index: 1;
    width: 100%;
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23fffbeb' opacity='0.5'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-bottom-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.copyright {
    font-size: 16px;
    color: #444444;
    margin: 0;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-bottom-links a {
    font-size: 16px;
    color: #444444;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.footer-bottom-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--amber-400);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--amber-700);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(252, 211, 77, 0) 0%,
        rgba(252, 211, 77, 0.7) 50%,
        rgba(252, 211, 77, 0) 100%
    );
    animation: glow-move 8s linear infinite;
}

@keyframes glow-move {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@media (max-width: 1600px) {
    .footer-container {
        gap: 25px;
    }

    .footer-logo-section {
        max-width: 30%;
    }
}

@media (max-width: 1400px) {
    .footer-container {
        gap: 20px;
    }

    .footer-logo-section {
        padding-right: 30px;
    }
}

@media (max-width: 1200px) {
    .footer-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-logo-section {
        flex: 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(252, 211, 77, 0.3);
    }

    .footer-logo-section::after {
        display: none;
    }

    .footer-description {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-column {
        flex: 1 0 calc(50% - 40px);
        max-width: calc(50% - 40px);
    }
}

@media (max-width: 992px) {
    footer {
        padding-top: 80px;
    }

    .footer-column {
        flex: 1 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    footer {
        padding-top: 60px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        flex: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .footer-column:last-child {
        margin-bottom: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .product-item {
        flex-direction: column;
        align-items: center;
    }

    .product-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .product-info {
        width: 100%;
        text-align: center;
    }

    .product-name,
    .product-desc {
        text-align: center;
    }

    .footer-contact-info li {
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-info i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer-contact-info span {
        width: 100%;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    footer {
        padding-top: 50px;
    }

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

    .footer-logo-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer-bottom {
        margin-top: 60px;
        padding: 25px 0;
    }
}

/*Modal de alerta en desarrollo*/

@keyframes hexagonRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes hexagonPulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

@keyframes modalFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-70px) scale(0.9);
    }

    70% {
        transform: translateY(10px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3),
            0 0 20px rgba(245, 158, 11, 0.2);
    }

    50% {
        box-shadow: 0 0 15px rgba(245, 158, 11, 0.5),
            0 0 30px rgba(245, 158, 11, 0.3);
    }

    100% {
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3),
            0 0 20px rgba(245, 158, 11, 0.2);
    }
}

@keyframes floatingParticle {
    0% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-7px) translateX(5px);
    }

    50% {
        transform: translateY(0) translateX(10px);
    }

    75% {
        transform: translateY(7px) translateX(5px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Estilos modernos del modal */
.development-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.development-modal-content {
    position: relative;
    background-color: #fff;
    margin: 8% auto;
    padding: 0;
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 25px rgba(180, 83, 9, 0.2);
    animation: modalFadeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        glowPulse 4s infinite;
    overflow: hidden;
    border: 1px solid rgba(180, 83, 9, 0.3);
}

.development-modal-header {
    padding: 18px 25px;
    background: linear-gradient(135deg, #b45309, #f59e0b);
    color: white;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.development-modal-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.development-modal-header h2::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin-right: 12px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexagonPulse 2s infinite;
}

.development-modal-body {
    padding: 35px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.development-icon {
    font-size: 65px;
    color: #b45309;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(180, 83, 9, 0.2);
    position: relative;
    z-index: 2;
}

.development-modal-body p {
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    position: relative;
    z-index: 2;
}

.development-modal-body p .highlight {
    color: #b45309;
    font-weight: 600;
}

.development-modal-body p:first-of-type {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Partículas decorativas */
.modal-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(245, 158, 11, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
    animation: floatingParticle 6s infinite ease-in-out;
}

.modal-particle-1 {
    top: 20%;
    left: 10%;
    width: 15px;
    height: 15px;
    animation-delay: 0s;
}

.modal-particle-2 {
    top: 70%;
    right: 15%;
    width: 25px;
    height: 25px;
    animation-delay: 1s;
}

.modal-particle-3 {
    bottom: 15%;
    left: 20%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
}

.modal-particle-4 {
    top: 40%;
    right: 10%;
    width: 12px;
    height: 12px;
    animation-delay: 1.5s;
}

.development-modal-footer {
    padding: 20px 25px;
    text-align: center;
    background-color: #f9f9f9;
    border-top: 1px solid rgba(180, 83, 9, 0.1);
    position: relative;
}

#close-modal-btn {
    padding: 12px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #b45309, #f59e0b);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(180, 83, 9, 0.3);
    position: relative;
    overflow: hidden;
}

#close-modal-btn::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: all 0.6s;
}

#close-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(180, 83, 9, 0.4);
}

#close-modal-btn:hover::before {
    left: 100%;
}

/* Hexágonos decorativos mejorados */
.development-modal-content::before,
.development-modal-content::after {
    content: "";
    position: absolute;
    background-color: rgba(180, 83, 9, 0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.development-modal-content::before {
    width: 180px;
    height: 180px;
    right: -90px;
    top: -90px;
    animation: hexagonRotate 60s linear infinite;
}

.development-modal-content::after {
    width: 120px;
    height: 120px;
    left: -60px;
    bottom: -60px;
    animation: hexagonRotate 40s linear infinite reverse;
}

/* Patrón de hexágonos en el fondo del modal */
.hexagon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
            120deg,
            #b45309 0,
            #b45309 1px,
            transparent 1px,
            transparent 60px
        ),
        repeating-linear-gradient(
            60deg,
            #b45309 0,
            #b45309 1px,
            transparent 1px,
            transparent 60px
        ),
        repeating-linear-gradient(
            0deg,
            #b45309 0,
            #b45309 1px,
            transparent 1px,
            transparent 60px
        );
    background-size: 70px 120px;
}

/* Estilos mejorados para dispositivos realistas */

/* ===== ESTILOS BASE PARA DISPOSITIVOS ===== */
.device {
    position: relative;
    margin: 0 auto;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    z-index: 10;
}

.device:hover {
    transform: scale(1.05) rotate(0deg);
}

/* ===== SMARTPHONE (ESTILO IPHONE) ===== */
.smartphone {
    width: 280px;
    height: 580px;
    perspective: 1000px;
}

.smartphone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background: linear-gradient(to bottom, #1a1a1a, #2a2a2a);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1), -5px 5px 20px rgba(0, 0, 0, 0.2),
        5px 5px 20px rgba(0, 0, 0, 0.2),
        inset 0 0 10px rgba(255, 255, 255, 0.05);
    padding: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.smartphone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.smartphone-screen::before {
    content: none;
}

.smartphone-screen video,
.smartphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

/* Cámara frontal */
.smartphone-frame::after {
    content: "";
    position: absolute;
    top: 20px;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 30% 30%, #666, #000);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 6;
}

/* Botón de volumen */
.smartphone::after {
    content: "";
    position: absolute;
    top: 100px;
    left: -2px;
    width: 4px;
    height: 60px;
    background-color: #444;
    border-radius: 2px;
    z-index: 7;
}

/* Eliminada la línea horizontal en la parte inferior */
.smartphone-screen::after {
    content: none;
}

/* Variante oscura del smartphone */
.smartphone-dark .smartphone-frame {
    background: linear-gradient(to bottom, #000, #1a1a1a);
}

/* ===== MONITOR COMPLETO CON SOPORTE Y BASE ===== */
.macbook {
    width: 450px;
    max-width: 100%;
    height: 420px;
    perspective: 1000px;
    margin: 20px auto;
    position: relative;
}

/* Pantalla del monitor */
.macbook-lid {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, #e2e2e2, #d0d0d0);
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
    overflow: hidden;
    border: 1px solid #ccc;
}

/* Borde inferior de la pantalla */
.macbook-lid::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c0c0c0;
    z-index: 3;
}

.macbook-screen {
    position: relative;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    margin: 10px;
    background-color: #000;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.macbook-screen video,
.macbook-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Soporte vertical del monitor - CORREGIDO PARA CONECTAR CON LA PANTALLA */
.macbook-stand {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 80px;
    background: linear-gradient(to right, #c0c0c0, #e0e0e0, #c0c0c0);
    z-index: 1;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
    top: 300px;
    /* Conecta exactamente con la parte inferior de la pantalla */
}

/* Conector entre pantalla y soporte */
.macbook-stand::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to bottom, #d0d0d0, #c0c0c0);
    z-index: 2;
}

/* Base del monitor */
.macbook-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 20px;
    background: linear-gradient(to bottom, #e2e2e2, #d0d0d0);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border: 1px solid #ccc;
    top: 380px;
}

/* Parte frontal de la base */
.macbook-base::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to bottom, #f0f0f0, #e0e0e0);
    border-radius: 5px 5px 0 0;
}

/* Sombra debajo del monitor */
.macbook-base::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    filter: blur(5px);
}

/* ===== IPAD MEJORADO ===== */
.ipad {
    width: 380px;
    height: 520px;
    perspective: 1000px;
}

.ipad-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(to bottom, #e2e2e2, #d0d0d0);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1), -5px 5px 20px rgba(0, 0, 0, 0.2),
        5px 5px 20px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.2);
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ccc;
}

/* Cámara reposicionada al centro */
.ipad-frame::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle at 30% 30%, #666, #000);
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.ipad-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.ipad-screen video,
.ipad-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Eliminado el botón home */
.ipad-frame::after {
    content: none;
}

/* Botón de volumen */
.ipad::before {
    content: "";
    position: absolute;
    top: 100px;
    right: -2px;
    width: 4px;
    height: 60px;
    background-color: #ccc;
    border-radius: 2px;
    z-index: 7;
}

/* Botón de encendido */
.ipad::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -2px;
    width: 4px;
    height: 30px;
    background-color: #ccc;
    border-radius: 2px;
    z-index: 7;
}

/* Mantener los efectos de brillo y elementos flotantes */
.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 215, 0, 0.2) 0%,
        transparent 70%
    );
    z-index: 1;
    pointer-events: none;
}

.glow-effect-alt {
    background: radial-gradient(
        circle at center,
        rgba(0, 191, 255, 0.2) 0%,
        transparent 70%
    );
}

.glow-effect-sustainable {
    background: radial-gradient(
        circle at center,
        rgba(46, 204, 113, 0.2) 0%,
        transparent 70%
    );
}

.glow-effect-efficiency {
    background: radial-gradient(
        circle at center,
        rgba(155, 89, 182, 0.2) 0%,
        transparent 70%
    );
}

/* Mantener los elementos flotantes hexagonales */
.floating-hexagon {
    position: absolute;
    background-color: rgba(255, 215, 0, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-hexagon-lg {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.floating-hexagon-md {
    width: 60px;
    height: 60px;
    animation-delay: 1s;
}

.floating-hexagon-sm {
    width: 40px;
    height: 40px;
    animation-delay: 2s;
}

.floating-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Efectos de sombra para realismo */
.device {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Animación de encendido para pantallas */
@keyframes screenOn {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0.3;
    }

    60% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.smartphone-screen video,
.macbook-screen video,
.ipad-screen video,
.smartphone-screen img,
.macbook-screen img,
.ipad-screen img {
    animation: screenOn 0.8s ease-in-out;
}

/* ===== ESTILOS RESPONSIVOS PARA DISPOSITIVOS MÓVILES ===== */
@media (max-width: 1024px) {
    /* Ajustes generales para la estructura de contenido */
    .maia-content-row {
        flex-direction: column;
    }

    .maia-text {
        order: 1;
        /* Texto primero */
        width: 100%;
        margin-bottom: 30px;
    }

    .maia-video-container {
        order: 2;
        /* Dispositivo después */
        width: 100%;
    }

    /* Ajustes para los títulos */
    .section-title {
        margin-bottom: 30px;
        text-align: center;
    }

    /* Reducir tamaño de dispositivos */
    .smartphone {
        width: 220px;
        height: 450px;
    }

    .macbook {
        width: 350px;
        height: 350px;
    }

    .macbook-lid {
        height: 240px;
    }

    .macbook-stand {
        top: 240px;
        height: 70px;
    }

    /* Ajustamos la base para que coincida con el final del soporte */
    .macbook-base {
        top: 310px;
        /* 240px (top del soporte) + 70px (altura del soporte) */
    }

    .ipad {
        width: 300px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    /* Ajustes adicionales para tablets */
    .maia-content-section {
        padding: 40px 20px;
    }

    /* Centrar dispositivos */
    .video-showcase,
    .efficiency-showcase {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    /* Reducir aún más el tamaño de dispositivos */
    .smartphone {
        width: 180px;
        height: 370px;
    }

    .macbook {
        width: 300px;
        height: 300px;
    }

    .macbook-lid {
        height: 200px;
    }

    .macbook-stand {
        top: 200px;
        height: 60px;
    }

    /* Ajustamos la base para que coincida con el final del soporte */
    .macbook-base {
        top: 260px;
        /* 200px (top del soporte) + 60px (altura del soporte) */
    }

    .ipad {
        width: 240px;
        height: 340px;
    }

    /* Ajustar elementos decorativos */
    .floating-hexagon-lg {
        width: 60px;
        height: 60px;
    }

    .floating-hexagon-md {
        width: 40px;
        height: 40px;
    }

    .floating-hexagon-sm {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    /* Ajustes para móviles pequeños */
    .maia-content-section {
        padding: 30px 15px;
    }

    /* Reducir aún más los dispositivos */
    .smartphone {
        width: 150px;
        height: 310px;
    }

    .macbook {
        width: 250px;
        height: 250px;
    }

    .macbook-lid {
        height: 160px;
    }

    .macbook-stand {
        top: 160px;
        height: 50px;
        width: 30px;
    }

    /* Ajustamos la base para que coincida con el final del soporte */
    .macbook-base {
        top: 210px;
        /* 160px (top del soporte) + 50px (altura del soporte) */
        width: 140px;
        height: 15px;
    }

    .ipad {
        width: 200px;
        height: 280px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    /* Reducir tamaño de elementos decorativos */
    .floating-hexagon-lg {
        width: 40px;
        height: 40px;
    }

    .floating-hexagon-md {
        width: 30px;
        height: 30px;
    }

    .floating-hexagon-sm {
        width: 20px;
        height: 20px;
    }
}

/* Estilos adicionales para mejorar la responsividad del layout */

/* Estructura base */
.maia-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.maia-content-section {
    padding: 60px 0;
    position: relative;
}

.maia-content-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.maia-text {
    flex: 1;
    position: relative;
    z-index: 15;
}

.maia-video-container {
    flex: 1;
    position: relative;
}

.video-showcase,
.efficiency-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Estilos responsivos */
@media (max-width: 1024px) {
    .maia-content-row {
        flex-direction: column;
    }

    .maia-text,
    .maia-video-container {
        width: 100%;
    }

    .maia-content-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .maia-content-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .maia-content-row {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .maia-container {
        padding: 0 15px;
    }

    .maia-content-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .maia-content-row {
        gap: 20px;
    }
}

/* Ajustes específicos para beneficios y métricas */
.benefits-container,
.metrics-container,
.efficiency-stats {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .benefits-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .metrics-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .efficiency-stats {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .metric-item {
        padding: 10px;
    }

    .efficiency-bar-wrapper {
        height: 25px;
    }
}

/* Ajustes para CTA */
.cta-container {
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .cta-container {
        padding: 30px 15px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-container {
        padding: 25px 10px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animación de registro por voz */
.voice-animation {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.sound-waves {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}

.sound-wave {
    width: 4px;
    height: 20px;
    margin: 0 3px;
    background-color: rgb(216, 130, 0);
    border-radius: 2px;
    animation: soundWave 1.2s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: 0.2s;
}

.wave-3 {
    animation-delay: 0.4s;
}

.wave-4 {
    animation-delay: 0.6s;
}

.voice-to-text {
    width: 80%;
}

.text-line {
    height: 3px;
    background-color: #b45309;
    margin: 5px 0;
    border-radius: 2px;
    animation: textLine 2s ease-in-out infinite;
    opacity: 0.8;
}

.text-line:nth-child(1) {
    width: 80%;
    animation-delay: 0.3s;
}

.text-line:nth-child(2) {
    width: 60%;
    animation-delay: 0.6s;
}

.text-line:nth-child(3) {
    width: 75%;
    animation-delay: 0.9s;
}

@keyframes soundWave {
    0% {
        height: 5px;
    }

    50% {
        height: 25px;
    }

    100% {
        height: 5px;
    }
}

/* Animación horizontal del sistema experto */
.ai-assistant-animation {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 5px;
    overflow: hidden;
}

.chat-container-horizontal {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(180, 83, 9, 0.15);
}

.chat-sequence {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 5px;
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    flex-shrink: 1;
}

.chat-arrow {
    color: #b45309;
    opacity: 0.5;
    font-size: 10px;
    animation: fadeIn 0.5s ease-out 1s both;
}

.user-query {
    animation: slideInRight 0.5s ease-out;
}

.user-query i {
    color: #64748b;
    font-size: 12px;
    flex-shrink: 0;
}

.query-bubble {
    background-color: #e2e8f0;
    padding: 3px 6px;
    border-radius: 8px 8px 8px 2px;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ai-thinking {
    animation: slideInRight 0.5s ease-out 0.5s both;
}

.ai-thinking i {
    color: #b45309;
    font-size: 12px;
    flex-shrink: 0;
}

.thinking-dots {
    display: flex;
    gap: 2px;
    background-color: #fef3c7;
    padding: 4px 6px;
    border-radius: 8px 8px 2px 8px;
}

.dot {
    width: 5px;
    height: 5px;
    background-color: #b45309;
    border-radius: 50%;
    animation: dotPulse 1.2s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.4s;
}

.dot:nth-child(3) {
    animation-delay: 0.8s;
}

.ai-response {
    animation: slideInRight 0.5s ease-out 1.8s both;
}

.ai-response i {
    color: #b45309;
    font-size: 12px;
    flex-shrink: 0;
}

.response-bubble {
    background-color: #fef3c7;
    padding: 3px 6px;
    border-radius: 8px 8px 2px 8px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.response-bubble i {
    color: #15803d;
    font-size: 9px;
}

@keyframes dotPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(-10px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

/* Ajuste responsivo para pantallas pequeñas */
@media (max-width: 480px) {
    .chat-sequence {
        flex-wrap: wrap;
        justify-content: center;
    }

    .chat-arrow {
        display: none;
    }
}

.dashboard-animation {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 5px 0;
}

.dashboard-container {
    width: 200px;
    height: 90px;
    background-color: #f8f9fa;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.dashboard-header {
    height: 16px;
    background-color: #e9ecef;
    padding: 3px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title {
    width: 35%;
    height: 6px;
    background-color: #adb5bd;
    border-radius: 3px;
    animation: pulse 3s infinite ease-in-out;
}

.dashboard-menu {
    width: 25%;
    height: 4px;
    background-color: #adb5bd;
    border-radius: 2px;
    animation: pulse 3s infinite ease-in-out;
    animation-delay: 0.5s;
}

.dashboard-widgets {
    display: flex;
    padding: 5px;
    flex: 1;
    gap: 6px;
}

.widget {
    flex: 1;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 4px;
    position: relative;
}

/* Estilos para widget de gráfico */
.widget-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 10px;
}

.widget-bar {
    width: 16%;
    background-color: #ffa000;
    border-radius: 2px 2px 0 0;
    animation: bar-rise 3s infinite ease-in-out;
}

.widget-bar-1 {
    height: 40%;
    animation-delay: 0s;
}

.widget-bar-2 {
    height: 65%;
    animation-delay: 0.2s;
    background-color: #ff6f00;
}

.widget-bar-3 {
    height: 45%;
    animation-delay: 0.4s;
}

.widget-bar-4 {
    height: 75%;
    animation-delay: 0.6s;
    background-color: #ff6f00;
}

/* Estilos para widget de estadísticas */
.widget-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-circle {
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: conic-gradient(#ffa000 0% 75%, #e9ecef 75% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: circle-fill 3s infinite ease-in-out;
}

.stat-circle::before {
    content: "";
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    background-color: white;
}

/* Estilos para widget de lista */
.widget-list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 2px;
}

.list-item {
    height: 4px;
    background-color: #dee2e6;
    border-radius: 2px;
    margin-bottom: 4px;
    animation: list-load 3s infinite ease-in-out;
}

.list-item:nth-child(1) {
    width: 90%;
    animation-delay: 0.1s;
}

.list-item:nth-child(2) {
    width: 70%;
    animation-delay: 0.3s;
}

.list-item:nth-child(3) {
    width: 85%;
    animation-delay: 0.5s;
}

/* Animaciones suavizadas */
@keyframes bar-rise {
    0% {
        transform: scaleY(0.85);
    }
    50% {
        transform: scaleY(1);
    }
    100% {
        transform: scaleY(0.85);
    }
}

@keyframes circle-fill {
    0% {
        background: conic-gradient(#ffa000 0% 70%, #e9ecef 70% 100%);
    }
    50% {
        background: conic-gradient(#ffa000 0% 85%, #e9ecef 85% 100%);
    }
    100% {
        background: conic-gradient(#ffa000 0% 70%, #e9ecef 70% 100%);
    }
}

@keyframes list-load {
    0% {
        transform: translateX(-3px);
        opacity: 0.8;
    }
    50% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-3px);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

/* Animación para el sistema de mejora continua */
.improvement-animation {
    width: 100%;
    height: 90px; /* Aumentado de 60px */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0; /* Aumentado de 10px */
    position: relative;
}

.timeline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px; /* Añadido para controlar el ancho máximo */
}

.timeline-icon {
    width: 45px; /* Aumentado de 30px */
    height: 45px; /* Aumentado de 30px */
    background-color: #f5f7fa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12); /* Sombra más prominente */
    position: relative;
    z-index: 2;
    animation: iconHighlight 6s infinite;
    opacity: 0.7;
    margin: 0 3px; /* Añadido espacio horizontal */
}

.timeline-icon i {
    font-size: 20px; /* Aumentado de 14px */
    color: #ff6f00;
}

.timeline-arrow {
    color: #adb5bd;
    font-size: 18px; /* Aumentado de 12px */
    margin: 0 8px; /* Aumentado de 5px */
    position: relative;
    z-index: 1;
}

/* Animación para que los íconos se iluminen secuencialmente */
.timeline-icon:nth-child(1) {
    animation-delay: 0s;
}

.timeline-icon:nth-child(3) {
    animation-delay: 1.5s;
}

.timeline-icon:nth-child(5) {
    animation-delay: 3s;
}

.timeline-icon:nth-child(7) {
    animation-delay: 4.5s;
}

@keyframes iconHighlight {
    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
    8%,
    25% {
        opacity: 1;
        transform: scale(1.15);
        background-color: #fff;
        box-shadow: 0 0 15px rgba(255, 160, 0, 0.8);
    }
}

.benefits-category {
    margin-bottom: 40px;
    background: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgb(255, 255, 255);
    border: 1px solid rgb(231, 130, 52);
    position: relative;
    overflow: hidden;
}

.benefits-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #b45309, #f59e0b, #b45309);
    opacity: 0.8;
}

.category-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: #b45309;
    text-align: left;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.category-title::before {
    content: "";
    width: 6px;
    height: 20px;
    background: rgb(235, 123, 38);
    margin-right: 10px;
    border-radius: 3px;
}

.benefits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.benefit-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 calc(25% - 20px);
    min-width: 200px;
    padding: 20px 15px;
    background: rgb(255, 255, 254);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(180, 83, 9, 0.3);
    isolation: isolate;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    background: rgba(180, 83, 9, 0.15);
}

.benefit-icon {
    background: linear-gradient(135deg, #b45309, #f59e0b);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.benefit-icon i {
    color: white;
    font-size: 24px;
}

@media (max-width: 768px) {
    .benefits-category {
        padding: 20px 15px;
        margin-bottom: 25px;
    }

    .benefits-row {
        gap: 15px;
        justify-content: center;
    }

    .benefit-item {
        min-width: 150px;
        padding: 15px 10px;
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .benefits-category {
        padding: 15px 10px;
        margin-bottom: 20px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-item {
        flex: 0 0 100%;
    }

    .category-title {
        font-size: 20px;
    }
}

.benefit-label {
    font-weight: 600;
    font-size: 16px;
    margin-top: 5px;
}

.benefit-item::after {
    content: attr(data-tooltip);
    position: fixed;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    max-width: 300px;
    background: white;
    color: #333;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    text-align: center;
    border: 1px solid rgba(180, 83, 9, 0.3);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    margin-bottom: 10px;
}

.benefit-item::before {
    content: "";
    position: fixed;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: -8px;
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: white transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999999;
    pointer-events: none;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.benefit-item:hover::after,
.benefit-item:hover::before {
    opacity: 1;
    visibility: visible;
    top: 50%;
    margin-top: -120px;
}

.benefit-item.tooltip-active::after,
.benefit-item.tooltip-active::before {
    opacity: 1;
    visibility: visible;
    top: 50%;
    margin-top: -120px;
    z-index: 999999;
}

@media (max-width: 992px) {
    .benefit-item {
        flex: 0 0 calc(33.333% - 20px);
        justify-content: center;
        align-items: center;
    }
}

/* Estilos para tooltips en dispositivos móviles */
@media (max-width: 768px) {
    .benefit-item::after {
        position: fixed;
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999999;
        width: 80%;
        max-width: 280px;
        background: white;
        color: #333;
        border: 1px solid rgba(180, 83, 9, 0.3);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    .benefit-item::before {
        display: none;
        /* Ocultamos la flecha en móvil para evitar problemas de posicionamiento */
    }

    .benefit-item:hover::after,
    .benefit-item:hover::before,
    .benefit-item.tooltip-active::after,
    .benefit-item.tooltip-active::before {
        opacity: 1;
        visibility: visible;
        top: 50%;
        margin-top: 0;
        z-index: 9999999;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 576px) {
    .benefit-item {
        flex: 0 0 100%;
    }

    .benefit-item::after {
        width: 85%;
        max-width: 300px;
        padding: 15px;
        font-size: 15px;
    }
}

/* Estilos para el colapsable */
.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(255, 204, 0, 0.1);
}

.collapsible-header::after {
    position: absolute;
    right: 50px;
    font-size: 0.85em;
    color: rgb(231, 149, 25);
    opacity: 0.9;
    font-style: italic;
}

@media (max-width: 992px) {
    .collapsible-header::after {
        font-size: 0.75em;
    }
}

@media (max-width: 768px) {
    .collapsible-header::after {
        content: "";
        display: none;
    }

    .collapsible-container.active .collapsible-header::after {
        content: "";
        display: none;
    }
}

.collapsible-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.collapsible-header .section-title {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
    animation: none !important;
}

.collapse-icon {
    font-size: 20px;
    color: rgb(231, 149, 25);
    transition: transform 0.3s ease;
    animation: pulseArrow 1.5s infinite ease-in-out;
}

.collapsible-container.active .collapse-icon {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0, 1, 0, 1);
}

.collapsible-container.active .collapsible-content {
    max-height: 5000px;
    transition: max-height 1.2s ease-in-out;
}

@keyframes pulseArrow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Reemplazar los media queries existentes con estos */

@media (max-width: 768px) {
    .improvement-animation {
        height: auto;
        padding: 10px 0;
        overflow-x: visible;
    }

    .timeline-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        max-width: 100%;
        flex-wrap: nowrap; /* Mantener la disposición horizontal */
    }

    .timeline-icon {
        width: 38px;
        height: 38px;
        margin: 0 2px;
    }

    .timeline-icon i {
        font-size: 18px;
    }

    .timeline-arrow {
        margin: 0 2px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .timeline-container {
        gap: 2px;
    }

    .timeline-icon {
        width: 32px;
        height: 32px;
        min-width: 32px; /* Evitar que se comprima demasiado */
    }

    .timeline-icon i {
        font-size: 16px;
    }

    .timeline-arrow {
        margin: 0 1px;
        font-size: 12px;
        min-width: 12px; /* Evitar que se comprima demasiado */
    }

    .step-illustration {
        overflow-x: auto; /* Permitir desplazamiento horizontal si es necesario */
        padding: 10px;
        -webkit-overflow-scrolling: touch; /* Para mejorar el desplazamiento en iOS */
    }
}

@media (max-width: 400px) {
    .timeline-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .timeline-icon i {
        font-size: 14px;
    }

    .timeline-arrow {
        font-size: 10px;
    }
}

/*Nuevo diseño de la sección de Herramientas*/
/* ======= VARIABLES GLOBALES ======= */
:root {
    /* Colores principales */
    --color-primary: #ff8f00;
    --color-primary-light: #ffd54f;
    --color-primary-dark: #c56000;
    --color-primary-transparent: rgba(255, 143, 0, 0.1);

    /* Colores de fondo */
    --bg-dark: #1a1a2e;
    --bg-medium: #16213e;
    --bg-light: #0f3460;

    /* Colores de texto */
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-inset: inset 0 2px 6px rgba(0, 0, 0, 0.1);

    /* Bordes */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 50%;

    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Fuentes */
    --font-size-xs: 0.8rem;
    --font-size-sm: 0.9rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.1rem;
    --font-size-xl: 1.5rem;

    /* Tamaños de componentes */
    --icon-size-sm: 40px;
    --icon-size-md: 45px;
    --icon-size-lg: 50px;

    /* Z-index */
    --z-back: -1;
    --z-normal: 1;
    --z-elevated: 10;
    --z-tooltip: 20;
    --z-fixed: 100;
}

.herramientas-section {
    position: relative;
    background: radial-gradient(
        circle at center,
        #fef3c7 0%,
        #fffbeb 30%,
        #ffffff 70%
    );
    color: var(--text-dark);
    padding: 5rem 0;
    overflow: hidden;
}

.herramientas-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-primary-light),
        var(--color-primary)
    );
    z-index: var(--z-elevated);
}

.herramientas-container {
    position: relative;
    z-index: var(--z-normal);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ======= IMAGEN HERO Y OVERLAY ======= */
.img-content-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-slow);
    max-width: 800px;
    max-height: 400px;
    margin-left: auto;
    margin-right: auto;
}

.img-content-hero:hover {
    transform: scale(1.02);
}

.img-content-hero img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
    filter: brightness(0.9);
}

.img-content-hero:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-lg);
    transition: background var(--transition-medium);
}

.hero-content {
    max-width: 800px;
    transform: translateY(10px);
    opacity: 0.9;
    transition: transform var(--transition-medium),
        opacity var(--transition-medium);
}

.img-content-hero:hover .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-content h2 {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero-description {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    margin: 0 auto;
}

/* ======= TEXTO INTRODUCTORIO ======= */
.intro-text {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: var(--z-normal);
}

.intro-text h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.intro-text h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-primary-light),
        var(--color-primary)
    );
    border-radius: 3px;
}

.intro-text p {
    color: var(--text-medium);
    /* Color medio para fondo claro */
    font-size: var(--font-size-md);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

/* ======= GRID DE HERRAMIENTAS ======= */
.herramientas-grid-container {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.herramientas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    list-style: none;
    padding: 0;
    margin: 0;
    perspective: 1000px;
}

/* ======= TARJETAS DE HERRAMIENTAS (MODO CLARO) ======= */
.herramienta-card {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium),
        box-shadow var(--transition-medium);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transform-origin: center bottom;
    z-index: var(--z-normal);
}

.herramienta-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 15px 35px rgba(255, 143, 0, 0.15);
    border-color: rgba(255, 143, 0, 0.2);
    z-index: var(--z-elevated);
}

.herramienta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-primary-light),
        var(--color-primary)
    );
    z-index: var(--z-normal);
    transition: height var(--transition-medium);
}

.herramienta-card:hover::before {
    height: 6px;
}

.herramienta-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(
        90deg,
        var(--color-primary-light),
        var(--color-primary)
    );
    opacity: 0.1;
    transition: height var(--transition-medium);
}

.herramienta-card:hover::after {
    height: 50%;
}

.herramienta-header {
    display: flex;
    align-items: center;
    padding: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: var(--z-normal);
    background: #f8f9fa;
    overflow: hidden;
}

.herramienta-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: var(--z-back);
}

.herramienta-icon {
    background: rgba(255, 143, 0, 0.1);
    width: var(--icon-size-md);
    height: var(--icon-size-md);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-sm);
    position: relative;
    border: 2px solid rgba(255, 143, 0, 0.3);
    transition: all var(--transition-medium);
    overflow: hidden;
}

.herramienta-card:hover .herramienta-icon {
    background: rgba(255, 143, 0, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 143, 0, 0.3);
}

.herramienta-icon::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(
        circle,
        rgba(255, 143, 0, 0.2) 0%,
        rgba(255, 143, 0, 0) 70%
    );
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: var(--z-back);
}

.herramienta-card:hover .herramienta-icon::before {
    opacity: 1;
}

.herramienta-icon i {
    color: var(--color-primary);
    font-size: var(--font-size-lg);
    transition: all var(--transition-medium);
    position: relative;
    z-index: var(--z-normal);
}

.herramienta-card:hover .herramienta-icon i {
    color: var(--color-primary-dark);
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 143, 0, 0.5);
}

.herramienta-header h3 {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    transition: transform var(--transition-medium),
        color var(--transition-medium);
}

.herramienta-card:hover .herramienta-header h3 {
    transform: translateX(5px);
    color: var(--color-primary-dark);
}

.herramienta-body {
    padding: var(--spacing-sm);
    position: relative;
    z-index: var(--z-normal);
    background: #ffffff;
    height: calc(100% - 70px);
    display: flex;
    flex-direction: column;
}

.herramienta-body p {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--text-medium);
    line-height: 1.6;
    flex-grow: 1;
    position: relative;
    z-index: var(--z-normal);
    transition: color var(--transition-medium);
}

.herramienta-card:hover .herramienta-body p {
    color: var(--text-dark);
}

.herramienta-stat {
    display: inline-flex;
    align-items: center;
    background: #f0f0f0;
    padding: calc(var(--spacing-xs) * 0.8) var(--spacing-sm);
    border-radius: var(--border-radius-lg);
    margin-top: auto;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.herramienta-card:hover .herramienta-stat {
    background: rgba(255, 143, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.herramienta-stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 143, 0, 0.2),
        rgba(255, 143, 0, 0)
    );
    transition: width var(--transition-medium);
    z-index: var(--z-back);
}

.herramienta-card:hover .herramienta-stat::before {
    width: 100%;
}

.stat-value {
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-right: calc(var(--spacing-xs) * 0.6);
    position: relative;
    z-index: var(--z-normal);
    transition: color var(--transition-medium),
        text-shadow var(--transition-medium);
}

.herramienta-card:hover .stat-value {
    color: var(--color-primary-dark);
    text-shadow: 0 0 8px rgba(255, 143, 0, 0.2);
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-medium);
    position: relative;
    z-index: var(--z-normal);
    transition: color var(--transition-medium);
}

.herramienta-card:hover .stat-label {
    color: var(--text-dark);
}

/* ======= NOTA INFORMATIVA ======= */
.info-footer {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    margin-top: var(--spacing-xl);
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.info-footer:hover {
    background: #f8f9fa;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.info-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-primary-light),
        var(--color-primary)
    );
}

.info-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0)
    );
}

.info-icon {
    background: rgba(255, 143, 0, 0.1);
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
    border: 2px solid rgba(255, 143, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.info-footer:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 143, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 143, 0, 0.3);
}

.info-icon::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 143, 0, 0.3) 0%,
        rgba(255, 143, 0, 0) 70%
    );
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
}

.info-icon i {
    color: var(--color-primary);
    font-size: var(--font-size-xl);
    position: relative;
    z-index: var(--z-normal);
    transition: all var(--transition-medium);
}

.info-footer:hover .info-icon i {
    color: var(--color-primary-dark);
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 143, 0, 0.5);
}

.info-footer p {
    color: var(--text-medium);
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.7;
    position: relative;
    z-index: var(--z-normal);
    transition: color var(--transition-medium);
}

.info-footer:hover p {
    color: var(--text-dark);
}

/* ======= PARTÍCULAS DECORATIVAS ======= */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: var(--z-back);
}

.particle {
    position: absolute;
    background: rgba(255, 143, 0, 0.1);
    border-radius: var(--border-radius-full);
    pointer-events: none;
    z-index: var(--z-back);
    opacity: 0;
    animation: float 15s infinite linear;
}

.particle:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
    /* Para fondo claro */
}

.particle-1 {
    width: 15px;
    height: 15px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 22s;
}

.particle-2 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 18s;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 30%;
    left: 15%;
    animation-delay: 2s;
    animation-duration: 25s;
}

.particle-4 {
    width: 18px;
    height: 18px;
    top: 40%;
    left: 90%;
    animation-delay: 3s;
    animation-duration: 20s;
}

.particle-5 {
    width: 25px;
    height: 25px;
    top: 50%;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 23s;
}

.particle-6 {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 75%;
    animation-delay: 5s;
    animation-duration: 19s;
}

.particle-7 {
    width: 22px;
    height: 22px;
    top: 70%;
    left: 35%;
    animation-delay: 6s;
    animation-duration: 24s;
}

.particle-8 {
    width: 14px;
    height: 14px;
    top: 80%;
    left: 65%;
    animation-delay: 7s;
    animation-duration: 21s;
}

.particle-9 {
    width: 18px;
    height: 18px;
    top: 85%;
    left: 45%;
    animation-delay: 8s;
    animation-duration: 17s;
}

.particle-10 {
    width: 16px;
    height: 16px;
    top: 15%;
    left: 55%;
    animation-delay: 9s;
    animation-duration: 26s;
}

.particle-11 {
    width: 20px;
    height: 20px;
    top: 65%;
    left: 10%;
    animation-delay: 10s;
    animation-duration: 22s;
}

.particle-12 {
    width: 10px;
    height: 10px;
    top: 35%;
    left: 70%;
    animation-delay: 11s;
    animation-duration: 28s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(255, 143, 0, 0.2);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 15px rgba(255, 143, 0, 0.3);
    }

    90% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(255, 143, 0, 0.2);
    }

    100% {
        transform: translateY(-500px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* ======= BOTONES CTA ======= */
.cta-buttons {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-sm) * 0.8) calc(var(--spacing-md) * 1.2);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    border: none;
    cursor: pointer;
    z-index: var(--z-normal);
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0)
    );
    transition: left 0.7s ease;
    z-index: var(--z-back);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(
        45deg,
        var(--color-primary-dark),
        var(--color-primary)
    );
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 143, 0, 0.3),
        0 0 0 2px rgba(255, 143, 0, 0.2);
}

.cta-button.primary:hover {
    background: linear-gradient(
        45deg,
        var(--color-primary),
        var(--color-primary-light)
    );
    box-shadow: 0 6px 25px rgba(255, 143, 0, 0.5),
        0 0 0 3px rgba(255, 143, 0, 0.3);
    transform: translateY(-3px) scale(1.05);
}

.cta-button.primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(255, 143, 0, 0.2),
        0 0 0 1px rgba(255, 143, 0, 0.1);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1400px) {
    .herramientas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .intro-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 1200px) {
    .herramientas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .intro-text h2 {
        font-size: 1.8rem;
    }

    .intro-text p {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 992px) {
    .herramientas-section {
        padding: 4rem 0;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 90%;
    }

    .intro-text {
        max-width: 90%;
    }

    .intro-text h2 {
        font-size: 1.6rem;
    }

    .herramienta-icon {
        width: var(--icon-size-sm);
        height: var(--icon-size-sm);
    }

    .herramienta-header h3 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .herramientas-section {
        padding: 3rem 0;
    }

    .herramientas-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .intro-text h2 {
        font-size: 1.5rem;
    }

    .herramienta-header {
        padding: calc(var(--spacing-sm) * 0.8);
    }

    .herramienta-body {
        padding: calc(var(--spacing-sm) * 0.8);
    }

    .info-footer {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-sm);
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
    }

    .cta-button {
        padding: calc(var(--spacing-sm) * 0.7) var(--spacing-sm);
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 576px) {
    .herramientas-section {
        padding: 2rem 0;
    }

    .img-content-hero {
        margin-bottom: var(--spacing-md);
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .intro-text {
        margin-bottom: var(--spacing-md);
    }

    .intro-text h2 {
        font-size: 1.3rem;
    }

    .intro-text p {
        font-size: 0.85rem;
    }

    .herramienta-card {
        border-radius: calc(var(--border-radius-md) - 2px);
    }

    .info-footer p {
        font-size: 0.85rem;
    }

    .particle {
        display: none;
    }

    .particle:nth-child(-n + 6) {
        display: block;
    }
}

/* ======= MEDIDAS DE ACCESIBILIDAD ======= */
@media (prefers-reduced-motion: reduce) {
    .herramienta-card:hover,
    .info-footer:hover,
    .img-content-hero:hover img,
    .cta-button:hover,
    .cta-button:active,
    .info-icon::before,
    .particle {
        transition: none;
        animation: none;
        transform: none;
    }
}

/* ======= ANIMACIONES ADICIONALES ======= */
/* @keyframes cardFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0);
    }
} */

.herramienta-card:nth-child(odd) {
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: calc(var(--index, 0) * 1s);
}

.herramienta-card:nth-child(even) {
    animation: cardFloat 7s ease-in-out infinite;
    animation-delay: calc(var(--index, 0) * 1s + 0.5s);
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.herramienta-card:hover .herramienta-icon {
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-button.primary {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* ======= MODO DE IMPRESIÓN ======= */
@media print {
    .herramientas-section {
        background: none !important;
        color: black !important;
        padding: 1rem 0 !important;
    }

    .herramienta-card,
    .info-footer {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid !important;
    }

    .herramienta-header,
    .herramienta-body {
        background: none !important;
    }

    .herramienta-icon,
    .info-icon {
        border: 1px solid #ddd !important;
        background: none !important;
    }

    .particle,
    .herramienta-card::before,
    .herramienta-card::after,
    .info-footer::before,
    .info-footer::after {
        display: none !important;
    }

    .herramienta-header h3,
    .herramienta-body p,
    .stat-value,
    .stat-label,
    .info-footer p {
        color: black !important;
    }

    .herramienta-grid {
        display: block !important;
    }

    .herramienta-card {
        margin-bottom: 1rem !important;
        page-break-inside: avoid !important;
    }

    .cta-buttons,
    .img-content-hero {
        display: none !important;
    }
}

/* Estilos colapsables para la sección "Cómo funciona" */
.process-container {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    opacity: 0;
    transform: translateY(20px);
    animation: text-fade-in 0.8s ease-out forwards 0.8s;
    border: 1px solid rgba(255, 213, 79, 0.15);
    box-shadow: inset 0 0 20px rgba(255, 214, 79, 0.15),
        0 0 25px rgba(255, 214, 79, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.process-container::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: 50px;
    background: linear-gradient(
            45deg,
            rgba(255, 213, 79, 0.4),
            rgba(252, 202, 40, 0.3),
            rgba(255, 152, 0, 0.3),
            rgba(180, 83, 9, 0.4)
        )
        border-box;
    filter: blur(3px);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: border-shine 6s linear infinite;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.process-container::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        rgba(255, 213, 79, 0.1),
        rgba(252, 202, 40, 0.05),
        rgba(255, 152, 0, 0.05),
        rgba(180, 83, 9, 0.1)
    );
    border-radius: 52px;
    filter: blur(8px);
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes glow-pulse {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.8;
    }
}

.process-container.collapsible-container {
    opacity: 1;
    transform: none;
    animation: none;
}

.process-container .collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.5s ease;
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.process-container .collapsible-header::after {
    position: absolute;
    right: 50px;
    font-size: 0.85em;
    color: rgba(231, 149, 25, 0.8);
    opacity: 0.9;
    font-style: italic;
    text-shadow: 0 0 5px rgba(231, 149, 25, 0.2);
}

/* ========== ARREGLO PARA LA ROTACIÓN DE LA FLECHA ========== */

/* Asegurar que la flecha tenga una transición suave */
.collapse-icon {
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.collapse-icon i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

/* Rotar la flecha cuando el contenedor esté activo */
.collapsible-container.active .collapse-icon {
    transform: rotate(180deg);
}

.collapsible-container.active .collapse-icon i {
    transform: rotate(180deg);
}

/* Asegurar que el header tenga el cursor pointer */
.collapsible-header {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Espacio entre título y flecha */
    padding: 1rem 2rem;
}

.collapsible-header:hover {
    background-color: rgba(255, 143, 0, 0.05);
}

/* Si prefieres que solo el ícono rote en lugar del contenedor completo */
.collapsible-container .collapse-icon {
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.collapsible-container.active .collapse-icon {
    transform: rotate(180deg);
}

/* ========== TARJETAS DE IMPACTO - DISEÑO MINIMALISTA ========== */

.impact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.impact-card {
    background: white;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 143, 0, 0.08);
    transition: all 0.25s ease;
    position: relative;
}

.impact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff8f00, #ffb74d);
    border-radius: 12px 12px 0 0;
}

.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 143, 0, 0.12);
    border-color: rgba(255, 143, 0, 0.2);
}

/* ========== HEADER MINIMALISTA ========== */
.impact-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.impact-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff8f00, #ffb74d);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.impact-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

/* ========== VISUALIZACIONES COMPACTAS ========== */

/* --- RELOJ COMPACTO --- */
.clock-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.clock-before,
.clock-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}

.clock-face {
    width: 45px;
    height: 45px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    background: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.clock-face.optimized {
    border-color: #ff8f00;
    background: linear-gradient(135deg, #fff8e1, #ffffff);
}

.clock-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5px;
    height: 15px;
    background: #333;
    transform-origin: bottom center;
    border-radius: 1px;
    margin-left: -0.75px;
    margin-top: -15px;
    transition: transform 0.3s ease;
}

.clock-face.optimized .clock-hand {
    background: #ff8f00;
}

.free-time-indicator {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.clock-label {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    font-weight: 500;
    line-height: 1.1;
}

/* --- FLECHA COMPACTA --- */
.transformation-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff8f00, #ffb74d);
    border-radius: 50%;
    color: white;
    font-size: 0.85rem;
    animation: bounce 2s infinite;
    flex-shrink: 0;
}

/* --- DOCUMENTOS COMPACTOS --- */
.document-stack {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.documents-before,
.documents-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}

.document-pile {
    position: relative;
    width: 40px;
    height: 32px;
}

.document {
    position: absolute;
    width: 32px;
    height: 24px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.document:nth-child(1) {
    transform: translate(0px, 0px) rotate(-1deg);
}
.document:nth-child(2) {
    transform: translate(2px, 2px) rotate(1deg);
}
.document:nth-child(3) {
    transform: translate(4px, 4px) rotate(-1deg);
}
.document:nth-child(4) {
    transform: translate(6px, 6px) rotate(1deg);
}
.document:nth-child(5) {
    transform: translate(8px, 8px) rotate(-1deg);
}

.smart-document {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #fff8e1, #ffffff);
    border: 2px solid #ff8f00;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    position: relative;
    box-shadow: 0 1px 4px rgba(255, 143, 0, 0.15);
}

.smart-document i {
    font-size: 1rem;
    color: #ff8f00;
}

.voice-waves {
    display: flex;
    gap: 1px;
    align-items: end;
}

.wave {
    width: 2px;
    background: #ff8f00;
    border-radius: 1px;
    animation: wave-animation 1.5s infinite ease-in-out;
}

.wave:nth-child(1) {
    height: 6px;
    animation-delay: 0s;
}

.wave:nth-child(2) {
    height: 10px;
    animation-delay: 0.2s;
}

.wave:nth-child(3) {
    height: 4px;
    animation-delay: 0.4s;
}

.doc-label {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    font-weight: 500;
    line-height: 1.1;
}

/* --- DETECCIÓN COMPACTA --- */
.detection-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.detection-before,
.detection-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}

.problem-indicators {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.indicator.missed {
    background: #ffcdd2;
    border-color: #f44336;
}

.indicator.detected {
    background: #c8e6c9;
    border-color: #4caf50;
}

.indicator.early-detected {
    background: #fff3e0;
    border-color: #ff8f00;
    box-shadow: 0 0 4px rgba(255, 143, 0, 0.4);
    animation: success-glow 2s infinite;
}

.detection-rate {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    font-weight: 600;
}

/* ========== BENEFICIOS COMPACTOS ========== */
.impact-benefit {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 143, 0, 0.15);
}

.benefit-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #fff8e1, #ffffff);
    border: 1px solid rgba(255, 143, 0, 0.2);
    border-radius: 20px;
    color: #ff8f00;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 1px 4px rgba(255, 143, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-highlight i {
    font-size: 0.85rem;
}

/* ========== ANIMACIONES OPTIMIZADAS ========== */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@keyframes wave-animation {
    0%,
    100% {
        height: 4px;
    }
    50% {
        height: 12px;
    }
}

@keyframes success-glow {
    0% {
        box-shadow: 0 0 2px rgba(255, 143, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 6px rgba(255, 143, 0, 0.6);
    }
    100% {
        box-shadow: 0 0 2px rgba(255, 143, 0, 0.4);
    }
}

/* ========== RESPONSIVE COMPACTO ========== */
@media (max-width: 768px) {
    .impact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.2rem;
    }

    .impact-card {
        padding: 1rem;
    }

    .clock-comparison,
    .document-stack,
    .detection-comparison {
        flex-direction: column;
        gap: 1rem;
    }

    .transformation-arrow {
        transform: rotate(90deg);
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .clock-face,
    .smart-document {
        width: 50px;
        height: 50px;
    }

    .problem-indicators {
        gap: 4px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .impact-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .impact-header h4 {
        font-size: 0.95rem;
    }

    .impact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .benefit-highlight {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .clock-label,
    .doc-label,
    .detection-rate {
        font-size: 0.65rem;
    }
}

/* ========== EFECTOS HOVER MINIMALISTAS ========== */
.impact-card:hover .transformation-arrow {
    animation-duration: 1s;
}

.impact-card:hover .benefit-highlight {
    background: linear-gradient(135deg, #ff8f00, #ffb74d);
    color: white;
    transform: scale(1.02);
}

.impact-card:hover .free-time-indicator {
    animation-duration: 1s;
}

#dont-show-again {
    position: relative;
    z-index: 10000;
}

/* ===== SECCIÓN HEADER ===== */
.herramientas-header-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid rgba(255, 143, 0, 0.1);
    position: relative;
    gap: var(--spacing-lg);
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.platform-image-container:hover {
    transform: scale(1.02);
}

.platform-image {
    width: 260px;
    max-width: 320px;
    height: 100px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.platform-image:hover {
    transform: scale(1.08) rotate(0.5deg);
    filter: brightness(1.05) saturate(1.1);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Contenedor para título y botón */
.title-button-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: var(--spacing-lg);
}

.platform-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    position: relative;
    line-height: 1.3;
    text-align: left;
    flex: 1;
}

.platform-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-primary-light)
    );
    border-radius: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cta-button.professional:hover .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-icon i {
    font-size: 12px;
}

.btn-text {
    position: relative;
    z-index: var(--z-normal);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-arrow {
    position: relative;
    z-index: var(--z-normal);
    transition: transform var(--transition-medium);
}

.cta-button.professional:hover .btn-arrow {
    transform: translateX(3px);
}

@media (max-width: 1200px) {
    .herramientas-header-section {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .header-left {
        align-items: center;
        max-width: 100%;
    }

    .title-button-row {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .platform-image {
        max-width: 280px;
        height: 180px;
    }

    .platform-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .platform-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .header-right {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .platform-image {
        max-width: 260px;
        height: 160px;
    }

    .platform-title {
        font-size: 1.5rem;
    }

    .cta-button.professional {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .herramientas-header-section {
        padding: var(--spacing-md) 0;
        margin-bottom: var(--spacing-lg);
    }

    .platform-image {
        max-width: 240px;
        height: 140px;
    }

    .platform-title {
        font-size: 1.4rem;
    }

    .cta-button.professional {
        padding: 11px 18px;
        font-size: 0.85rem;
        gap: calc(var(--spacing-xs) * 0.8);
    }

    .btn-icon {
        width: 18px;
        height: 18px;
    }

    .btn-icon i {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .platform-image {
        max-width: 200px;
        height: 120px;
    }

    .platform-title {
        font-size: 1.3rem;
    }

    .cta-button.professional {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* ===== IMAGEN SHOWCASE ===== */
.herramienta-image-showcase {
    grid-column: span 1;
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium),
        box-shadow var(--transition-medium);
    min-height: 400px;
    background: linear-gradient(
        135deg,
        rgba(255, 143, 0, 0.05) 0%,
        rgba(255, 143, 0, 0.1) 100%
    );
    border: 1px solid rgba(255, 143, 0, 0.1);
}

.herramienta-image-showcase:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 15px 35px rgba(255, 143, 0, 0.15);
    border-color: rgba(255, 143, 0, 0.2);
}

.showcase-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: brightness(0.9) contrast(1.1);
}

.herramienta-image-showcase:hover .showcase-image {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    opacity: 1; /* Cambio: siempre visible */
    transition: opacity var(--transition-medium);
    backdrop-filter: blur(2px);
}

.herramienta-image-showcase:hover .image-overlay {
    opacity: 1; /* Mantener en 1 para consistencia */
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.overlay-content {
    color: white;
    width: 100%;
    transform: translateY(0);
    transition: transform var(--transition-medium);
}

.herramienta-image-showcase:hover .overlay-content {
    transform: translateY(-5px);
}

.overlay-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-xs) 0;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.overlay-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 var(--spacing-sm) 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.herramienta-image-showcase:hover .overlay-stat::before {
    left: 100%;
}

.overlay-stat:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 143, 0, 0.4);
}

.overlay-stat .stat-value {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.overlay-stat .stat-label {
    font-size: var(--font-size-xs);
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ===== EFECTOS ADICIONALES ===== */
.herramienta-image-showcase::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-primary-light),
        var(--color-primary)
    );
    z-index: var(--z-normal);
    transition: height var(--transition-medium);
}

.herramienta-image-showcase:hover::before {
    height: 6px;
}

.herramienta-image-showcase::after {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 143, 0, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 143, 0, 0.3);
    opacity: 0;
    transition: opacity var(--transition-medium),
        transform var(--transition-medium);
    z-index: var(--z-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
}

.herramienta-image-showcase:hover::after {
    transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .herramienta-image-showcase {
        grid-column: span 2;
        max-height: 300px;
    }

    .overlay-content h4 {
        font-size: 1.3rem;
    }

    .overlay-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .herramienta-image-showcase {
        grid-column: span 1;
        min-height: 350px;
    }

    .overlay-content h4 {
        font-size: 1.2rem;
    }

    .overlay-content p {
        font-size: 0.85rem;
    }

    .overlay-stat {
        padding: calc(var(--spacing-xs) * 0.6) calc(var(--spacing-sm) * 0.8);
    }
}

@media (max-width: 768px) {
    .herramienta-image-showcase {
        grid-column: span 1;
        max-height: 250px;
        min-height: 250px;
    }

    .overlay-content {
        padding: var(--spacing-sm);
    }

    .overlay-content h4 {
        font-size: 1.1rem;
    }

    .overlay-content p {
        font-size: 0.8rem;
        margin-bottom: calc(var(--spacing-xs) * 1.2);
    }

    .overlay-stat {
        padding: calc(var(--spacing-xs) * 0.5) calc(var(--spacing-sm) * 0.7);
    }

    .overlay-stat .stat-value {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .herramienta-image-showcase {
        max-height: 220px;
        min-height: 220px;
    }

    .overlay-content h4 {
        font-size: 1rem;
    }

    .overlay-content p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .image-overlay {
        padding: var(--spacing-sm);
    }
}

/* ===== ANIMACIONES ESPECIALES ===== */
@keyframes showcase-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 143, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 143, 0, 0);
    }
}

.herramienta-image-showcase:hover {
    animation: showcase-pulse 2s infinite;
}

/* ===== MODO REDUCIDO DE MOVIMIENTO ===== */
@media (prefers-reduced-motion: reduce) {
    .herramienta-image-showcase:hover,
    .showcase-image,
    .overlay-content,
    .overlay-stat {
        transition: none;
        animation: none;
        transform: none;
    }

    .image-overlay {
        opacity: 0.8;
    }

    .herramienta-image-showcase:hover .image-overlay {
        opacity: 1;
    }
}

/* ===== SECCIÓN B-MAIA PLAN ===== */
.bmaia-plan {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(255, 143, 0, 0.02) 0%,
        rgba(255, 143, 0, 0.06) 100%
    );
    border: 2px solid rgba(255, 143, 0, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    text-align: center;
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bmaia-plan::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-primary-light),
        var(--color-primary)
    );
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.bmaia-plan::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 143, 0, 0.1);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bmaia-plan h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-md) 0;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.bmaia-plan h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-primary-light)
    );
    border-radius: 2px;
}

.bmaia-plan p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* ===== DECORACIONES ADICIONALES ===== */
.bmaia-plan .decoration-hexagon {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 143, 0, 0.1);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: 1;
}

.bmaia-plan .decoration-hexagon:nth-child(1) {
    top: 30px;
    left: 30px;
    animation: float 6s ease-in-out infinite;
}

.bmaia-plan .decoration-hexagon:nth-child(2) {
    bottom: 30px;
    left: 40px;
    animation: float 6s ease-in-out infinite reverse;
    animation-delay: -2s;
}

.bmaia-plan .decoration-hexagon:nth-child(3) {
    top: 50px;
    right: 80px;
    animation: float 6s ease-in-out infinite;
    animation-delay: -4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .bmaia-plan {
        padding: var(--spacing-lg);
        margin: var(--spacing-lg) 0;
    }

    .bmaia-plan h2 {
        font-size: 1.8rem;
    }

    .bmaia-plan p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .bmaia-plan {
        padding: var(--spacing-md);
    }

    .bmaia-plan h2 {
        font-size: 1.6rem;
    }

    .bmaia-plan p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .bmaia-plan::after {
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .bmaia-plan {
        padding: var(--spacing-md);
        margin: var(--spacing-md) 0;
    }

    .bmaia-plan h2 {
        font-size: 1.4rem;
        margin-bottom: var(--spacing-sm);
    }

    .bmaia-plan p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .bmaia-plan::after {
        display: none;
    }

    .decoration-hexagon {
        display: none;
    }
}

@media (max-width: 576px) {
    .bmaia-plan {
        padding: var(--spacing-sm);
        border-radius: var(--border-radius-md);
    }

    .bmaia-plan h2 {
        font-size: 1.3rem;
    }

    .bmaia-plan p {
        font-size: 0.85rem;
    }

    .bmaia-plan h2::after {
        width: 40px;
        height: 3px;
    }
}

/* ===== ANIMACIONES ===== */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow-pulse {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12),
            0 4px 20px rgba(255, 143, 0, 0.15);
    }
}

/* ===== MODO REDUCIDO DE MOVIMIENTO ===== */
@media (prefers-reduced-motion: reduce) {
    .bmaia-plan,
    .decoration-hexagon,
    .shine-effect {
        transition: none;
        animation: none;
        transform: none;
    }
}

.proximamente-pro {
    font-size: 0.65em;
    color: #888;
    font-style: italic;
    margin-left: 6px;
    vertical-align: middle;
}

/* ===== SECCIÓN DE LOGROS ===== */
.logros-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
    overflow: hidden;
}

.logros-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23fbbf24' d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100'/%3E%3C/svg%3E");
    background-size: 120px 200px;
    opacity: 0.02;
    z-index: 0;
}

.logros-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* ===== HEADER DE LOGROS ===== */
.logros-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.logros-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.logros-header .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-primary-light),
        var(--color-primary)
    );
    border-radius: 2px;
}

.logros-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== CONTENEDOR DE IMÁGENES HORIZONTAL ===== */
.logros-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
    padding: var(--spacing-md) 0;
}

.logro-image-wrapper {
    position: relative;
    transition: all var(--transition-medium);
    filter: grayscale(20%) opacity(0.9);
}

.logro-image {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    object-position: center;
    transition: all var(--transition-slow);
    padding: var(--spacing-xs);
    border-radius: var(--border-radius-md);
}

.logro-image:hover {
    transform: translateY(-8px) scale(1.05);
    filter: grayscale(0%) opacity(1);
    z-index: 2;
}

/* ===== FOOTER DE LOGROS ===== */
.logros-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(255, 143, 0, 0.1);
}

.logros-footer p {
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== EFECTOS DECORATIVOS SUTILES ===== */
.logros-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 143, 0, 0.03) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .logros-images-container {
        gap: var(--spacing-md);
    }

    .logro-image {
        height: 75px;
        max-width: 130px;
    }

    .logros-header .section-title {
        font-size: 2.2rem;
    }

    .logros-description {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .logros-images-container {
        gap: var(--spacing-sm);
    }

    .logro-image {
        height: 70px;
        max-width: 120px;
    }

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

    .logros-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .logros-section {
        padding: var(--spacing-lg) 0;
    }

    .logros-images-container {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }

    .logro-image-wrapper {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .logro-image {
        height: 65px;
        max-width: 110px;
        margin: 0 auto;
    }

    .logros-header .section-title {
        font-size: 1.8rem;
    }

    .logros-description {
        font-size: 0.9rem;
        padding: 0 var(--spacing-sm);
    }

    .logros-footer p {
        font-size: 0.9rem;
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 576px) {
    .logros-section {
        padding: var(--spacing-md) 0;
    }

    .logro-image {
        height: 60px;
        max-width: 100px;
    }

    .logros-header .section-title {
        font-size: 1.6rem;
    }

    .logros-description {
        font-size: 0.85rem;
    }

    .logros-footer p {
        font-size: 0.85rem;
    }

    .logros-images-container {
        margin: var(--spacing-lg) 0;
    }

    .development-modal-content {
        margin: 8% auto;
        padding: 0;
        max-width: 360px;
        min-width: 330px;
        overflow: hidden;
    }

    .development-modal-body p {
        margin-bottom: var(--spacing-sm);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .development-icon-image {
        width: 110px;
        height: 95px;
        object-fit: contain;
        object-position: center;
        transition: all var(--transition-slow);
        padding: var(--spacing-xs);
        border-radius: var(--border-radius-md);
    }
}

/* ===== ANIMACIÓN SUTIL PARA LAS IMÁGENES ===== */
@keyframes gentle-float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.logro-image-wrapper:nth-child(1) {
    animation: gentle-float 8s ease-in-out infinite;
    animation-delay: 0s;
}

.logro-image-wrapper:nth-child(2) {
    animation: gentle-float 8s ease-in-out infinite;
    animation-delay: 2s;
}

.logro-image-wrapper:nth-child(3) {
    animation: gentle-float 8s ease-in-out infinite;
    animation-delay: 4s;
}

.logro-image-wrapper:nth-child(4) {
    animation: gentle-float 8s ease-in-out infinite;
    animation-delay: 6s;
}

/* ===== MODO REDUCIDO DE MOVIMIENTO ===== */
@media (prefers-reduced-motion: reduce) {
    .logro-image-wrapper,
    .logro-image-wrapper:hover {
        transition: none;
        animation: none;
        transform: none;
    }

    .logro-image-wrapper {
        filter: grayscale(0%) opacity(1);
    }
}

/* ===== SECCIÓN DE LOGROS - DISEÑO DETALLADO ===== */
.logros-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 50%, #fef3c7 100%);
    overflow: hidden;
    z-index: 1;
}

.logros-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23fbbf24' d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100'/%3E%3C/svg%3E");
    background-size: 120px 200px;
    opacity: 0.02;
    z-index: 0;
}

.logros-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 143, 0, 0.03) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: gentle-pulse 8s ease-in-out infinite;
}

/* ===== PARTÍCULAS DECORATIVAS ===== */
.logros-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.logros-particles .particle {
    position: absolute;
    background: rgba(255, 143, 0, 0.1);
    border-radius: 50%;
    animation: float-particle 12s linear infinite;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 85%;
    animation-delay: 2s;
}

.particle-3 {
    width: 6px;
    height: 6px;
    top: 30%;
    left: 75%;
    animation-delay: 4s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

.particle-5 {
    width: 14px;
    height: 14px;
    top: 10%;
    left: 60%;
    animation-delay: 8s;
}

.particle-6 {
    width: 9px;
    height: 9px;
    top: 70%;
    left: 45%;
    animation-delay: 10s;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.logros-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

/* ===== HEADER MEJORADO ===== */
.logros-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.award-icon {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    font-size: 3rem;
    color: var(--color-primary);
    animation: trophy-glow 3s ease-in-out infinite;
}

.award-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(
        circle,
        rgba(255, 143, 0, 0.2) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: glow-pulse 2s ease-in-out infinite;
}

.logros-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.logros-header .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-primary-light),
        var(--color-primary)
    );
    border-radius: 2px;
    animation: underline-expand 1s ease-out;
}

.achievement-badge-header {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-light) 100%
    );
    color: white;
    padding: calc(var(--spacing-xs) * 0.8) var(--spacing-md);
    border-radius: 25px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(255, 143, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.achievement-badge-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: badge-shine 3s ease-in-out infinite;
}

.badge-year {
    font-weight: 700;
    font-size: 1.1rem;
}

.badge-program {
    font-size: 0.9rem;
    opacity: 0.9;
}

.logros-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== CONTENEDOR DE CONTENIDO ===== */
.logros-content-wrapper {
    position: relative;
    margin: var(--spacing-xl) 0;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 143, 0, 0.2) 10%,
        rgba(255, 143, 0, 0.4) 50%,
        rgba(255, 143, 0, 0.2) 90%,
        transparent 100%
    );
    z-index: 1;
    animation: line-glow 4s ease-in-out infinite;
}

/* ===== IMÁGENES MEJORADAS ===== */
.logros-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.logro-image-wrapper {
    position: relative;
    text-align: center;
    transition: all var(--transition-medium);
}

.logro-image-wrapper:hover {
    transform: translateY(-8px);
    z-index: 3;
}

.image-frame {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    overflow: hidden;
    border: 2px solid rgba(255, 143, 0, 0.1);
}

.logro-image-wrapper:hover .image-frame {
    box-shadow: 0 8px 30px rgba(255, 143, 0, 0.15),
        0 2px 10px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 143, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.image-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.logro-image-wrapper:hover .image-shine {
    opacity: 1;
    animation: shine-sweep 0.8s ease-out;
}

.logro-image {
    height: 80px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    object-position: center;
    transition: all var(--transition-slow);
    filter: grayscale(10%) opacity(0.95);
}

.logro-image-wrapper:hover .logro-image {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.logo-label {
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-medium);
}

.logro-image-wrapper:hover .logo-label {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FOOTER MEJORADO ===== */
.logros-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 2px solid rgba(255, 143, 0, 0.1);
    position: relative;
}

.footer-decoration {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.hex-decoration {
    width: 20px;
    height: 20px;
    background: rgba(255, 143, 0, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hex-rotate 8s linear infinite;
}

.hex-left {
    animation-delay: 0s;
}

.hex-right {
    animation-delay: 4s;
}

.logros-footer p {
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto var(--spacing-md) auto;
    line-height: 1.6;
}

.validation-stamp {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: calc(var(--spacing-xs) * 0.6) var(--spacing-sm);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
    animation: stamp-pulse 3s ease-in-out infinite;
}

/* ===== ANIMACIONES ===== */
@keyframes gentle-pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.03;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.05;
    }
}

@keyframes float-particle {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.4;
    }
}

@keyframes trophy-glow {
    0%,
    100% {
        transform: scale(1);
        color: var(--color-primary);
    }
    50% {
        transform: scale(1.1);
        color: var(--color-primary-light);
    }
}

@keyframes glow-pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
}

@keyframes underline-expand {
    0% {
        width: 0;
    }
    100% {
        width: 120px;
    }
}

@keyframes badge-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes line-glow {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes shine-sweep {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes hex-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes stamp-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .logros-images-container {
        gap: var(--spacing-md);
    }

    .logro-image {
        height: 75px;
        max-width: 130px;
    }

    .logros-stats {
        gap: var(--spacing-md);
    }
}

@media (max-width: 992px) {
    .logros-header .section-title {
        font-size: 2.2rem;
    }

    .logros-description {
        font-size: 1rem;
    }

    .logros-stats {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .stat-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logros-section {
        padding: var(--spacing-lg) 0;
    }

    .logros-images-container {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }

    .logro-image-wrapper {
        width: 100%;
        max-width: 200px;
    }

    .logro-image {
        height: 100px;
        max-width: 160px;
    }

    .award-icon {
        font-size: 2.5rem;
    }

    .logros-header .section-title {
        font-size: 1.8rem;
    }

    .achievement-badge-header {
        flex-direction: column;
        gap: calc(var(--spacing-xs) * 0.5);
        text-align: center;
    }

    .connection-line {
        display: none;
    }

    .logros-particles .particle {
        display: none;
    }
}

@media (max-width: 576px) {
    .logros-section {
        padding: var(--spacing-md) 0;
    }

    .logro-image {
        height: 100px;
        max-width: 160px;
    }

    .award-icon {
        font-size: 2rem;
    }

    .logros-header .section-title {
        font-size: 1.6rem;
    }

    .stat-item {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .stat-icon {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }
}

/* ===== MODO REDUCIDO DE MOVIMIENTO ===== */
@media (prefers-reduced-motion: reduce) {
    .logros-section::after,
    .logros-particles .particle,
    .award-icon,
    .award-glow,
    .achievement-badge-header::before,
    .connection-line,
    .image-shine,
    .hex-decoration,
    .validation-stamp {
        animation: none;
    }

    .logro-image-wrapper:hover {
        transform: none;
    }

    .logo-label {
        opacity: 1;
        transform: none;
    }
}

/* ===== SECCIÓN DE PLANES EN CONTACTO ===== */
.contacto-planes-section {
    margin-top: 80px;
    padding: 60px 40px 40px;
    position: relative;
    overflow: hidden;
}

.contacto-planes-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 0;
}

.planes-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.planes-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.planes-header .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--amber-500), var(--amber-300));
    border-radius: 3px;
}

.planes-header .section-description {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ALERTA DE PRUEBA GRATUITA ===== */
.trial-alert {
    background: linear-gradient(135deg, #ff8f00 0%, #ffa726 100%);
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(255, 143, 0, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.trial-alert::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: rotate-light 15s infinite linear;
}

.trial-content {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    position: relative;
    z-index: 2;
}

.trial-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.trial-icon i {
    font-size: 28px;
    color: white;
}

.trial-text {
    flex: 1;
}

.trial-text h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.trial-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.trial-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    flex-shrink: 0;
}

.trial-badge span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* ===== GRID DE PLANES - DISEÑO HORIZONTAL ===== */
.contacto-planes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    min-height: 450px;
}

/* ===== TARJETAS DE PLANES ===== */
.contacto-plan-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid #2d9bf3;
    display: flex;
    flex-direction: column;
}

.contacto-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contacto-plan-card.featured {
    border: 2px solid var(--amber-400);
    transform: scale(1.02);
}

.contacto-plan-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.contacto-plan-card.trial-card {
    border: 2px solid #4caf50;
}

.contacto-plan-card.premium {
    border: 2px solid #9c27b0;
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 3.3rem;
    background: var(--amber-400);
    color: white;
    padding: 2px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

/* ===== HEADER DE PLAN ===== */
.plan-header {
    text-align: center;
    padding: 25px 15px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.plan-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
}

.trial-icon {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.afc-icon {
    background: linear-gradient(135deg, #2196f3, #42a5f5);
}

.me-icon {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-300));
}

.ge-icon {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
}

.contacto-plan-card:hover .plan-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.plan-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 3px 0;
    line-height: 1.2;
}

.plan-subtitle {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.2;
}

/* ===== CUERPO DE PLAN ===== */
.plan-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-price {
    text-align: center;
    margin-bottom: 12px;
}

.price-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-top: 2px;
}

.price-breakdown {
    text-align: center;
    margin-bottom: 15px;
}

.price-breakdown small {
    color: #888;
    font-size: 0.7rem;
    display: block;
    line-height: 1.3;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    padding: 6px 0;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.3;
}

.plan-features i {
    color: #4caf50;
    margin-right: 8px;
    font-size: 0.7rem;
    width: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== BOTÓN CTA - ARREGLADO ===== */
.planes-cta-section {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.planes-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ffffff45 0%, #ffffff45 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(255, 143, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
}

.planes-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 143, 0, 0.4);
    color: white;
    text-decoration: none;
}

.planes-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.5s ease;
    z-index: 1;
}

.planes-cta-button:hover::before {
    left: 100%;
}

.planes-cta-button .btn-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.planes-cta-button .btn-text {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 2;
}

.planes-cta-button .btn-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.planes-cta-button .btn-description {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.2;
}

.planes-cta-button .btn-arrow {
    margin-left: 15px;
    font-size: 18px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.planes-cta-button:hover .btn-arrow {
    transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
    .contacto-planes-grid {
        gap: 15px;
    }

    .plan-title {
        font-size: 1rem;
    }

    .price-main {
        font-size: 1.6rem;
    }
}

@media (max-width: 1200px) {
    .contacto-planes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contacto-plan-card.featured {
        transform: none;
    }

    .contacto-plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .planes-header .section-title {
        font-size: 2rem;
    }

    .trial-content {
        padding: 20px 25px;
    }

    .trial-text h3 {
        font-size: 1.3rem;
    }

    .contacto-planes-section {
        padding: 40px 20px 30px;
    }
}

@media (max-width: 768px) {
    .contacto-planes-section {
        margin-top: 60px;
        padding: 40px 15px 30px;
    }

    .contacto-planes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trial-content {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .trial-badge {
        margin-top: 15px;
    }

    .planes-cta-button {
        padding: 18px 30px;
        flex-direction: column;
        text-align: center;
    }

    .planes-cta-button .btn-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .planes-cta-button .btn-text {
        text-align: center;
        margin-bottom: 10px;
    }

    .planes-cta-button .btn-arrow {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .planes-header .section-title {
        font-size: 1.8rem;
    }

    .trial-text h3 {
        font-size: 1.2rem;
    }

    .plan-title {
        font-size: 1rem;
    }

    .price-main {
        font-size: 1.6rem;
    }

    .plan-features li {
        font-size: 0.75rem;
    }
}

/* ===== ANIMACIONES ===== */
@keyframes rotate-light {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== MODO REDUCIDO DE MOVIMIENTO ===== */
@media (prefers-reduced-motion: reduce) {
    .trial-alert::before {
        animation: none;
    }

    .contacto-plan-card:hover {
        transform: none;
    }

    .planes-cta-button:hover {
        transform: none;
    }
}
