﻿@import url('variables.css');
@import url('flexbox.css');
@import url('styles.css');

/* About Page Styles with Blue Theme */
.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.about-header-main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.about-header-content {
    text-align: center;
    max-width: 800px;
}

.about-title {
    font-family: 'Aeonik', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: black;
    margin-bottom: 16px;
}

.about-subtitle {
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: black;
    margin-bottom: 24px;
}

.about-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.about-badge {
    display: inline-flex; 
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f0f9ff;
    border: 1px solid #0384C7;
    border-radius: 20px;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0384C7;
}

.about-badge-icon {
    width: 16px;
    height: 16px;
    display: flex; 
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .about-badge-icon img {
        width: 17px;
        height: auto;
        display: block;
    }

/* Hero Section: Texto-Imagen */
.about-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.17), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-hero-content {
    flex: 0 0 auto;
    max-width: 500px;
}

.about-hero-title {
    font-family: 'Aeonik', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: black;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero-description {
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: black;
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: justify;
}

.about-hero-stats {
    display: flex;
    gap: 16px;
    justify-content: left;
}

.hero-stat {
    width: 120px; 
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(3, 132, 199, 0.1);
    border: 1px solid #0384C7;
    box-sizing: border-box;
}

.hero-stat-number {
    font-family: 'Aeonik', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0384C7;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 2px; 
}

    .hero-stat-number::before {
        content: "$";
        visibility: hidden;
    }

    .hero-stat-number::after {
        content: "+";
        visibility: hidden;
    }

.hero-stat-symbol {
    font-weight: 600; 
}

.hero-stat-label {
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.about-hero-visual {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Image Styles */
.hero-image-wrapper {
    background: white; 
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(3, 132, 199, 0.2);
    overflow: hidden;
    padding: 30px;
}

    .hero-image-wrapper img {
        width: 115%;
        height: auto;
        object-fit: contain;
    }


/* Our Story Section: Image-Text */
.about-story-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(90deg, #ffffff 0%, #fff7d1 100%);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.17), 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

/* Story Image Styles */
.story-image-wrapper {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.story-image-wrapper img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
}

/* Story Content Styles */
.story-content {
    flex: 0 0 auto;
    max-width: 380px;
}

.story-header {
    margin-bottom: 24px;
}

.story-title {
    font-family: 'Aeonik', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: black;
    margin-bottom: 16px;
}

.story-subtitle {
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: black;
    margin-bottom: 0;
}

.story-text p {
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: black;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin: 80px 0;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(3, 132, 199, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card-content {
    flex: 1; 
    display: flex;
    flex-direction: column;
}

    .feature-card-content p {
        margin-bottom: auto;
    }

.feature-benefits {
    margin-top: auto;
    list-style: none;
    padding: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(3, 132, 199, 0.15);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(3, 132, 199, 0.2);
    overflow: hidden;
}

    .feature-icon img {
        width: 60%; 
        height: 60%; 
        object-fit: contain;
    }

.feature-title {
    font-family: 'Aeonik', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: black;
    margin: 0;
}

.feature-content p {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: black;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: justify;
}

.feature-benefits li {
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: black;
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

    .feature-benefits li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background-image: url('/Content/images/check.png');
        background-size: contain;
        background-repeat: no-repeat;
    }

/* Trust Section in Single Line */
.about-trust-section {
    margin: 0;
    padding: 60px 0px;
    background: #e9f4ff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

.trust-header h3 {
    font-family: 'Aeonik', sans-serif;
    font-size: 41px;
    font-weight: 800;
    color: black;
    margin-bottom: 40px;
    line-height: 1;
}

.trust-grid-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-card {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .trust-card:hover {
        transform: translateY(-10px);
    }

.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fbc840;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

    .trust-icon img {
        width: 24px;
        height: 24px;
    }

.trust-content {
    text-align: left;
}

.trust-number {
    font-family: 'Aeonik', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: black;
    margin-bottom: 2px;
}

.trust-label {
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    line-height: 1.3;
}

.trust-center-image {
    flex-shrink: 0;
}

    .trust-center-image img {
        max-width: 390px;
        height: auto;
    }


/* Counter animation */
.counter {
    display: inline-block;
    transition: all 0.5s ease;
}

/* CTA Section with Yellow Buttons */
.about-cta-section {
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, #0384C7 0%, #0089D1 100%);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(3, 132, 199, 0.3);
    text-align: center;
    color: white;
}

.cta-title {
    font-family: 'Aeonik', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.cta-description {
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

/* Override for yellow buttons in CTA */
    .cta-buttons .button-primary {
        background-color: #F4B425;
        color: #1a1a1a;
        border: none;
        padding: 16px 32px;
        font-family: 'Satoshi', sans-serif;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(244, 180, 37, 0.3);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; 
    }

    .cta-buttons .button-primary:hover {
        background-color: #E5A020;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(244, 180, 37, 0.4);
        color: white;
    }

.cta-buttons .button-secondary-style {
    background-color: #F4B425;
    color: #1a1a1a;
    border: 2px solid #F4B425;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(244, 180, 37, 0.3);
}

.cta-buttons .button-secondary-style:hover {
    background-color: #E5A020;
    color: #1a1a1a;
    border-color: #E5A020;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 180, 37, 0.4);
}

.cta-guarantee {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-items {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    opacity: 0.9;
}

.guarantee-icon {
    width: 24px;
    height: 24px;
    stroke: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trust-stats-single-line {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .about-hero-stats {
        flex-direction: row;
        gap: 10px;
    }

    .hero-stat {
        width: 80px;
        padding: 16px;
    }

    .hero-stat-number {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 14px;
        line-height: 1;
    }
    
    .hero-image-wrapper {
        max-width: 350px;
    }
    
    .hero-image-wrapper img {
        border-radius: 12px;
    }
    
    .about-story-section {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .story-image-wrapper {
        max-width: 350px;
    }
    
    .story-image-wrapper img {
        border-radius: 12px;
    }
    
    .story-content {
        max-width: 100%;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .button-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .guarantee-items {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-stats-single-line {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .trust-stat {
        padding: 16px 8px;
    }
    
    .trust-number {
        font-size: 24px;
    }
    
    .trust-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
    }

    .about-badge {
        width: 60%;
    }

    .about-hero-title {
        font-size: 25px;
        line-height: 1.2;
    }

    .about-container, .about-hero-section, .about-story-section, .about-cta-section, .trust-grid-container {
        padding: 0 16px !important;
        margin: 0 auto !important;
        box-sizing: border-box;
    }

    .about-header-content {
        max-width: 100% !important;
        text-align: center;
    }
    .about-hero-content, .story-content, .about-cta-section {
        max-width: 80% !important;
        text-align: center;
    }

    .hero-image-wrapper,
    .story-image-wrapper,
    .trust-center-image img {
        max-width: 60% !important;
        aspect-ratio: auto;
        padding: 0 !important;
    }

    .about-hero-section, .about-story-section {
        gap: 24px !important;
        padding: 24px 16px !important;
        margin: 40px 0 !important;
        flex-direction: column;
    }

    .trust-grid-container {
        gap: 24px !important;
        flex-direction: column;
    }

    .trust-card {
        width: 80% !important;
        max-width: 320px;
        margin: 0 auto;
    }

    .about-title {
        font-size: 40px;
    }

    .story-title, .cta-title {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .about-subtitle, .about-hero-description, .story-subtitle, .cta-description {
        font-size: 16px;
        line-height: 1.2;
    }

    .story-text p{
        font-size: 16px;
        line-height: 1.2;
    }

    .feature-card {
        padding: 20px !important;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

        .cta-buttons .button-primary,
        .cta-buttons .button-secondary-style {
            width: 60%;
            max-width: 280px;
        }

    .about-badges {
        justify-content: center;
        align-content: center;
        flex-direction: column;
        gap: 8px !important;
        padding: 0 10px;
    }

    .guarantee-items {
        flex-direction: column;
        gap: 12px;
    }

    .trust-stats-single-line {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .trust-number {
        font-size: 20px !important;
    }

    .trust-label {
        font-size: 12px !important;
    }

    .about-cta-section {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
        padding: 16px 16px !important;
    }    }
}
