/* ============================================
           VARIABLES CSS - Colores Corporativos AMI
        ============================================ */
        :root {
            --aquamarine: #73fbd3;
            --indigo-dye: #153b50;
            --indigo-dye-dark: #0d2a3a;
            --razzle-rose: #ff3cc7;
            --canary: #FFE900;
            --indigo: #63038c;
            --white: #ffffff;
            
            --font-titles: 'Krub', sans-serif;
            --font-body: 'Nunito', sans-serif;
        }

        /* ============================================
           RESET Y ESTILOS BASE
        ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--indigo-dye);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ============================================
           BOTÓN FLOTANTE "¿HABLAMOS?" - PATRÓN AMI
        ============================================ */
        

        

        /* ============================================
           SECCIÓN HERO
        ============================================ */
        .hero-wrapper {
            padding: 25px 20px;
            background: var(--indigo-dye);
        }

        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 40px 0 40px 0; /* Patrón AMI aplicado */
            min-height: 380px;
        }

        .hero-image {
            position: relative;
            overflow: hidden;
            border-radius: 40px 0 0 0;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            min-height: 380px;
        }

        .hero-content {
            background: var(--aquamarine);
            padding: 50px 50px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 0 0 40px 0;
            position: relative;
        }

        .hero-content h1 {
            font-family: var(--font-titles);
            font-size: clamp(28px, 3.5vw, 42px);
            font-weight: 700;
            color: var(--indigo-dye) !important;
            line-height: 1.15;
            margin-bottom: 15px;
        }

        .hero-content p {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--indigo-dye) !important;
            max-width: 380px;
            line-height: 1.6;
            margin-bottom: 22px;
        }

        /* Botón CTA Hero - PATRÓN AMI */
        .btn-hero-cta {
            display: inline-block;
            background: var(--razzle-rose);
            color: var(--white) !important;
            font-family: var(--font-titles);
            font-weight: 700;
            font-size: 14px;
            padding: 16px 32px;
            border-radius: 20px 0 20px 0; /* Patrón AMI: superior izq + inferior der redondeadas */
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            white-space: nowrap;
            align-self: flex-start;
        }

        .btn-hero-cta:hover {
            background: #e030b0;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 60, 199, 0.4);
        }

        /* ============================================
           SECCIÓN VENTAJAS COLABORADOR
        ============================================ */
        .advantages-section {
            background: var(--indigo-dye);
            padding: 70px 20px;
        }

        .advantages-container {
            max-width: 1100px;
            margin: 0 auto;
            border: 3px solid var(--aquamarine);
            border-radius: 40px 0 40px 0; /* Patrón AMI aplicado */
            padding: 50px 40px;
        }

        .advantages-container h2 {
            font-family: var(--font-titles);
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 700;
            color: var(--aquamarine) !important;
            margin-bottom: 35px;
        }

        .advantages-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .advantage-item {
            background: var(--aquamarine);
            padding: 18px 25px;
            border-radius: 25px 0 25px 0; /* Patrón AMI aplicado */
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
        }

        .advantage-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(115, 251, 211, 0.3);
        }

        .advantage-item p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--indigo-dye) !important;
            margin: 0;
            flex: 1;
            line-height: 1.5;
        }

        .check-icon {
            width: 32px;
            height: 32px;
            background: var(--indigo-dye);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .check-icon::after {
            content: "✓";
            color: var(--aquamarine);
            font-size: 20px;
            font-weight: 700;
        }

        /* ============================================
           SECCIÓN TRABAJA CON NOSOTROS
        ============================================ */
        .work-section {
            background: var(--indigo-dye);
            padding: 70px 20px;
            text-align: center;
        }

        .work-section h2 {
            font-family: var(--font-titles);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--aquamarine) !important;
            margin-bottom: 50px;
        }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1300px;
            margin: 0 auto;
            width: 94%;
        }

        .work-card {
            background: var(--aquamarine);
            text-align: center;
            padding: 80px 30px 35px;
            border-radius: 30px 0 30px 0; /* Patrón AMI aplicado */
            position: relative;
            transition: all 0.3s ease;
        }

        .work-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(115, 251, 211, 0.3);
        }

        /* Icono circular flotando arriba */
        .work-icon {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: var(--razzle-rose);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .work-icon::after {
    content: '';
    display: inline-block;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 4.5 13.2h5.9L9.8 22l8.7-11.5h-6z'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 4.5 13.2h5.9L9.8 22l8.7-11.5h-6z'/%3E%3C/svg%3E") no-repeat center / contain;
    background-color: var(--white);
}

        .work-card h3 {
            font-family: var(--font-titles);
            font-size: 16px;
            font-weight: 700;
            color: var(--indigo-dye) !important;
            text-transform: uppercase;
            margin-bottom: 15px;
            letter-spacing: 0.3px;
            line-height: 1.3;
        }

        .work-card p {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--indigo-dye) !important;
            line-height: 1.6;
        }

        /* ============================================
           SECCIÓN FORMULARIO DE CONTACTO
        ============================================ */
        .contact-section {
            background: var(--indigo-dye);
            padding: 80px 20px 70px;
        }

        .contact-container {
            max-width: 850px;
            margin: 0 auto;
            width: 90%;
        }

        .contact-section h2 {
            font-family: var(--font-titles);
            font-size: clamp(26px, 3vw, 34px);
            font-weight: 700;
            color: var(--aquamarine) !important;
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            position: relative;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            background: transparent;
            border: 2px solid var(--aquamarine);
            border-radius: 20px 0 20px 0; /* Patrón AMI aplicado a inputs */
            padding: 18px 20px;
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--aquamarine) !important;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--aquamarine);
            opacity: 0.7;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--aquamarine);
            background: rgba(115, 251, 211, 0.08);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Botón Submit - PATRÓN AMI */
        .btn-submit {
            display: inline-block;
            background: var(--aquamarine);
            color: var(--indigo-dye) !important;
            box-shadow: 0 4px 15px rgba(115, 251, 211, 0.3);
            font-family: var(--font-titles);
            font-weight: 700;
            font-size: 14px;
            padding: 16px 40px;
            border-radius: 20px 0 20px 0; /* Patrón AMI: superior izq + inferior der redondeadas */
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: #4fe9ba;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(115, 251, 211, 0.45);
        }

        /* ============================================
           RESPONSIVE - MÓVIL ANCHO (88%)
        ============================================ */
        @media (max-width: 1100px) {
            .work-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 22px;
            }
        }

        @media (max-width: 900px) {
            .hero-wrapper {
                padding: 20px 4%;
            }

            .hero {
                grid-template-columns: 1fr;
                border-radius: 30px 0 30px 0;
                min-height: auto;
            }

            .hero-image {
                border-radius: 30px 0 0 0;
            }

            .hero-image img {
                object-position: center center;
                min-height: 280px;
            }

            .hero-content {
                padding: 40px 6% 45px;
                border-radius: 0 0 30px 0;
            }

            .hero-content p {
                max-width: 100%;
            }

            .advantages-section {
                padding: 55px 4%;
            }

            .advantages-container {
                border-radius: 30px 0 30px 0;
                padding: 40px 6%;
                width: 88%;
                margin: 0 auto;
            }

            .advantage-item {
                border-radius: 20px 0 20px 0;
                padding: 16px 20px;
            }

            .work-section {
                padding: 55px 4%;
            }

            .work-grid {
                grid-template-columns: 1fr;
                gap: 60px;
                width: 88%;
                padding-top: 30px;
            }

            .work-card {
                border-radius: 25px 0 25px 0;
                padding: 70px 6% 30px;
            }

            .work-icon {
                width: 70px;
                height: 70px;
                top: -35px;
            }

            .work-icon::after { width: 30px; height: 30px; }

            .contact-form {
                grid-template-columns: 1fr;
            }

            .contact-container {
                width: 88%;
            }
        }

        @media (max-width: 480px) {
            

            .hero-content h1 {
                font-size: 26px;
            }

            .advantages-container h2 {
                font-size: 22px;
            }

            .advantage-item {
                padding: 14px 18px;
            }

            .advantage-item p {
                font-size: 14px;
            }

            .check-icon {
                width: 28px;
                height: 28px;
            }

            .check-icon::after {
                font-size: 18px;
            }

            .work-section h2 {
                font-size: 24px;
            }

            .work-icon {
                width: 65px;
                height: 65px;
                top: -32px;
            }

            .work-icon::after { width: 30px; height: 30px; }

            .work-card {
                padding: 65px 5% 28px;
            }

            .contact-section {
                padding: 60px 4%;
            }
        }

.work-note {
    max-width: 900px;
    margin: 36px auto 0;
    padding-inline: 16px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--aquamarine);
}
.work-note a { color: var(--white); font-weight: 700; text-decoration: underline; }
.work-note a:hover { color: var(--aquamarine); }
