/* ==========================================
   ESTILOS ESPECÍFICOS PARA CENTRAL DE PEDIDOS
   ========================================== */

/* Variables específicas para proveedores (teal/verde) */
:root {
    --proveedores-primary: #0d9488;
    --proveedores-secondary: #14b8a6;
    --proveedores-light: #ccfbf1;
    --proveedores-dark: #0f766e;
    --proveedores-gradient: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #10b981 100%);
}

/* Hero Section Proveedores */
.app-hero-proveedores {
    background: var(--proveedores-gradient);
}

.hero-logo-container {
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease-out;
}

.hero-app-logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-app-logo:hover {
    transform: scale(1.05);
}

.coming-soon-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.9rem;
}

.coming-soon-badge i {
    font-size: 1.2rem;
}

.store-btn-web-proveedores {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
}

.store-btn-web-proveedores:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

/* Sección Por qué estás aquí */
.why-here-section {
    background-color: var(--proveedores-light);
    padding: 5rem 0;
}

.why-here-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.why-here-section h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--proveedores-primary);
}

.why-here-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-here-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-here-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.why-here-item:hover {
    transform: translateX(5px);
}

.why-here-item i {
    font-size: 1.75rem;
    color: var(--proveedores-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.why-here-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--gray-800);
}

.why-here-item p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Diagrama de conexión */
.connection-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.diagram-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.diagram-item:hover {
    transform: scale(1.05);
}

.diagram-item i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.diagram-item span {
    font-weight: 600;
    font-size: 1rem;
}

.diagram-item small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.diagram-establecimiento {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
}

.diagram-proveedor {
    background: var(--proveedores-gradient);
    color: white;
}

.diagram-arrow {
    font-size: 1.5rem;
    color: var(--gray-400);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Problem Section Proveedores */
.problem-section-proveedores {
    background-color: #fff7ed;
}

.problem-section-proveedores h2:after {
    background-color: #f97316;
}

.problem-section-proveedores .problem-item i {
    color: #f97316;
}

/* Solution Section Proveedores */
.solution-section-proveedores {
    background-color: #f0fdfa;
}

.solution-section-proveedores h2:after {
    background-color: var(--proveedores-primary);
}

.step-number-proveedores {
    background: var(--proveedores-gradient);
}

/* Flow Diagram */
.solution-flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    min-width: 100px;
}

.flow-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--proveedores-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.flow-step:hover .flow-icon {
    transform: scale(1.1);
}

.flow-step p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-700);
    text-align: center;
    font-weight: 500;
}

.flow-arrow {
    color: var(--proveedores-primary);
    font-size: 1.25rem;
}

/* Feature icons proveedores */
.feature-icon-proveedores {
    color: var(--proveedores-primary);
}

/* Linking Section */
.linking-section {
    background-color: white;
    padding: 5rem 0;
}

.linking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.linking-content h2 {
    margin-bottom: 1.5rem;
}

.linking-content>p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    font-size: 1.05rem;
}

/* Map Preview */
.map-preview {
    position: relative;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 20px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    overflow: hidden;
}

.map-preview i {
    font-size: 5rem;
    color: var(--proveedores-primary);
    z-index: 2;
}

.map-preview span {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--gray-700);
    z-index: 2;
}

.coverage-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px dashed var(--proveedores-primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: expand 3s infinite;
}

@keyframes expand {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
}

/* Manual Clients Section */
.manual-clients-section {
    background-color: var(--gray-100);
    padding: 5rem 0;
}

.manual-clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.manual-clients-content h2 {
    margin-bottom: 1.5rem;
}

.manual-clients-content>p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.recommendation-text {
    background: linear-gradient(135deg, var(--proveedores-light), #d1fae5);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--proveedores-primary);
    margin-top: 1.5rem;
}

/* Client Cards Preview */
.clients-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.client-card-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.client-card-preview:hover {
    transform: translateX(10px);
}

.client-card-preview i {
    font-size: 1.5rem;
    color: var(--proveedores-primary);
}

.client-card-preview span {
    flex: 1;
    font-weight: 500;
}

.client-card-preview small {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.linked-badge {
    background: #d1fae5;
    color: #059669;
}

.manual-badge {
    background: #fef3c7;
    color: #d97706;
}

.client-card-preview.manual {
    border-left: 3px solid #f59e0b;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    padding: 5rem 0;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-section h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--proveedores-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.main-pricing .pricing-header {
    background: var(--proveedores-gradient);
    color: white;
    padding: 2rem;
    text-align: center;
}

.main-pricing .pricing-header h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-amount .percentage {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-amount .description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.pricing-body {
    padding: 2rem;
}

.pricing-features {
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.pricing-features li i {
    color: var(--proveedores-primary);
    font-size: 1rem;
}

.pricing-philosophy {
    background: var(--proveedores-light);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.pricing-philosophy p {
    margin: 0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.pricing-philosophy p:last-child {
    margin-bottom: 0;
}

/* Verified Card */
.verified-card {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.verified-badge-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.verified-badge-large i {
    font-size: 2rem;
}

.verified-badge-large span {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
}

.verified-card h3 {
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.verified-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

/* Feature Highlight (Ofertas del día) */
.feature-card.feature-highlight {
    background: linear-gradient(135deg, var(--proveedores-light) 0%, #d1fae5 100%);
    border: 2px solid var(--proveedores-primary);
    position: relative;
    overflow: hidden;
}

.feature-card.feature-highlight::before {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.25rem;
}

/* How to Start Section */
.how-to-start-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    padding: 5rem 0;
}

.how-to-start-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.how-to-start-section h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--proveedores-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number-large {
    width: 60px;
    height: 60px;
    background: var(--proveedores-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.25rem;
}

.step-card h3 {
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.step-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Demo Video Section */
.demo-video-section {
    background-color: white;
    padding: 5rem 0;
}

.demo-video-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.demo-video-section h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--proveedores-primary);
}

.demo-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.video-container:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.demo-video-section .container {
    text-align: center;
}

.demo-video {
    max-height: 600px;
    height: auto;
    display: block;
    width: auto;
}

/* Verified Section */
.verified-section {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    padding: 4rem 0;
}

.verified-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.verified-section .verified-badge-large {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
}

.verified-section .verified-badge-large i {
    font-size: 2.5rem;
}

.verified-section h3 {
    color: var(--gray-800);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.verified-section p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.verified-note {
    font-style: italic;
    color: var(--gray-600);
    font-size: 0.95rem !important;
    margin-top: 1rem;
}

/* Social Proof Proveedores */
.social-proof-section-proveedores {
    background: linear-gradient(135deg, #0f3b38 0%, #134e4a 100%);
}

.social-proof-section-proveedores h2:after {
    background-color: var(--proveedores-secondary);
}

.early-benefits {
    text-align: left;
    margin-top: 1.5rem;
    list-style: none;
}

.early-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.early-benefits li i {
    color: var(--proveedores-secondary);
    font-size: 1.1rem;
}

/* CTA Proveedores */
.app-cta-proveedores {
    background: var(--proveedores-gradient);
}

.form-container {
    max-width: 500px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-container h3 {
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-container .form-group small {
    color: var(--gray-600);
    text-align: center;
    display: block;
}

.btn-proveedores {
    background: var(--proveedores-gradient);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-proveedores:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

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

@media (max-width: 992px) {

    .why-here-grid,
    .linking-grid,
    .manual-clients-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .why-here-image,
    .linking-image,
    .manual-clients-image {
        order: -1;
    }

    .pricing-grid {
        max-width: 500px;
    }

    .connection-diagram {
        flex-direction: column;
    }

    .diagram-arrow {
        transform: rotate(90deg);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-app-logo {
        width: 100px;
        height: 100px;
    }

    .why-here-section,
    .linking-section,
    .manual-clients-section,
    .pricing-section,
    .how-to-start-section,
    .demo-video-section,
    .verified-section {
        padding: 3rem 0;
    }

    .why-here-item {
        flex-direction: column;
        text-align: center;
    }

    .solution-flow-diagram {
        flex-direction: column;
        padding: 1.5rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .map-preview {
        min-height: 250px;
        padding: 2rem;
    }

    .map-preview i {
        font-size: 3rem;
    }

    .coverage-circle {
        width: 150px;
        height: 150px;
    }

    .clients-preview {
        padding: 1rem;
    }

    .form-container {
        padding: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .pricing-amount .percentage {
        font-size: 3rem;
    }

    .video-container {
        border-radius: 32px;
    }

    .demo-video {
        max-height: 450px;
    }

    .verified-section .verified-badge-large {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .coming-soon-badge {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .diagram-item {
        padding: 1rem;
    }

    .diagram-item i {
        font-size: 2rem;
    }

    .flow-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .client-card-preview {
        flex-direction: column;
        text-align: center;
    }

    .verified-badge-large {
        width: 60px;
        height: 60px;
    }

    .verified-badge-large i {
        font-size: 1.5rem;
    }

    .step-number-large {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .video-container {
        border-radius: 28px;
    }

    .demo-video {
        max-height: 400px;
    }
}