/* ====================================== */
/* TRIO RESSOA - ENHANCED STYLES */
/* ====================================== */

/* Hero Section Enhancements */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-shapes 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    bottom: 10%;
    left: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float-shapes {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.6s ease-out;
}

.hero-badge i {
    color: #fbbf24;
    font-size: 18px;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-pillars {
    display: flex;
    gap: 24px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.pillar-item span {
    font-weight: 600;
    color: #1a202c;
    font-size: 15px;
}

.hero-cta-text {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.4;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Hero Team Icons */
.hero-team-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    align-items: center;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.team-icon-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 16px 12px;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.team-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    background: white;
    border-color: white;
}

.team-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #64748b;
    font-size: 26px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.team-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-icon-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.team-name {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.25;
}

.team-role {
    font-size: 10px;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.hero-image-badge i {
    font-size: 32px;
    color: #667eea;
}

.hero-image-badge strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
}

.hero-image-badge span {
    display: block;
    font-size: 14px;
    color: #64748b;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-badge i {
    color: #667eea;
    font-size: 16px;
}

.section-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Learning Section Enhancements */
.learning-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.learning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.learning-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.learning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.learning-card:hover::before {
    transform: scaleX(1);
}

.learning-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.learning-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.learning-card:hover .learning-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.learning-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.learning-card-content p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.learning-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.learning-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #1a202c;
    font-size: 15px;
    font-weight: 500;
}

.learning-benefits i {
    color: #10b981;
    font-size: 18px;
}

.learning-cta {
    margin-top: 64px;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.3);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.learning-cta-content h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.learning-cta-content h3 i {
    color: #fbbf24;
}

.learning-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

.learning-cta .btn-primary {
    background: white;
    color: #667eea;
    flex-shrink: 0;
    white-space: nowrap;
}

.learning-cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* About Section Enhancements */
.about-section {
    position: relative;
    min-height: auto;
    padding: 5rem 2rem;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, #667eea 0%, #243a9c 100%),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.about-bottom-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: stretch;
}

.about-main-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 32px;
    margin-bottom: 0;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 100%;
}

.about-quote {
    position: absolute;
    top: -24px;
    left: 48px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.about-main-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    margin-top: 16px;
}

.about-main-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.about-feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: white;
}

.about-feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.about-feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.about-feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}



.about-cta-section {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-cta-section h3 {
    font-size: 36px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
}

.about-cta-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

/* Responsive Design */

/* 720p - 1280x720 */
@media (min-width: 769px) and (max-width: 1366px) {
    .hero-content {
        padding: 60px 40px;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-badge {
        padding: 6px 16px;
    }

    .hero-badge span {
        font-size: 12px;
    }

    .pillar-item {
        padding: 10px 16px;
    }

    .pillar-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .pillar-item span {
        font-size: 14px;
    }

    .hero-cta-text {
        font-size: 20px;
    }

    .floating-card {
        width: 400px;
        height: 400px;
    }

    .hero-image-badge {
        padding: 12px 20px;
        bottom: 16px;
        left: 16px;
    }

    .hero-image-badge i {
        font-size: 28px;
    }

    .hero-image-badge strong {
        font-size: 16px;
    }

    .hero-image-badge span {
        font-size: 12px;
    }

    /* Learning Section */
    .learning-grid {
        gap: 24px;
        padding: 0 40px;
    }

    .learning-card {
        padding: 28px;
    }

    .learning-card-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .learning-card-content h3 {
        font-size: 22px;
    }

    .learning-card-content p {
        font-size: 15px;
    }

    .learning-benefits li {
        font-size: 14px;
    }

    .learning-cta {
        padding: 36px;
        margin-top: 48px;
    }

    .learning-cta-content h3 {
        font-size: 24px;
    }

    .learning-cta-content p {
        font-size: 15px;
    }

    /* About Section */
    .about-section {
        padding: 4rem 1.5rem;
    }

    .about-main-card {
        padding: 24px;
    }

    .about-main-card h3 {
        font-size: 28px;
    }

    .about-main-card p {
        font-size: 16px;
    }

    .about-feature-card {
        padding: 28px;
    }

    .about-feature-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .about-feature-card h4 {
        font-size: 18px;
    }

    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }



    .about-cta-section {
        padding: 32px 24px;
    }

    .about-cta-section h3 {
        font-size: 30px;
    }

    .about-cta-section p {
        font-size: 16px;
    }
}

/* 1080p - 1920x1080 */
@media (min-width: 1367px) and (max-width: 1920px) {
    .hero-content {
        max-width: 1400px;
        padding: 80px 60px;
    }

    .learning-grid,
    .about-content {
        max-width: 1400px;
    }

    .learning-cta {
        max-width: 1400px;
    }
}

/* Tablet Portrait - 768px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-pillars {
        gap: 16px;
    }

    .learning-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-bottom-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-main-card,
    .about-cta-section {
        margin-bottom: 0;
    }


}

/* Mobile - Small devices */
@media (max-width: 768px) {

    /* Hero Section */
    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 80px 20px 40px;
        gap: 32px;
        margin-top: 20px;
    }

    .shape {
        display: none;
    }

    .hero-badge {
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-badge i {
        font-size: 14px;
    }

    .hero-badge span {
        font-size: 11px;
    }

    .hero-title {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-pillars {
        flex-direction: column;
        gap: 12px;
        margin: 24px 0;
    }

    .pillar-item {
        width: 100%;
        padding: 12px 16px;
    }

    .pillar-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .pillar-item span {
        font-size: 14px;
    }

    .hero-cta-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
        align-items: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-team-icons {
        margin-top: 24px;
        gap: 8px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        width: 100%;
    }

    .team-icon-card {
        width: 100%;
        padding: 12px 4px;
        min-width: unset;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }



    .team-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .team-name {
        font-size: 11px;
        line-height: 1.2;
    }

    .team-role {
        font-size: 9px;
        margin-top: 4px;
    }

    .floating-card {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 280px;
    }

    .hero-image-badge {
        left: 12px;
        bottom: 12px;
        padding: 10px 14px;
        gap: 10px;
    }

    .hero-image-badge i {
        font-size: 20px;
    }

    .hero-image-badge strong {
        font-size: 14px;
    }

    .hero-image-badge span {
        font-size: 11px;
    }

    /* Learning Section */
    .learning-section {
        padding: 3rem 0;
    }

    .section-badge {
        padding: 6px 16px;
    }

    .section-badge i {
        font-size: 14px;
    }

    .section-badge span {
        font-size: 11px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .learning-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .learning-card {
        padding: 24px;
    }

    .learning-card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .learning-card-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .learning-card-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .learning-benefits li {
        font-size: 13px;
        padding: 8px 0;
    }

    .learning-benefits i {
        font-size: 16px;
    }

    .learning-cta {
        flex-direction: column;
        padding: 28px 20px;
        text-align: center;
        margin-top: 40px;
        margin-left: 16px;
        margin-right: 16px;
    }

    .learning-cta-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
        flex-direction: column;
        gap: 8px;
    }

    .learning-cta-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .learning-cta .btn-primary {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    /* About Section */
    .about-section {
        padding: 3rem 1rem;
    }

    .carousel-title {
        font-size: 32px;
    }

    .carousel-subtitle {
        font-size: 16px;
        padding: 0 16px;
    }

    .about-main-card {
        padding: 20px 16px;
        margin-bottom: 20px;
    }

    .about-quote {
        width: 48px;
        height: 48px;
        font-size: 20px;
        left: 20px;
        top: -20px;
    }

    .about-main-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
        margin-top: 12px;
    }

    .about-main-card p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .about-feature-card {
        padding: 24px;
    }

    .about-feature-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .about-feature-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .about-feature-card p {
        font-size: 14px;
        line-height: 1.6;
    }



    .about-bottom-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-cta-section {
        padding: 24px 16px;
    }

    .about-cta-section h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .about-cta-section p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
    }
}

/* Mobile - Extra Small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-cta-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .learning-card-content h3 {
        font-size: 18px;
    }

    .about-main-card h3 {
        font-size: 20px;
    }

    .about-cta-section h3 {
        font-size: 22px;
    }


}