/* INDEX CSS - SECOOLINDA NOVO DESIGN */

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(135deg, #7A0E13 0%, #A32025 100%);
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml+utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    cursor: pointer;
}

.btn-hero.btn-primary {
    background: #F05A5C;
    color: white;
}

.btn-hero.btn-primary:hover {
    background: white;
    color: #7A0E13;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-hero.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-hero.btn-secondary:hover {
    background: white;
    color: #7A0E13;
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(240,90,92,0.15);
    bottom: 40px;
    right: 40px;
    animation-delay: 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.08);
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-icon {
    font-size: 120px;
    color: rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 200px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
    border-radius: 20px;
}

/* ========== MAIN CARDS SECTION ========== */
.main-cards-section {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.main-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 340px);
    gap: 3rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.main-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 6px 15px rgba(0,0,0,0.1),
        0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
}

.main-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 10px 25px rgba(122,14,19,0.15),
        0 15px 35px rgba(0,0,0,0.12);
    border-color: #7A0E13;
}

.main-card-clickable {
    cursor: pointer;
}

.main-card-link {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.main-card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #7A0E13 0%, #A32025 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main-card-image-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

.main-card-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shine 3s infinite;
    z-index: 2;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main-card-content {
    padding: 1.25rem 1.25rem 1.5rem;
    text-align: center;
}

.main-card-title {
    font-size: 1.15rem;
    color: #7A0E13;
    margin-bottom: 0.6rem;
    font-weight: bold;
    text-shadow: none;
}

.main-card-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 80px 20px;
    background: white;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #7A0E13;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.section-title.white {
    color: white;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Services Tabs */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #ddd;
    background: white;
    color: #7A0E13;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.tab-btn:hover {
    border-color: #F05A5C;
    color: #F05A5C;
}

.tab-btn.active {
    background: linear-gradient(135deg, #7A0E13 0%, #A32025 100%);
    color: white;
    border-color: #7A0E13;
    box-shadow: 0 4px 12px rgba(122,14,19,0.2);
}

/* Tab Content */
.tab-content {
    perspective: 1000px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-card {
    background: linear-gradient(135deg, #f9f9f9 0%, white 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
    border-top: 4px solid #F05A5C;
}

.tab-card-icon {
    font-size: 4rem;
    color: #F05A5C;
    margin-bottom: 1.5rem;
}

.tab-card h3 {
    font-size: 1.8rem;
    color: #7A0E13;
    margin-bottom: 1rem;
    font-weight: bold;
}

.tab-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tab-link {
    color: #F05A5C;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #F05A5C;
    border-radius: 6px;
}

.tab-link:hover {
    background: #F05A5C;
    color: white;
    transform: translateX(5px);
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: linear-gradient(135deg, #7A0E13 0%, #A32025 100%);
    padding: 80px 20px;
    color: white;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    border-color: #F05A5C;
}

.stat-icon {
    font-size: 2.5rem;
    color: #F05A5C;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, #f5f5f5 0%, white 100%);
    padding: 60px 20px;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: #7A0E13;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-cta {
    padding: 16px 40px;
    background: linear-gradient(135deg, #7A0E13 0%, #A32025 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(122,14,19,0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1.hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    body {
        margin-left: 0;
    }

    .hero-section {
        padding: 50px 20px;
    }

    .hero-text h1.hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-visual {
        height: 250px;
    }

    .main-cards-section {
        padding: 0 1rem;
    }

    .main-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .main-card-image {
        height: 200px;
    }

    .services-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-tabs {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .tab-card {
        padding: 2rem;
    }

    .stats-section {
        padding: 50px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    body {
        margin-left: 0;
    }

    .hero-section {
        padding: 30px 15px;
    }

    .hero-text h1.hero-title {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .btn-hero {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .main-cards-section {
        padding: 0 0.8rem;
    }

    .main-cards-grid {
        gap: 1rem;
    }

    .main-card-content {
        padding: 1rem;
    }

    .main-card-title {
        font-size: 1rem;
    }

    .main-card-description {
        font-size: 0.85rem;
    }

    .services-section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .services-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .tab-card {
        padding: 1.5rem;
    }

    .tab-card h3 {
        font-size: 1.4rem;
    }

    .tab-card p {
        font-size: 0.9rem;
    }

    .stats-section {
        padding: 30px 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .cta-section {
        padding: 30px 15px;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

