:root {
    --primary-blue: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #dbeafe;
    --secondary: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --orange: #ff6b35;
    --dark: #1e293b;
    --light: #f8fafc;
    --gradient-blue: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
}

/* Hero Section com Gradiente */
.cadastro-hero {
    background: var(--gradient-blue);
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 3rem;
}

.cadastro-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 800px;
    height: 800px;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><polygon points="50,10 90,50 50,90 10,50" fill="rgba(255,255,255,0.05)" /></svg>');
    background-repeat: repeat;
    animation: float 20s linear infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.cadastro-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.cadastro-hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 0;
    font-weight: 400;
}

/* Cards de Opção Moderno */
.cadastro-cards {
    padding: 4rem 0;
    background: var(--light);
}

.option-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.option-card:hover::before {
    transform: scaleX(1);
}

.option-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: var(--primary-blue);
}

.option-card.orange-theme::before {
    background: var(--gradient-orange);
}

.option-card.orange-theme:hover {
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
    border-color: var(--orange);
}

.option-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    transition: all 0.4s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.option-card:hover .option-icon {
    transform: scale(1.15) rotate(5deg);
}

.option-card.orange-theme .option-icon {
    background: var(--gradient-orange);
}

.option-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.option-card p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.option-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.option-list li {
    padding: 0.7rem 0;
    color: #475569;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.option-list li i {
    color: var(--primary-blue);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.option-card.orange-theme .option-list li i {
    color: var(--orange);
}

.btn-cadastro {
    background: var(--gradient-blue);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-cadastro:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-cadastro-orange {
    background: var(--gradient-orange);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-cadastro-orange:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: white;
}

.features-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-item:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

.feature-item:hover .feature-icon {
    background: var(--gradient-blue);
    color: white;
}

.feature-item h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.feature-item p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Stats Counter */
.stats-section {
    background: var(--gradient-blue);
    padding: 3rem 0;
    color: white;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
    .cadastro-hero h1 {
        font-size: 2rem;
    }
    
    .cadastro-hero p {
        font-size: 1.1rem;
    }
    
    .option-card {
        margin-bottom: 2rem;
    }
}
