/* ===========================================
   Seja Convidado Page
   =========================================== */

/* Hero Section */
.guest-hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 117, 188, 0.08), rgba(220, 12, 130, 0.08));
    overflow: hidden;
}

.guest-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.guest-hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.guest-hero-text p {
    color: var(--gray);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Microphone Illustration */
.guest-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mic-illustration {
    width: 280px;
    height: 280px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(15, 117, 188, 0.3);
}

.mic-illustration>i {
    font-size: 6rem;
    color: var(--white);
    margin-bottom: 15px;
}

.sound-wave {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 30px;
}

.sound-wave span {
    display: block;
    width: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    animation: wave 1.2s ease-in-out infinite;
}

.sound-wave span:nth-child(1) {
    height: 10px;
    animation-delay: 0s;
}

.sound-wave span:nth-child(2) {
    height: 20px;
    animation-delay: 0.1s;
}

.sound-wave span:nth-child(3) {
    height: 28px;
    animation-delay: 0.2s;
}

.sound-wave span:nth-child(4) {
    height: 20px;
    animation-delay: 0.3s;
}

.sound-wave span:nth-child(5) {
    height: 10px;
    animation-delay: 0.4s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.8);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    position: absolute;
    top: -12px;
    right: -5px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.step-icon i {
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-card h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 30px;
    color: var(--blue);
    font-size: 1.2rem;
    opacity: 0.4;
}

/* What We Look For */
.what-we-look-for {
    padding: 80px 0;
    background: var(--light-gray);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.criteria-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
}

.criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--blue);
}

.criteria-card i {
    font-size: 2.2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: block;
}

.criteria-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.criteria-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Application Form Section */
.application-section {
    padding: 80px 0;
    background: var(--white);
}

.application-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.application-header {
    text-align: center;
    margin-bottom: 40px;
}

.application-header h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.application-header p {
    color: var(--gray);
    font-size: 1.05rem;
}

.application-form {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 15px;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: var(--blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(15, 117, 188, 0.1);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--blue);
    cursor: pointer;
}

.form-check label {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    cursor: pointer;
}

.form-check label a {
    color: var(--blue);
    font-weight: 500;
}

.form-check label a:hover {
    color: var(--pink);
}

#formAlerts {
    margin-bottom: 15px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    justify-content: center;
}

.btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Guest FAQ */
.guest-faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item h4 i {
    color: var(--blue);
    font-size: 0.9rem;
}

.faq-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .guest-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .guest-hero-text h1 {
        font-size: 2.2rem;
    }

    .mic-illustration {
        width: 200px;
        height: 200px;
    }

    .mic-illustration>i {
        font-size: 4rem;
    }

    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-connector {
        display: none;
    }

    .steps-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .guest-hero {
        padding: 50px 0;
    }

    .guest-hero-text h1 {
        font-size: 1.8rem;
    }

    .guest-hero-visual {
        display: none;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .application-form {
        padding: 25px;
    }

    .step-card {
        min-width: 100%;
    }
}