/* ========================================
   COLMEIA LANDING PAGE - STYLES
   ======================================== */

:root {
    --primary: #FC8019;
    --primary-dark: #e06c0a;
    --secondary: #9D1CB2;
    --gradient: linear-gradient(135deg, #FC8019 0%, #ff9a44 50%, #9D1CB2 100%);
    --gradient-light: linear-gradient(135deg, rgba(252, 128, 25, 0.1) 0%, rgba(157, 28, 178, 0.1) 100%);
    --text-dark: #1a1a2e;
    --text-body: #4a4a68;
    --text-light: #8a8aa3;
    --bg-light: #f8f9fc;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.logo-img {
    height: 32px;
    width: auto;
    vertical-align: middle;
    display: block;
}

.logo-icon-img {
    height: 32px;
    width: auto;
    vertical-align: middle;
    display: block;
}

.logo-text-img {
    height: 32px;
    width: auto;
    vertical-align: middle;
    display: block;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav__link {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--primary);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__toggle,
.nav__close {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(252, 128, 25, 0.35);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(252, 128, 25, 0.45);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn--secondary {
    background: var(--text-dark);
    color: var(--white);
}

.btn--secondary:hover {
    background: #2a2a4e;
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--light {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn--light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

.btn__arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

.btn__icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: var(--gradient);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero__content {
    width: 100%;
    max-width: 100%;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    color: #FFFFFF;
}

.gradient-text-light {
    background: linear-gradient(135deg, #FFD93D 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 32px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.stat__icon {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.stat__content {
    display: flex;
    flex-direction: column;
}

.stat__number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.stat__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Hero Mockup */
.hero__mockup {
    position: relative;
}

.mockup__screen {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.app-screenshot {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.hero__mockup {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.mockup__header {
    background: #f1f3f4;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.mockup__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.mockup__dot:nth-child(1) {
    background: #ff5f57;
}

.mockup__dot:nth-child(2) {
    background: #ffbd2e;
}

.mockup__dot:nth-child(3) {
    background: #28ca42;
}

.mockup__content {
    display: flex;
    padding: 20px;
    gap: 20px;
    min-height: 300px;
}

.mockup__sidebar {
    width: 60px;
    background: var(--gradient-light);
    border-radius: var(--radius-sm);
}

.mockup__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup__card {
    height: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.mockup__chart {
    flex: 1;
    background: var(--gradient-light);
    border-radius: var(--radius-sm);
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

/* ========================================
   SECTIONS COMMON
   ======================================== */

section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section__badge i {
    font-size: 0.8rem;
}

.section__badge--light {
    color: rgba(255, 255, 255, 0.9);
}

.section__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section__title--light {
    color: var(--white);
}

.section__description {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.7;
}

.section__description--light {
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    background: var(--white);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-card--highlight {
    background: var(--gradient);
    border: none;
    grid-column: span 1;
}

.feature-card--highlight .feature-card__title,
.feature-card--highlight .feature-card__description {
    color: var(--white);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-light);
    border-radius: 16px;
    color: var(--primary);
}

.feature-card--highlight .feature-card__icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card__description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-card__tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ========================================
   WHATSAPP SECTION
   ======================================== */

.whatsapp-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.whatsapp__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.whatsapp__features {
    list-style: none;
    margin: 32px 0;
}

.whatsapp__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 1rem;
}

.check {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Phone Mockup */
.phone-mockup {
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.phone-mockup__notch {
    width: 120px;
    height: 24px;
    background: #1a1a2e;
    border-radius: 0 0 20px 20px;
    margin: 0 auto 8px;
}

.phone-mockup__screen {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
}

.chat-header {
    background: #075e54;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chat-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.chat-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.chat-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-status i {
    font-size: 0.5rem;
    color: #25D366;
}

.chat-header-icons {
    display: flex;
    gap: 20px;
    color: #fff;
    font-size: 1.1rem;
}

.chat-messages {
    padding: 16px;
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4cdc4' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.message p {
    font-size: 0.9rem;
    margin-bottom: 2px;
    line-height: 1.4;
}

.message-time {
    font-size: 0.65rem;
    color: #667781;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 2px;
}

.message--sent .message-time i {
    color: #53bdeb;
}

.message--received {
    background: #fff;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.message--sent {
    background: #d9fdd3;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.chat-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f0f2f5;
}

.chat-input input {
    flex: 1;
    border: none;
    background: #fff;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
}

.chat-input i {
    color: #54656f;
    font-size: 1.2rem;
    cursor: pointer;
}

/* ========================================
   MODULES SECTION
   ======================================== */

.modules {
    background: var(--bg-light);
}

.modules__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.module-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.module-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.module-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-light);
    border-radius: 16px;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

.module-card:hover .module-card__icon {
    background: var(--gradient);
    color: var(--white);
}

.module-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.module-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    background: var(--white);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #eee;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary);
}

.pricing-card--popular {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card__header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pricing-card__price {
    margin-bottom: 24px;
}

.pricing-card__price .currency {
    font-size: 1.2rem;
    color: var(--text-light);
    vertical-align: top;
}

.pricing-card__price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.pricing-card__price .period {
    color: var(--text-light);
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-card__features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-body);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    background: var(--bg-light);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.contact-method__icon {
    font-size: 1.5rem;
}

.contact-method strong {
    display: block;
    color: var(--text-dark);
}

.contact-method span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact__form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(252, 128, 25, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand p {
    margin-top: 16px;
    font-size: 0.9rem;
}

.footer__brand .logo-icon-img,
.footer__brand .logo-text-img {
    filter: brightness(0) invert(1);
}

.footer__links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer__links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 6px 0;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {

    .hero__container,
    .whatsapp__content,
    .contact__content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px;
    }

    .hero__title {
        font-size: 2rem;
        max-width: 100%;
        word-wrap: break-word;
    }

    .hero__description {
        max-width: 100%;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image {
        order: -1;
    }

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

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

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card--popular {
        transform: none;
    }

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

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 80px 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 24px;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
    }

    .nav__toggle {
        display: block;
    }

    .nav__actions .btn {
        display: none;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 120px;
    }

    .container {
        padding: 0 15px;
    }

    .hero__container {
        gap: 30px;
    }

    .hero__title {
        font-size: 1.4rem;
        line-height: 1.3;
        max-width: 100%;
        padding: 0;
    }

    .hero__description {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 100%;
        padding: 0;
    }

    .hero__stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .features__grid,
    .modules__grid {
        grid-template-columns: 1fr;
    }

    .whatsapp__text {
        text-align: center;
    }

    .whatsapp__features {
        text-align: left;
        max-width: 300px;
        margin: 32px auto;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand .nav__logo {
        justify-content: center;
    }
}