    @charset "UTF-8";
    /* ========== CSS VARIABLES ========== */
    
     :root {
        --primary-bg: #0a0a0a;
        --secondary-bg: #111111;
        --accent-orange: #ff6b35;
        --accent-gold: #ffd700;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --card-bg: rgba(17, 17, 17, 0.9);
        --card-border: rgba(255, 107, 53, 0.3);
        --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
    }
    /* ========== OVERRIDE GERAL.CSS CONFLICTS ========== */
    /* Override h1 styles from geral.css */
    
    .about-hero h1,
    .mission-section h2,
    .about-content-section h2,
    .founders-section h2 {
        border-bottom: none !important;
        border-image: none !important;
        animation: none !important;
    }
    
    .about-hero h1::after,
    .mission-section h2::after,
    .about-content-section h2::after,
    .founders-section h2::after {
        display: none !important;
    }
    /* ========== ABOUT PAGE STYLES ========== */
    
    .about-page {
        min-height: 100vh;
        background: var(--primary-bg);
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    /* ========== HERO SECTION ========== */
    
    .about-hero {
        min-height: 70vh;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 120px 20px 80px;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 69, 0, 0.05) 50%, rgba(0, 0, 0, 0.9) 100%);
        position: relative;
        overflow: hidden;
        text-align: center;
        margin-top: 0 !important;
    }
    
    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('img/background.png') center/cover;
        opacity: 0.1;
        z-index: -1;
    }
    
    .hero-content {
        max-width: 800px;
        z-index: 2;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 4rem !important;
        font-weight: 900 !important;
        color: var(--text-primary) !important;
        margin-bottom: 1.5rem !important;
        text-shadow: 0 0 40px rgba(255, 107, 53, 0.6) !important;
        letter-spacing: 2px !important;
        border: none !important;
        background: none !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .hero-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .hero-logo .logo-image {
        max-width: 280px;
        height: auto;
        filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.4)) drop-shadow(0 0 16px rgba(255, 107, 53, 0.2)) drop-shadow(0 0 24px rgba(255, 107, 53, 0.1)) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
        transition: filter 0.3s ease;
        transform-style: preserve-3d;
    }
    
    .hero-logo .logo-image:hover {
        filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.6)) drop-shadow(0 0 24px rgba(255, 107, 53, 0.4)) drop-shadow(0 0 36px rgba(255, 107, 53, 0.2)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    }
    
    .scroll-down-btn {
        display: flex;
        justify-content: center;
        margin-top: 3rem;
    }
    
    .scroll-btn {
        background: rgba(255, 107, 53, 0.1);
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: var(--primary-color);
        font-size: 1.5rem;
        backdrop-filter: blur(10px);
    }
    
    .scroll-btn:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    }
    
    .scroll-btn i {
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        color: var(--text-secondary);
        margin-bottom: 3rem;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        flex-wrap: wrap;
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: var(--transition-smooth);
    }
    
    .stat:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 107, 53, 0.5);
    }
    
    .stat i {
        font-size: 2.5rem;
        color: var(--accent-orange);
        margin-bottom: 0.5rem;
    }
    
    .stat span {
        font-size: 1rem;
        color: var(--text-secondary);
        text-align: center;
        font-weight: 600;
    }
    /* ========== MISSION SECTION ========== */
    
    .mission-section {
        padding: 80px 20px;
        background: white;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 20px;
        margin: 40px 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        position: relative;
    }
    
    .mission-section::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        background: white;
        border-radius: 25px;
        z-index: -1;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .section-header h2 {
        font-size: 3rem !important;
        color: #333333 !important;
        margin-bottom: 1rem !important;
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.5) !important;
    }
    
    .section-header p {
        font-size: 1.2rem;
        color: #666666;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .mission-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .mission-card {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        transition: var(--transition-smooth);
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .mission-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 107, 53, 0.6);
        box-shadow: var(--shadow-glow);
    }
    
    .mission-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }
    
    .mission-icon i {
        font-size: 2rem;
        color: white;
    }
    
    .mission-card h3 {
        font-size: 1.5rem;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }
    
    .mission-card p {
        color: var(--text-secondary);
        line-height: 1.6;
    }
    /* ========== ABOUT CONTENT SECTION ========== */
    
    .about-content-section {
        padding: 80px 20px;
        background: var(--secondary-bg);
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .about-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .about-content-section .section-header h2 {
        color: var(--text-primary) !important;
    }
    
    .about-content-section .section-header p {
        color: var(--text-secondary);
    }
    
    .about-text p {
        font-size: 1.1rem;
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-text .highlight {
        color: var(--accent-orange);
        font-weight: 700;
    }
    
    .about-text .highlight-text {
        font-size: 1.2rem;
        color: var(--accent-gold);
        text-align: center;
        font-style: italic;
        margin-top: 2rem;
    }
    /* ========== FOUNDERS SECTION ========== */
    
    .founders-section {
        padding: 80px 20px;
        background: white;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 20px;
        margin: 40px 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        position: relative;
    }
    
    .founders-section::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        background: white;
        border-radius: 25px;
        z-index: -1;
    }
    
    .founders-section .section-header h2 {
        color: #333333 !important;
    }
    
    .founders-section .section-header p {
        color: #666666;
    }
    
    .founders-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        perspective: 1000px;
    }
    
    .founder-card {
        width: 100%;
        height: 500px;
        perspective: 1000px;
        position: relative;
    }
    
    .founder-card-inner {
        width: 100%;
        height: 100%;
        position: relative;
        transform-style: preserve-3d;
        transform: rotateY(0deg);
    }
    
    .founder-card.flipped .founder-card-inner {
        transform: rotateY(180deg);
    }
    
    .founder-card-front,
    .founder-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
    }
    
    .founder-card-front {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transform: rotateY(0deg);
    }
    
    .founder-card-back {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem;
        overflow-y: auto;
        transform: rotateY(180deg);
        text-align: center;
    }
    /* Hover effects */
    
    .founder-card:hover .founder-card-front,
    .founder-card:hover .founder-card-back {
        border-color: rgba(255, 107, 53, 0.6);
        box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
    }
    /* Ensure smooth animation */
    
    .founder-card * {
        box-sizing: border-box;
    }
    /* Animation keyframes for extra smoothness */
    
    @keyframes flipIn {
        0% {
            transform: rotateY(0deg);
        }
        100% {
            transform: rotateY(180deg);
        }
    }
    
    @keyframes flipOut {
        0% {
            transform: rotateY(180deg);
        }
        100% {
            transform: rotateY(0deg);
        }
    }
    /* Force hardware acceleration */
    
    .founder-card-inner {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    /* Fallback for older browsers */
    
    .founder-card-inner {
        -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        -moz-transition: -moz-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: -o-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    /* Ensure 3D transforms work */
    
    .founder-card-front,
    .founder-card-back {
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .learn-more-btn {
        background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    
    .learn-more-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        background: linear-gradient(135deg, #ff8c42, var(--accent-orange));
    }
    
    .founder-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .founder-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.5s ease;
    }
    
    .founder-card:hover .founder-image img {
        transform: scale(1.05);
    }
    
    .founder-front-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        padding: 0 1rem;
    }
    
    .founder-front-content h3 {
        font-size: 1.5rem;
        color: var(--text-primary);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .founder-front-content p {
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    .know-more-btn {
        background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .know-more-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
    
    .founder-content {
        padding: 0;
        background: transparent;
        width: 100%;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .founder-content h3 {
        font-size: 1.5rem;
        color: var(--text-primary);
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .founder-socials {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .founder-socials a {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
        transform-style: preserve-3d;
    }
    
    .founder-socials a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .founder-socials a:hover {
        background: var(--accent-orange);
        color: white;
        transform: translateZ(15px) rotateX(10deg) rotateY(10deg);
        border-color: rgba(255, 107, 53, 0.6);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    }
    
    .founder-socials a:hover::before {
        left: 100%;
    }
    
    .founder-content p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: left;
        font-size: 0.9rem;
        flex: 1;
    }
    
    .founder-content .learn-more-btn {
        margin-top: auto;
        align-self: center;
    }
    /* ========== BACK TO HOME SECTION ========== */
    
    .back-section {
        padding: 80px 20px;
        text-align: center;
        background: var(--primary-bg);
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .back-button-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .back-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 15px 30px;
        background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 107, 53, 0.3);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    }
    
    .back-button:hover {
        background: linear-gradient(135deg, #ff8c42, var(--accent-orange));
        transform: translateX(-8px);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
        color: white;
    }
    
    .back-button i {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }
    
    .back-button:hover i {
        transform: translateX(-4px);
    }
    
    .back-button span {
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    /* ========== SCROLL REVEAL ========== */
    
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    /* ========== RESPONSIVE DESIGN ========== */
    /* Tablet Styles */
    
    @media (max-width: 1024px) {
        .hero-content h1 {
            font-size: 3.5rem !important;
        }
        .hero-subtitle {
            font-size: 1.3rem;
        }
        .section-header h2 {
            font-size: 2.5rem !important;
        }
        .mission-content {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .founders-grid {
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
    }
    /* Mobile Styles */
    
    @media (max-width: 768px) {
        .hero-content {
            padding: 0 15px;
        }
        .hero-content h1 {
            font-size: 2.5rem !important;
            text-align: center !important;
        }
        .hero-logo .logo-image {
            max-width: 200px;
        }
        .scroll-btn {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        .hero-stats {
            gap: 1.5rem;
            margin-top: 1.5rem;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .stat {
            padding: 1rem;
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }
        .stat i {
            font-size: 2rem;
        }
        .section-header h2 {
            font-size: 2.2rem !important;
        }
        .mission-content {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .founders-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .founder-content {
            padding: 1.5rem;
        }
        .back-section {
            padding: 40px 15px;
        }
    }
    /* Small Mobile Styles */
    
    @media (max-width: 480px) {
        .hero-content {
            padding: 0 10px;
        }
        .hero-content h1 {
            font-size: 2rem !important;
            text-align: center !important;
            line-height: 1.2 !important;
        }
        .hero-logo .logo-image {
            max-width: 160px;
        }
        .scroll-btn {
            width: 45px;
            height: 45px;
            font-size: 1rem;
        }
        .hero-subtitle {
            font-size: 1rem;
            text-align: center;
            padding: 0 10px;
        }
        .hero-stats {
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            padding: 0 10px;
        }
        .stat {
            width: 100%;
            max-width: 250px;
            margin: 0 auto;
        }
        .section-header h2 {
            font-size: 1.8rem !important;
        }
        .section-header p {
            font-size: 1rem;
        }
        .mission-card {
            padding: 1.5rem;
        }
        .founder-content {
            padding: 1rem;
        }
        .founder-content h3 {
            font-size: 1.3rem;
        }
    }
    /* Landscape Mobile Styles */
    
    @media (max-width: 768px) and (orientation: landscape) {
        .about-hero {
            min-height: 50vh;
            padding: 60px 20px 40px;
        }
        .hero-content h1 {
            font-size: 2rem !important;
            margin-bottom: 1rem;
        }
        .hero-subtitle {
            margin-bottom: 1.5rem;
        }
        .hero-stats {
            margin-top: 1rem;
        }
        .mission-section,
        .about-content-section,
        .founders-section {
            padding: 40px 20px;
        }
        .back-section {
            padding: 40px 20px;
        }
    }
    /* Extra Small Mobile Styles */
    
    @media (max-width: 320px) {
        .hero-content {
            padding: 0 5px;
        }
        .hero-content h1 {
            font-size: 1.8rem !important;
            line-height: 1.1 !important;
        }
        .hero-logo .logo-image {
            max-width: 140px;
        }
        .hero-subtitle {
            font-size: 0.9rem;
            padding: 0 5px;
        }
        .hero-stats {
            padding: 0 5px;
        }
        .stat {
            max-width: 220px;
            padding: 0.8rem;
        }
        .stat i {
            font-size: 1.8rem;
        }
        .stat span {
            font-size: 0.9rem;
        }
    }