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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    overflow-x: hidden;
}

.magnificent-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.supreme-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.royal-header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.royal-header .supreme-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.majestic-logo {
    display: flex;
    flex-direction: column;
}

.golden-title {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platinum-subtitle {
    font-size: 12px;
    color: #ccc;
    letter-spacing: 2px;
}

.diamond-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.crystal-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.crystal-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.crystal-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transition: width 0.3s ease;
}

.crystal-link:hover::after {
    width: 100%;
}

.elite-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.luxury-bar {
    width: 25px;
    height: 3px;
    background: #ffd700;
    transition: 0.3s;
}

.spectacular-main {
    margin-top: 80px;
}

.heroic-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    position: relative;
    overflow: hidden;
}

.heroic-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.heroic-banner .supreme-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.legendary-content {
    color: white;
}

.titanium-headline {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emerald-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.sapphire-buttons {
    display: flex;
    gap: 20px;
}

.ruby-button {
    text-decoration: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ruby-button.primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.ruby-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.ruby-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.mystical-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.enchanted-cards {
    position: relative;
    width: 300px;
    height: 200px;
}

.magical-card {
    position: absolute;
    width: 120px;
    height: 160px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 0;
    z-index: 3;
}

.card-2 {
    top: 20px;
    left: 40px;
    z-index: 2;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.card-3 {
    top: 40px;
    left: 80px;
    z-index: 1;
    background: linear-gradient(45deg, #4ecdc4, #7bdcdc);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.magnificent-features {
    padding: 100px 0;
    background: white;
}

.diamond-section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pristine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.celestial-feature {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.celestial-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.cosmic-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.cosmic-icon.shield {
    background: linear-gradient(45deg, #4ecdc4, #7bdcdc);
}

.cosmic-icon.bonus {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.cosmic-icon.support {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.cosmic-icon.games {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.cosmic-icon::before {
    content: "🛡️";
}

.cosmic-icon.bonus::before {
    content: "💰";
}

.cosmic-icon.support::before {
    content: "🎧";
}

.cosmic-icon.games::before {
    content: "🎮";
}

.amber-feature-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.pearl-feature-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.premium-casinos {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff, #e8f2ff);
}

.luxurious-casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.opulent-casino-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.opulent-casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4, #667eea);
}

.opulent-casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.15);
    border-color: #ffd700;
}

.regal-casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.noble-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.casino-brand-image {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.casino-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.sovereign-rating {
    color: #ffd700;
    font-size: 18px;
}

.aristocratic-bonus {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 15px;
}

.magnificent-amount {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.elegant-text {
    color: #666;
    font-size: 14px;
}

.distinguished-features {
    list-style: none;
    margin-bottom: 30px;
}

.distinguished-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.distinguished-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.majestic-safety {
    padding: 100px 0;
    background: white;
}

.enlightened-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.sacred-advice {
    padding: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 20px;
    border-left: 5px solid #667eea;
}

.glorious-warning {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
}

.glorious-warning .diamond-section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.cautionary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.warning-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.alert-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.secao-rodape {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 0;
}

.contentor-fluido {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.conteudo-rodape {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.informacao-rodape {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logotipo-rodape {
    margin-bottom: 10px;
}

.texto-marca {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.descricao-rodape {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.ligacoes-rodape {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.ligacao-rodape {
    transition: transform 0.3s ease;
}

.ligacao-rodape:hover {
    transform: scale(1.1);
}

.ligacoes-rodape img {
    height: 40px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.age-restriction-badge {
    background: #ffd700;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: bold;
    color: #000;
    border: 2px solid #ffed4e;
}

.footer-certification-logo {
    padding: 5px;
    border: 1px solid #ddd;
    filter: brightness(1.1);
}

.footer-certification-logo:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.aviso-rodape {
    display: flex;
    justify-content: center;
    align-items: center;
}

.caixa-aviso {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.texto-aviso-rodape {
    font-size: 36px;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.descricao-aviso {
    color: white;
    font-size: 14px;
    margin: 0;
}

.paragrafo-aviso {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #ff6b35;
    line-height: 1.6;
}

.texto-centro {
    text-align: center;
}

.paragrafo-links {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.paragrafo-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.paragrafo-links a:hover {
    color: #ffd700;
}

.disclamer-importante {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.disclamer-conteudo {
    padding: 30px;
}

.disclamer-titulo {
    color: #ff6b35;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.disclamer-texto {
    color: #ecf0f1;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

.disclamer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.disclamer-links a {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
    font-weight: bold;
}

.disclamer-links a:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.fundo-rodape {
    background: #111;
    padding: 20px 0;
    margin-top: 40px;
}

.direitos-autorais {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .elite-mobile-toggle {
        display: flex;
    }
    
    .imperial-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .imperial-navigation.active {
        display: block;
    }
    
    .diamond-menu {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .heroic-banner .supreme-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .titanium-headline {
        font-size: 32px;
    }
    
    .emerald-description {
        font-size: 16px;
    }
    
    .sapphire-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pristine-grid {
        grid-template-columns: 1fr;
    }
    
    .luxurious-casino-grid {
        grid-template-columns: 1fr;
    }
    
    .enlightened-grid {
        grid-template-columns: 1fr;
    }
    
    .cautionary-grid {
        grid-template-columns: 1fr;
    }
    
    .conteudo-rodape {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ligacoes-rodape {
        justify-content: center;
    }
    
    .disclamer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .elite-mobile-toggle.active .luxury-bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .elite-mobile-toggle.active .luxury-bar:nth-child(2) {
        opacity: 0;
    }
    
    .elite-mobile-toggle.active .luxury-bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 480px) {
    .golden-title {
        font-size: 22px;
    }
    
    .titanium-headline {
        font-size: 28px;
    }
    
    .diamond-section-title {
        font-size: 32px;
    }
    
    .ruby-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .texto-marca {
        font-size: 24px;
    }
    
    .disclamer-titulo {
        font-size: 20px;
    }
    
    .caixa-aviso {
        padding: 20px;
    }
    
    .texto-aviso-rodape {
        font-size: 28px;
    }
}

.animate-in {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.legal-hero-banner {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="0.8" fill="rgba(255,255,255,0.1)"/><circle cx="65" cy="35" r="0.8" fill="rgba(255,255,255,0.1)"/><circle cx="35" cy="75" r="0.8" fill="rgba(255,255,255,0.1)"/><circle cx="85" cy="85" r="0.8" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-grain)"/></svg>');
    opacity: 0.4;
}

.legal-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.legal-page-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { 
        filter: brightness(1);
        transform: scale(1);
    }
    100% { 
        filter: brightness(1.1);
        transform: scale(1.02);
    }
}

.legal-page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
    animation: subtitleFade 2s ease-out;
}

@keyframes subtitleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.legal-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    min-height: 60vh;
}

.terms-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    animation: documentSlide 1s ease-out;
}

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

.terms-document::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b, #ffd700);
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.terms-section {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

.terms-section:hover {
    transform: translateX(5px);
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.03));
    border-radius: 10px;
    padding-left: 20px;
}

.terms-section:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.terms-heading {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-left: 25px;
    border-left: 5px solid #667eea;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.terms-heading::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.terms-section:hover .terms-heading::before {
    width: 8px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
}

.terms-paragraph {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
    text-indent: 20px;
    transition: color 0.3s ease;
}

.terms-section:hover .terms-paragraph {
    color: #333;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    border-radius: 15px;
    padding: 20px;
}

.terms-list li {
    position: relative;
    padding: 12px 0 12px 40px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.terms-list li:hover {
    color: #333;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    transform: translateX(5px);
}

.terms-list li::before {
    content: "▶";
    position: absolute;
    left: 12px;
    top: 12px;
    color: #667eea;
    font-size: 14px;
    transition: all 0.3s ease;
}

.terms-list li:hover::before {
    color: #ff6b6b;
    transform: scale(1.2);
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-important-notice {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
    animation: noticeScale 2s ease-out;
}

@keyframes noticeScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.terms-important-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: noticeShine 4s ease-in-out infinite;
}

@keyframes noticeShine {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.notice-title {
    font-size: 26px;
    margin-bottom: 25px;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.notice-text {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .legal-hero-banner {
        padding: 100px 0 60px;
    }
    
    .legal-page-title {
        font-size: 36px;
    }
    
    .legal-page-subtitle {
        font-size: 16px;
    }
    
    .terms-document {
        padding: 35px 25px;
        margin: 0 15px;
        border-radius: 20px;
    }
    
    .terms-heading {
        font-size: 22px;
        padding-left: 20px;
    }
    
    .terms-paragraph {
        font-size: 15px;
        text-indent: 15px;
    }
    
    .terms-list {
        padding: 15px;
    }
    
    .terms-list li {
        font-size: 15px;
        padding-left: 35px;
    }
    
    .terms-important-notice {
        padding: 30px 25px;
        margin: 35px 15px 30px;
    }
    
    .notice-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .notice-text {
        font-size: 16px;
    }
    
    .terms-section:hover {
        transform: none;
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .legal-hero-banner {
        padding: 90px 0 50px;
    }
    
    .legal-page-title {
        font-size: 30px;
    }
    
    .legal-page-subtitle {
        font-size: 15px;
    }
    
    .terms-document {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .terms-heading {
        font-size: 20px;
        padding-left: 18px;
    }
    
    .terms-paragraph {
        font-size: 14px;
    }
    
    .terms-list li {
        font-size: 14px;
        padding-left: 30px;
    }
    
    .terms-important-notice {
        padding: 25px 20px;
    }
    
    .notice-title {
        font-size: 20px;
    }
    
    .notice-text {
        font-size: 15px;
    }
}

.terms-section {
    opacity: 0;
    animation: sectionFadeIn 0.8s ease-out forwards;
}

.terms-section:nth-child(1) { animation-delay: 0.1s; }
.terms-section:nth-child(2) { animation-delay: 0.2s; }
.terms-section:nth-child(3) { animation-delay: 0.3s; }
.terms-section:nth-child(4) { animation-delay: 0.4s; }
.terms-section:nth-child(5) { animation-delay: 0.5s; }
.terms-section:nth-child(6) { animation-delay: 0.6s; }
.terms-section:nth-child(7) { animation-delay: 0.7s; }
.terms-section:nth-child(8) { animation-delay: 0.8s; }
.terms-section:nth-child(9) { animation-delay: 0.9s; }
.terms-section:nth-child(10) { animation-delay: 1.0s; }
.terms-section:nth-child(11) { animation-delay: 1.1s; }
.terms-section:nth-child(12) { animation-delay: 1.2s; }
.terms-section:nth-child(13) { animation-delay: 1.3s; }
.terms-section:nth-child(14) { animation-delay: 1.4s; }
.terms-section:nth-child(15) { animation-delay: 1.5s; }

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

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b, #ffd700);
    z-index: 1001;
    transition: width 0.1s ease;
}

.cookie-category-title {
    font-size: 20px;
    color: #667eea;
    margin: 25px 0 15px 0;
    padding-left: 15px;
    border-left: 3px solid #667eea;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
}

.cookie-settings-panel {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.cookie-settings-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: cookieShine 6s ease-in-out infinite;
}

@keyframes cookieShine {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(360deg); }
}

.cookie-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 10px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-toggle-label {
    font-weight: 500;
    flex-grow: 1;
}

.cookie-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-switch.active {
    background: #4ecdc4;
}

.cookie-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-switch.active::before {
    transform: translateX(30px);
}

@media print {
    .legal-hero-banner,
    .royal-header,
    .secao-rodape,
    .scroll-to-top,
    .reading-progress {
        display: none !important;
    }
    
    .terms-document {
        box-shadow: none;
        padding: 20px;
        margin: 0;
    }
    
    .terms-section {
        page-break-inside: avoid;
        animation: none;
        opacity: 1;
    }
    
    .terms-heading {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
    }
    
    .terms-paragraph,
    .terms-list li {
        color: #000 !important;
    }
}
.thank-you-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-animation {
    margin-bottom: 40px;
    animation: successSlide 1s ease-out;
}

@keyframes successSlide {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    border: 4px solid #4ecdc4;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    background: rgba(78, 205, 196, 0.1);
    backdrop-filter: blur(10px);
    animation: checkmarkGlow 2s ease-in-out infinite alternate;
}

@keyframes checkmarkGlow {
    0% { box-shadow: 0 0 20px rgba(78, 205, 196, 0.5); }
    100% { box-shadow: 0 0 40px rgba(78, 205, 196, 0.8); }
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #4ecdc4;
    animation: checkmarkPop 0.8s ease-out 0.5s both;
}

.checkmark::before {
    content: '✓';
}

@keyframes checkmarkPop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    80% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.thank-you-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: titleFade 1s ease-out 0.8s both;
}

.thank-you-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: subtitleFade 1s ease-out 1s both;
}

.thank-you-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: messageFade 1s ease-out 1.2s both;
}

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

@keyframes subtitleFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 0.9; transform: translateY(0); }
}

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

.next-steps {
    margin-bottom: 50px;
    animation: stepsFade 1s ease-out 1.4s both;
}

.steps-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffd700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.step-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.step-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.step-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffd700;
}

.step-content p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.recommendations {
    margin-bottom: 50px;
    animation: recommendationsFade 1s ease-out 1.6s both;
}

.recommendations-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffd700;
}

.recommendation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.recommendation-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
}

.recommendation-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.recommendation-card .card-icon {
    font-size: 28px;
    margin-bottom: 15px;
    display: block;
}

.recommendation-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffd700;
}

.recommendation-card p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.contact-summary {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: summaryFade 1s ease-out 1.8s both;
}

.summary-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffd700;
    text-align: center;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #ffd700;
}

.summary-value {
    opacity: 0.9;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    animation: buttonsFade 1s ease-out 2s both;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 16px;
}

.primary-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #ffed4e, #fff);
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

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

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

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

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

@media (max-width: 768px) {
    .thank-you-hero {
        padding: 100px 0 60px;
    }
    
    .thank-you-title {
        font-size: 36px;
    }
    
    .thank-you-subtitle {
        font-size: 18px;
    }
    
    .checkmark-circle {
        width: 100px;
        height: 100px;
    }
    
    .checkmark {
        font-size: 36px;
    }
    
    .steps-grid,
    .recommendation-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .thank-you-hero {
        padding: 90px 0 50px;
    }
    
    .thank-you-content {
        padding: 0 15px;
    }
    
    .thank-you-title {
        font-size: 28px;
    }
    
    .thank-you-subtitle {
        font-size: 16px;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .checkmark {
        font-size: 28px;
    }
    
    .steps-title,
    .recommendations-title,
    .summary-title {
        font-size: 20px;
    }
    
    .step-item,
    .recommendation-card,
    .contact-summary {
        padding: 20px;
    }
    
    .thank-you-message {
        padding: 20px;
    }
}.contact-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    min-height: 80vh;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    animation: formSlide 1s ease-out;
}

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

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b, #ffd700);
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-heading {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.magnificent-contact-form {
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    color: #333;
    background: #fafbfc;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-input:focus + .form-focus-line,
.form-select:focus + .form-focus-line,
.form-textarea:focus + .form-focus-line {
    transform: scaleX(1);
}

.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    opacity: 0;
    position: absolute;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    cursor: pointer;
    position: relative;
}

.checkbox-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    background: #fafbfc;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-mark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-weight: bold;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.form-checkbox:checked + .checkbox-label .checkbox-mark {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-color: #667eea;
}

.form-checkbox:checked + .checkbox-label .checkbox-mark::after {
    transform: translate(-50%, -50%) scale(1);
}

.checkbox-label a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.submit-button:active {
    transform: translateY(-1px);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-icon {
    position: relative;
    z-index: 2;
    font-size: 18px;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 25px;
        margin: 0 15px;
        border-radius: 20px;
    }
    
    .contact-heading {
        font-size: 28px;
    }
    
    .contact-description {
        font-size: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .submit-button {
        padding: 15px 30px;
        font-size: 15px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-content-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-heading {
        font-size: 24px;
    }
    
    .contact-description {
        font-size: 14px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
    
    .submit-button {
        width: 100%;
        justify-content: center;
    }
}

.form-validation-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
    border-color: #e74c3c;
    background: #fdf2f2;
}

.form-group.error .form-validation-error {
    display: block;
}

.form-group.success .form-input,
.form-group.success .form-select,
.form-group.success .form-textarea {
    border-color: #27ae60;
    background: #f8fff9;
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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