/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bitter', serif;
    background: linear-gradient(180deg, #6DD5D4 0%, #4DB8B7 100%);
    color: white;
    overflow-x: hidden;
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1475503572774-15a45e5d60b9?w=1200&q=80') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #6DD5D4 0%, rgba(109, 213, 212, 0.7) 40%, rgba(0, 0, 0, 0.3) 100%);
}

.profile-badge {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 15px;
    border-radius: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.profile-badge img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-badge span {
    color: #2C9A99;
    font-size: 14px;
    font-family: 'Bitter', serif;
}

.profile-badge strong {
    color: #2C9A99;
}

.hero h1 {
    position: relative;
    z-index: 1;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Bitter', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out 0.2s both;
}

.hero p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-family: 'Bitter', serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out 0.4s both;
}

/* Services Section */
.services {
    padding: 30px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 3px solid white;
    min-height: 140px;
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-bg {
    transform: scale(1.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #6DD5D4 0%, rgba(109, 213, 212, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 2;
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(77, 184, 183, 0.4);
    border-color: #95e5e4;
}

.service-text {
    position: relative;
    z-index: 3;
    flex: 1;
    padding: 20px;
    color: white;
    font-weight: 700;
    font-size: 24px;
    font-family: 'Bitter', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* YouTube Link */
.youtube-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: #58c2c1;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 18px;
    margin: 30px 20px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(88, 194, 193, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.youtube-link:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(88, 194, 193, 0.4);
}

.youtube-icon {
    width: 30px;
    height: 30px;
}

/* About Section */
.about {
    background: white;
    padding: 40px 20px;
    text-align: center;
    max-width: 600px;
    margin: 30px auto 0;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.about img {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #95e5e4;
    transition: transform 0.3s ease;
}

.about img:hover {
    transform: scale(1.05) rotate(2deg);
}

.about h2 {
    color: #2C9A99;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Bitter', serif;
}

.about p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
    font-family: 'Bitter', serif;
}

.highlight {
    color: #2C9A99;
    font-weight: 700;
}

/* Media Queries */
@media (min-width: 769px) {
    .service-card {
        min-height: 160px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .service-text {
        font-size: 20px;
        padding: 15px;
    }

    .service-card {
        min-height: 120px;
    }

    .youtube-link {
        font-size: 16px;
        padding: 12px 20px;
    }

    .youtube-icon {
        width: 24px;
        height: 24px;
    }
}