﻿/*.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero-tutoria {
    background: url('https://picsum.photos/id/1070/1920/1080') center/cover no-repeat;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 15px;
    margin-bottom: 40px;
    overflow: hidden;
}

    .hero-tutoria::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

.hero-content {
    position: relative;
    z-index: 1;
    animation: slideUp 1s ease-out;
}

.hero-tutoria h1 {
    font-size: 3rem;
    animation: pulseText 2s infinite;
}

.hero-tutoria p {
    font-size: 1.5rem;
    animation: fadeInUp 1.5s ease-out 0.5s backwards;
}

.hero-tutoria .btn {
    background-color: #149c68;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

    .hero-tutoria .btn:hover {
        background-color: #0f6f47;
        transform: scale(1.05);
    }

.section {
    padding: 60px 0;
    animation: fadeIn 1s ease-out;
}

.tutoring-option {
    background: #fff;
    border: 2px solid #76c7a2;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    animation: slideIn 1s ease-out;
}

    .tutoring-option:hover {
        transform: translateY(-10px);
    }

.feature-card {
    background: #fff;
    border: 2px solid #76c7a2;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

    .feature-card:hover {
        transform: scale(1.05);
    }

    .feature-card i {
        font-size: 2rem;
        color: #149c68;
    }

.subject-card {
    background: rgba(118, 199, 162, 0.8);
    border: 2px solid #149c68;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    animation: slideIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulseText {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-tutoria h1 {
        font-size: 2rem;
    }

    .hero-tutoria p {
        font-size: 1rem;
    }

    .tutoring-option {
        margin-bottom: 20px;
    }
}
*/

/* Full-width sections */
.section .full-width {
    width: 100%; 
    max-width: 100%;
    margin: 0;
    padding: 60px 5%;
}

.section .limited-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}

/* Hero */
.hero-tutoria {
    background: linear-gradient(rgba(20,156,104,0.7), rgba(0,0,0,0.7)), url('https://picsum.photos/id/1070/1920/1080') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

h2 {
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.hero-tutoria .btn {
    background-color: #fff;
    color: #149c68;
    border: none;
    padding: 14px 35px;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: 0.3s ease;
}

    .hero-tutoria .btn:hover {
        background-color: #149c68;
        color: #fff;
        transform: scale(1.05);
    }

/* General sections */
.section {
    padding: 70px 0;
}

.info-card, .benefit-card, .pillar-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .info-card:hover, .benefit-card:hover, .pillar-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .info-card h4, .benefit-card h5, .pillar-card h5 {
        margin-top: 15px;
        font-weight: bold;
        color: #149c68;
    }

    .info-card i, .benefit-card i, .pillar-card i {
        font-size: 2rem;
        color: #76c7a2;
        margin-bottom: 10px;
    }

/* Subjects */
.subject-card {
    background: #76c7a2;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

    .subject-card:hover {
        transform: scale(1.05);
        background: #149c68;
    }
