/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #e72c21;
    --color-primary-dark: #b80500;
    --color-white: #FFFFFF;
    --color-dark: #1a1a1a;
    --color-gray: #6b7280;
    --color-gray-light: #9ca3af;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-dark);
    overflow-x: hidden;
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar - Integrada con Hero */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--color-primary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar.scrolled {
    background: var(--color-primary);
    box-shadow: none;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    background: transparent;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hamburger:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 4px;
}

.hamburger-icon {
    position: absolute;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hamburger-icon.icon-open {
    opacity: 1;
    transform: scale(1);
}

.hamburger.active .icon-open {
    opacity: 0;
    transform: scale(0.85);
}

.hamburger.active .icon-close {
    opacity: 1;
    transform: scale(1);
}

/* Hero Section - Integrado con Navbar */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
    animation: float-bubble ease-in-out infinite;
    opacity: 0.6;
}

.bubble-1 {
    width: 60px;
    height: 60px;
    left: 10%;
    top: 20%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.bubble-2 {
    width: 40px;
    height: 40px;
    left: 20%;
    top: 60%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    left: 35%;
    top: 40%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble-4 {
    width: 50px;
    height: 50px;
    left: 50%;
    top: 70%;
    animation-duration: 9s;
    animation-delay: 0.5s;
}

.bubble-5 {
    width: 70px;
    height: 70px;
    left: 65%;
    top: 30%;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

.bubble-6 {
    width: 45px;
    height: 45px;
    left: 80%;
    top: 50%;
    animation-duration: 10s;
    animation-delay: 2.5s;
}

.bubble-7 {
    width: 55px;
    height: 55px;
    left: 25%;
    top: 80%;
    animation-duration: 13s;
    animation-delay: 3s;
}

.bubble-8 {
    width: 65px;
    height: 65px;
    left: 75%;
    top: 15%;
    animation-duration: 9s;
    animation-delay: 1.2s;
}

.bubble-9 {
    width: 35px;
    height: 35px;
    left: 5%;
    top: 45%;
    animation-duration: 14s;
    animation-delay: 0.8s;
}

.bubble-10 {
    width: 75px;
    height: 75px;
    left: 15%;
    top: 75%;
    animation-duration: 11s;
    animation-delay: 2.2s;
}

.bubble-11 {
    width: 42px;
    height: 42px;
    left: 40%;
    top: 10%;
    animation-duration: 13s;
    animation-delay: 1.8s;
}

.bubble-12 {
    width: 58px;
    height: 58px;
    left: 55%;
    top: 55%;
    animation-duration: 10s;
    animation-delay: 3.5s;
}

.bubble-13 {
    width: 48px;
    height: 48px;
    left: 70%;
    top: 65%;
    animation-duration: 12s;
    animation-delay: 0.3s;
}

.bubble-14 {
    width: 68px;
    height: 68px;
    left: 85%;
    top: 25%;
    animation-duration: 15s;
    animation-delay: 2.8s;
}

.bubble-15 {
    width: 38px;
    height: 38px;
    left: 30%;
    top: 85%;
    animation-duration: 9s;
    animation-delay: 1.7s;
}

.bubble-16 {
    width: 52px;
    height: 52px;
    left: 90%;
    top: 45%;
    animation-duration: 11s;
    animation-delay: 4s;
}

@keyframes float-bubble {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-80px) translateX(40px) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-120px) translateX(-30px) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-60px) translateX(-50px) scale(1.08);
        opacity: 0.75;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(231, 44, 33, 0.25);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 44, 33, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.hero-dashboard {
    width: 100%;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-dashboard .container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.dashboard-image {
    width: clamp(260px, 70vw, 860px);
    height: auto;
    display: block;
}

.hero .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
    background: #ffe8e6;
    color: var(--color-primary-dark);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero .btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--color-white);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
    color: var(--color-white);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-top: 0.5rem;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--color-bg);
    padding: 6rem 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main {
    text-align: center;
    margin-bottom: 4rem;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--color-gray);
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro strong {
    color: var(--color-primary);
    font-weight: 600;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(231, 44, 33, 0.15);
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(231, 44, 33, 0.1) 0%, rgba(231, 44, 33, 0.05) 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

/* Stats Section */
.stats {
    background: var(--color-bg);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: transparent;
    transition: var(--transition);
    border: none;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--color-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Clients Carousel */
.clients {
    background: var(--color-bg-alt);
    padding: 5rem 0;
    overflow: hidden;
}

.clients-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.clients-carousel {
    display: flex;
    gap: 3rem;
    animation: scroll 105s linear infinite;
    will-change: transform;
    width: max-content;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

.client-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 2.25rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-width: 180px;
    min-height: 110px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-placeholder {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray);
    text-align: center;
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo img {
    max-width: 140px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Services Section */
.services {
    background: var(--color-bg);
    padding: 6rem 0;
}

.services-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    background: var(--color-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(231, 44, 33, 0.15);
}

.services-info p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
}

.service-checklist li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(231, 44, 33, 0.12);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.services-note {
    margin-top: 1.75rem;
    font-size: 0.95rem;
    color: var(--color-gray);
    background: rgba(231, 44, 33, 0.05);
    border-left: 4px solid var(--color-primary);
    padding: 1rem 1.25rem;
    border-radius: 12px;
}

.services-media {
    display: flex;
    justify-content: center;
}

.services-media img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
}

/* Testimonials Section */
.testimonials {
    background: var(--color-bg-alt);
    padding: 6rem 0;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--color-white);
    border: 2px solid rgba(231, 44, 33, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(231, 44, 33, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--color-primary);
    width: 12px;
    height: 12px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(231, 44, 33, 0.15);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.15;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--color-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.testimonial-author {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(231, 44, 33, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.author-name {
    display: block;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.author-role {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
}

/* Trial Section */
.trial {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.trial-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    overflow: hidden;
}

.trial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.trial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trial-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.trial-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trial-content h2 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.trial-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trial-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trial-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
}

.trial-feature svg {
    color: var(--color-white);
    flex-shrink: 0;
}

.trial-cta {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.75rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trial-cta svg {
    transition: transform 0.3s ease;
}

.trial-cta:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.trial-cta:hover svg {
    transform: translateX(4px);
}

.trial-content .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-about {
    max-width: 350px;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 1.25rem;
    opacity: 1;
    display: block;
    max-width: 100%;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--color-white);
    transform: translateX(5px);
    color: var(--color-primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.contact-link svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
}

.contact-link:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.contact-link:hover svg {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--color-white);
    background: rgba(231, 44, 33, 0.2);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-align: center;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--color-white);
    color: var(--color-primary);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    .nav-menu {
        position: fixed;
        left: 0;
        top: 72px;
        flex-direction: column;
        background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
        width: 100%;
        text-align: center;
        transition: transform 0.25s ease, opacity 0.25s ease;
        box-shadow: var(--shadow-lg);
        padding: 2.5rem 1.75rem 2rem;
        gap: 0.5rem;
        border-radius: 0 0 22px 22px;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, -12px, 0);
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 4px;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.08);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 0.25rem 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }

    .nav-link {
        padding: 0.85rem 1rem;
        display: block;
        width: 100%;
        color: var(--color-dark);
        font-weight: 600;
        border-radius: 12px;
        position: relative;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 12px;
        background: rgba(231, 44, 33, 0.08);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .nav-link::after {
        background: var(--color-primary);
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        opacity: 1;
    }

    .hamburger {
        display: flex;
        position: relative;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .clients-carousel {
        gap: 2rem;
    }

    .client-logo {
        min-width: 180px;
        padding: 1.5rem 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-slider-wrapper {
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        margin: 0;
        max-width: 100%;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        box-sizing: border-box;
        width: 100%;
        margin: 0 auto;
    }

    .testimonials-controls {
        margin-top: 2rem;
        padding: 0;
        width: 100%;
        justify-content: center;
    }

    .services-media {
        display: none;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-intro {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

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

    .stats {
        padding: 4rem 0;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .clients {
        padding: 4rem 0;
    }

    .client-logo {
        min-width: 160px;
        min-height: 100px;
        padding: 1.25rem 1.5rem;
    }

    .trial {
        padding: 4rem 0;
    }

    .trial-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .trial-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .trial-description {
        font-size: 1.125rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-dashboard {
        margin-top: 3rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.75rem 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial-quote {
        font-size: 2.5rem;
    }

    .testimonials-slider-wrapper {
        padding: 0;
    }

    .testimonials-controls {
        padding: 0;
        gap: 1rem;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .testimonial-quote {
        font-size: 3rem;
    }

    .testimonials-slider-wrapper {
        padding: 0;
    }

    .client-logo {
        min-width: 140px;
        padding: 1rem 1.25rem;
    }

    .client-placeholder {
        font-size: 0.875rem;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .about-main {
        margin-bottom: 3rem;
    }

    .about-intro {
        font-size: 1rem;
    }
}
