/**
 * Index Page Styles
 * Arquivo: public/css/index.css
 * 
 * Todos os estilos para a página inicial (index.php)
 */

/* ===== RESET ESPECÍFICO PARA INDEX ===== */
.index-page * {
    box-sizing: border-box;
}

.index-page {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.index-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.index-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.index-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(193, 154, 107, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(193, 154, 107, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: indexGridMove 20s linear infinite;
    z-index: 1;
}

@keyframes indexGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.index-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Logo Animado */
.index-hero-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 3rem;
}

.index-logo-ring,
.index-logo-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(193, 154, 107, 0.3);
    border-radius: 50%;
    animation: indexLogoRingPulse 3s ease-in-out infinite;
}

.index-logo-ring {
    width: 100%;
    height: 100%;
    border-top-color: #C19A6B;
    border-right-color: #C19A6B;
}

.index-logo-ring-2 {
    width: 80%;
    height: 80%;
    animation-delay: 1.5s;
    animation-direction: reverse;
    border-bottom-color: #D4AF87;
    border-left-color: #D4AF87;
}

@keyframes indexLogoRingPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
        opacity: 0.5;
    }
}

/* Título */
.index-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.index-title-word {
    display: inline-block;
    background: linear-gradient(135deg, #C19A6B 0%, #D4AF87 50%, #C19A6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: indexWordGlow 3s ease-in-out infinite;
    animation-delay: calc(var(--word-index) * 0.2s);
}

@keyframes indexWordGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.index-hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: rgba(212, 175, 135, 0.9);
}

.index-subtitle-underline {
    position: relative;
    display: inline-block;
}

.index-subtitle-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C19A6B, transparent);
    animation: indexUnderlineGlow 2s ease-in-out infinite;
}

@keyframes indexUnderlineGlow {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Botões */
.index-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.index-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
    z-index: 1;
}

.index-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.index-btn:hover::before {
    width: 300px;
    height: 300px;
}

.index-btn-primary {
    background: linear-gradient(135deg, #C19A6B 0%, #D4AF87 100%);
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(193, 154, 107, 0.3);
}

.index-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(193, 154, 107, 0.6);
}

.index-btn-secondary {
    background: transparent;
    border-color: #C19A6B;
    color: #C19A6B;
}

.index-btn-secondary:hover {
    background: rgba(193, 154, 107, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.4);
}

.index-btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.index-btn:hover .index-btn-icon {
    transform: translateX(5px);
}

/* Stats */
.index-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 2.5rem 3rem;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(193, 154, 107, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.index-stat-item {
    text-align: center;
    flex: 1;
}

.index-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #C19A6B;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.index-stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.index-stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(193, 154, 107, 0.5), transparent);
}

/* Scroll Indicator */
.index-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s;
}

.index-scroll-wheel {
    width: 4px;
    height: 10px;
    background: #C19A6B;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: indexScrollWheel 2s ease-in-out infinite;
}

@keyframes indexScrollWheel {
    0%, 100% { opacity: 0; top: 10px; }
    50% { opacity: 1; top: 25px; }
}

/* ===== ANNOUNCEMENTS SECTION ===== */
.index-announcements-section {
    padding: 8rem 2rem;
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    overflow: hidden;
}

.index-announcements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse at 10% 30%, rgba(193, 154, 107, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 70%, rgba(193, 154, 107, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

/* Ticker bar */
.index-announcements-ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(193, 154, 107, 0.25);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 4rem;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(193, 154, 107, 0.08), inset 0 1px 0 rgba(193, 154, 107, 0.1);
}

.index-announcements-ticker-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #C19A6B 0%, #D4AF87 100%);
    color: #0a0a0a;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.85rem 1.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.index-ticker-pulse {
    width: 8px;
    height: 8px;
    background: #0a0a0a;
    border-radius: 50%;
    display: inline-block;
    animation: annTickerPulse 1.2s ease-in-out infinite;
}

@keyframes annTickerPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.index-announcements-ticker {
    flex: 1;
    overflow: hidden;
    padding: 0 1.5rem;
}

.index-announcements-ticker-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: annTickerScroll 28s linear infinite;
}

.index-announcements-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes annTickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.index-ticker-item {
    color: rgba(212, 175, 135, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.25s;
    white-space: nowrap;
}

.index-ticker-item:hover {
    color: #C19A6B;
}

.index-ticker-separator {
    color: rgba(193, 154, 107, 0.3);
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* Cards grid */
.index-announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.index-announcement-card {
    position: relative;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(193, 154, 107, 0.12);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.index-announcement-card:hover {
    transform: translateY(-10px);
    border-color: rgba(193, 154, 107, 0.45);
    box-shadow: 0 20px 60px rgba(193, 154, 107, 0.18);
}

.index-ann-glow {
    position: absolute;
    top: -60%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(193, 154, 107, 0.06) 0%, transparent 65%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.index-announcement-card:hover .index-ann-glow {
    opacity: 1;
}

.index-ann-number {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(193, 154, 107, 0.08);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s;
}

.index-announcement-card:hover .index-ann-number {
    color: rgba(193, 154, 107, 0.15);
}

/* Image inside card */
.index-ann-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.index-ann-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(25%);
}

.index-announcement-card:hover .index-ann-image img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.index-ann-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
}

/* Card content */
.index-ann-content {
    padding: 1.8rem;
}

.index-ann-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(193, 154, 107, 0.1);
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 50px;
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #C19A6B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.index-ann-dot {
    width: 7px;
    height: 7px;
    background: #C19A6B;
    border-radius: 50%;
    animation: annDotBlink 1.8s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(193, 154, 107, 0.8);
}

@keyframes annDotBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

.index-ann-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.35;
    transition: color 0.3s;
}

.index-announcement-card:hover .index-ann-title {
    color: #D4AF87;
}

.index-ann-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 1.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index-ann-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid rgba(193, 154, 107, 0.1);
    padding-top: 1rem;
}

.index-ann-read {
    font-size: 0.88rem;
    font-weight: 700;
    color: #C19A6B;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.index-ann-arrow {
    display: inline-block;
    transition: transform 0.3s;
}

.index-announcement-card:hover .index-ann-arrow {
    transform: translateX(6px);
}

/* Empty state */
.index-ann-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255,255,255,0.35);
    font-size: 1.05rem;
}

.index-ann-empty-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Announcement Modal */
.announcement-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(14px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.announcement-modal-overlay.active {
    display: flex;
}

.announcement-modal {
    background: linear-gradient(145deg, rgba(28,28,28,0.98) 0%, rgba(14,14,14,0.98) 100%);
    border: 2px solid rgba(193, 154, 107, 0.3);
    border-radius: 24px;
    max-width: 680px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    animation: annModalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(193,154,107,0.05);
}

@keyframes annModalIn {
    from { opacity: 0; transform: scale(0.88) translateY(30px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

.announcement-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255,68,68,0.12);
    color: #ff5555;
    border: 2px solid rgba(255,68,68,0.25);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 5;
}

.announcement-modal-close:hover {
    background: rgba(255,68,68,0.28);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 18px rgba(255,68,68,0.45);
}

.announcement-modal-header {
    padding: 2rem 2.5rem 0;
}

.announcement-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(193, 154, 107, 0.15);
    color: #C19A6B;
    border: 1px solid rgba(193, 154, 107, 0.3);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.announcement-modal-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-top: 1.5rem;
}

.announcement-modal-body {
    padding: 2rem 2.5rem 2.5rem;
}

.announcement-modal-title {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #C19A6B 0%, #D4AF87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

.announcement-modal-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.85;
    white-space: pre-wrap;
}

.announcement-modal::-webkit-scrollbar { width: 8px; }
.announcement-modal::-webkit-scrollbar-track  { background: rgba(0,0,0,0.3); }
.announcement-modal::-webkit-scrollbar-thumb  { background: linear-gradient(180deg,#C19A6B,#D4AF87); border-radius: 10px; }

/* ===== FEATURED SECTION ===== */
.index-featured-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 8rem 2rem;
    position: relative;
}

.index-featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(193, 154, 107, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(193, 154, 107, 0.05) 0%, transparent 50%);
}

.index-section-bg {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: indexDecoFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes indexDecoFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

.index-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.index-section-subtitle {
    display: block;
    font-size: 1rem;
    color: rgba(193, 154, 107, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.index-section-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #C19A6B 0%, #D4AF87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.index-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
}

.index-divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C19A6B, transparent);
    animation: indexLineGlow 2s ease-in-out infinite;
}

@keyframes indexLineGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; box-shadow: 0 0 10px rgba(193, 154, 107, 0.6); }
}

.index-divider-dot {
    width: 8px;
    height: 8px;
    background: #C19A6B;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(193, 154, 107, 0.6);
    animation: indexDotPulse 2s ease-in-out infinite;
}

@keyframes indexDotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.index-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.index-featured-card {
    position: relative;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.index-featured-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #C19A6B, #D4AF87);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.index-featured-card:hover::before {
    opacity: 1;
    animation: indexCardBorderGlow 2s ease-in-out infinite;
}

@keyframes indexCardBorderGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(193, 154, 107, 0.5); }
    50% { box-shadow: 0 0 40px rgba(193, 154, 107, 0.8); }
}

.index-featured-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.index-card-inner {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(193, 154, 107, 0.1);
    transition: border-color 0.4s;
}

.index-featured-card:hover .index-card-inner {
    border-color: rgba(193, 154, 107, 0.3);
}

.index-card-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.index-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(30%);
}

.index-featured-card:hover .index-card-image img {
    transform: scale(1.15) rotate(2deg);
    filter: grayscale(0%);
}

.index-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.95) 0%, rgba(92, 64, 51, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.index-featured-card:hover .index-card-overlay {
    opacity: 1;
}

.index-overlay-icon {
    font-size: 3rem;
    animation: indexOverlayIconBounce 1s ease-in-out infinite;
}

@keyframes indexOverlayIconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.index-card-content {
    padding: 2.5rem;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.index-card-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(193, 154, 107, 0.1);
    line-height: 1;
    transition: all 0.4s;
}

.index-featured-card:hover .index-card-number {
    color: rgba(193, 154, 107, 0.2);
    transform: scale(1.2);
}

.index-card-content h3 {
    color: #C19A6B;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    transition: transform 0.3s;
}

.index-featured-card:hover .index-card-content h3 {
    transform: translateX(10px);
}

.index-card-content .category {
    color: rgba(193, 154, 107, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.index-card-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.index-card-arrow {
    color: #C19A6B;
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s;
}

.index-featured-card:hover .index-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.index-instagram-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.index-instagram-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(193, 43, 136, 0.5);
}

.index-custom-link-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.index-custom-link-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.5);
}

/* ===== ABOUT SECTION ===== */
.index-about-section {
    padding: 8rem 2rem;
    position: relative;
}

.index-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
}

.index-about-text {
    padding-right: 2rem;
}

.index-about-description {
    font-size: 1.3rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    font-weight: 300;
}

.index-about-description::first-letter {
    font-size: 3rem;
    font-weight: 700;
    color: #C19A6B;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
}

.index-about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.index-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(193, 154, 107, 0.03);
    border-left: 3px solid transparent;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.index-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #C19A6B, #D4AF87);
    transform: scaleY(0);
    transition: transform 0.4s;
}

.index-feature-item:hover::before {
    transform: scaleY(1);
}

.index-feature-item:hover {
    background: rgba(193, 154, 107, 0.08);
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.2);
}

.index-feature-icon-wrapper {
    position: relative;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-feature-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    animation: indexIconBounce 2s ease-in-out infinite;
}

@keyframes indexIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.index-feature-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.2), transparent);
    border-radius: 50%;
    animation: indexIconBgPulse 2s ease-in-out infinite;
}

@keyframes indexIconBgPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.index-feature-text h4 {
    color: #C19A6B;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.index-feature-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Botão Outline */
.index-btn-outline {
    background: transparent;
    border: 2px solid rgba(193, 154, 107, 0.5);
    color: #C19A6B;
    position: relative;
    overflow: hidden;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.index-btn-outline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #C19A6B, #D4AF87);
    transform: translate(-50%, -50%);
    transition: width 0.4s;
    z-index: -1;
    border-radius: 50px;
}

.index-btn-outline:hover::after {
    width: 120%;
}

.index-btn-outline:hover {
    color: #0a0a0a;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(193, 154, 107, 0.4);
}

.index-btn-arrow {
    transition: transform 0.3s;
}

.index-btn-outline:hover .index-btn-arrow {
    transform: translateX(5px);
}

/* Image Column */
.index-about-image {
    position: relative;
}

.index-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.index-image-frame {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(193, 154, 107, 0.3);
    transition: all 0.5s ease;
}

.index-image-frame:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(193, 154, 107, 0.5);
}

.index-image-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.index-image-frame:hover img {
    transform: scale(1.15) rotate(2deg);
}

/* Image Shine */
.index-image-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: rotate(45deg);
    animation: indexImageShine 3s ease-in-out infinite;
}

@keyframes indexImageShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Frame Decorations */
.index-frame-deco {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid #C19A6B;
    transition: all 0.4s ease;
    z-index: 2;
}

.index-frame-top-left {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 20px;
}

.index-frame-top-right {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 20px;
}

.index-frame-bottom-left {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 20px;
}

.index-frame-bottom-right {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 20px;
}

.index-image-frame:hover .index-frame-deco {
    width: 60px;
    height: 60px;
    border-width: 4px;
}

/* Floating Badge */
.index-floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
    animation: indexBadgeFloat 4s ease-in-out infinite;
}

.index-badge-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C19A6B 0%, #D4AF87 100%);
    border-radius: 50%;
    animation: indexBadgeGlow 2s ease-in-out infinite;
}

@keyframes indexBadgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(193, 154, 107, 0.4); }
    50% { box-shadow: 0 0 40px rgba(193, 154, 107, 0.8); }
}

@keyframes indexBadgeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.index-badge-content {
    position: relative;
    text-align: center;
    color: #0a0a0a;
    z-index: 2;
    background: linear-gradient(135deg, #C19A6B 0%, #D4AF87 100%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.index-badge-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    animation: indexBadgeIconSpin 4s linear infinite;
}

@keyframes indexBadgeIconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.index-badge-text strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.index-badge-text span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FEEDBACK SYSTEM ===== */
.feedback-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #C19A6B 0%, #D4AF87 100%);
    color: #0a0a0a;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(193, 154, 107, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: visible;
}

.feedback-float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #C19A6B 0%, #D4AF87 100%);
    opacity: 0.6;
    animation: feedbackPulseRing 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes feedbackPulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 0.3; }
    100% { transform: scale(1.6); opacity: 0; }
}

.feedback-float-btn:hover {
    transform: translateY(-8px) scale(1.1) rotate(10deg);
    box-shadow: 0 20px 60px rgba(193, 154, 107, 0.7);
}

.feedback-icon {
    position: relative;
    z-index: 2;
    animation: feedbackIconBounce 2s ease-in-out infinite;
}

@keyframes feedbackIconBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-3px) rotate(5deg); }
}

.feedback-sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100vh;
    background: linear-gradient(165deg, rgba(26, 26, 26, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    backdrop-filter: blur(30px);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    border-left: 3px solid transparent;
}

.feedback-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #C19A6B 0%, #D4AF87 50%, #C19A6B 100%);
    animation: borderGlowPulse 3s ease-in-out infinite;
}

@keyframes borderGlowPulse {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 10px rgba(193, 154, 107, 0.4); }
    50% { opacity: 1; box-shadow: 0 0 30px rgba(193, 154, 107, 0.8); }
}

.feedback-sidebar.active {
    right: 0;
}

.feedback-sidebar::-webkit-scrollbar { width: 8px; }
.feedback-sidebar::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.3); }
.feedback-sidebar::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #C19A6B, #D4AF87); border-radius: 10px; }

.feedback-sidebar-header {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid rgba(193, 154, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.feedback-sidebar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.1) 0%, transparent 70%);
    animation: headerGlowRotate 10s linear infinite;
}

@keyframes headerGlowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feedback-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feedback-header-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feedback-header-icon {
    font-size: 2.5rem;
    animation: headerIconFloat 3s ease-in-out infinite;
}

@keyframes headerIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.feedback-sidebar-header h3 {
    color: #C19A6B;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #C19A6B 0%, #D4AF87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feedback-close-btn {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
    border: 2px solid rgba(255, 68, 68, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feedback-close-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 68, 68, 0.3);
    transform: translate(-50%, -50%);
    transition: all 0.4s;
}

.feedback-close-btn:hover::before {
    width: 200%;
    height: 200%;
}

.feedback-close-btn:hover {
    background: rgba(255, 68, 68, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.feedback-sidebar-content {
    padding: 2.5rem 2rem;
}

.feedback-intro-text {
    color: rgba(212, 175, 135, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(193, 154, 107, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(193, 154, 107, 0.1);
    position: relative;
    overflow: hidden;
}

.feedback-intro-text::before {
    content: '✨';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    animation: sparkleRotate 4s linear infinite;
}

.feedback-intro-text::after {
    content: '✨';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5rem;
    animation: sparkleRotate 4s linear infinite reverse;
}

@keyframes sparkleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-group-sidebar {
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease-out backwards;
}

.form-group-sidebar:nth-child(1) { animation-delay: 0.1s; }
.form-group-sidebar:nth-child(2) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group-sidebar label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D4AF87;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-group-sidebar input,
.form-group-sidebar textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid rgba(193, 154, 107, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group-sidebar input:focus,
.form-group-sidebar textarea:focus {
    outline: none;
    border-color: #C19A6B;
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 0 20px rgba(193, 154, 107, 0.3), inset 0 0 10px rgba(193, 154, 107, 0.1);
    transform: translateY(-2px);
}

.form-group-sidebar textarea {
    resize: vertical;
    min-height: 120px;
}

.rating-group-sidebar {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(193, 154, 107, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(193, 154, 107, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out backwards;
}

.rating-group-sidebar:nth-child(3) { animation-delay: 0.3s; }
.rating-group-sidebar:nth-child(4) { animation-delay: 0.4s; }
.rating-group-sidebar:nth-child(5) { animation-delay: 0.5s; }
.rating-group-sidebar:nth-child(6) { animation-delay: 0.6s; }
.rating-group-sidebar:nth-child(7) { animation-delay: 0.7s; }

.rating-group-sidebar:hover {
    background: rgba(193, 154, 107, 0.06);
    border-color: rgba(193, 154, 107, 0.3);
    transform: translateX(5px);
}

.rating-group-sidebar label {
    display: block;
    color: #D4AF87;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.star-rating-sidebar {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.star-sidebar {
    font-size: 2.5rem;
    color: rgba(193, 154, 107, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    user-select: none;
    position: relative;
    filter: drop-shadow(0 0 0 rgba(193, 154, 107, 0));
}

.star-sidebar::before {
    content: attr(data-value);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(193, 154, 107, 0.9);
    color: #0a0a0a;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0;
    transition: all 0.3s;
}

.star-sidebar:hover::before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.star-sidebar:hover,
.star-sidebar.active {
    color: #C19A6B;
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 0 15px rgba(193, 154, 107, 0.8));
}

.star-sidebar.active {
    animation: starPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes starPop {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.5) rotate(15deg); }
    100% { transform: scale(1.3) rotate(10deg); }
}

.rating-group-sidebar.overall-sidebar {
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.15) 0%, rgba(193, 154, 107, 0.05) 100%);
    border: 2px solid rgba(193, 154, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.rating-group-sidebar.overall-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(193, 154, 107, 0.1) 50%, transparent 70%);
    animation: overallShine 3s linear infinite;
}

@keyframes overallShine {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rating-group-sidebar.overall-sidebar label {
    color: #C19A6B;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.rating-group-sidebar.overall-sidebar .star-rating-sidebar {
    position: relative;
    z-index: 2;
}

.btn-submit-sidebar {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, #C19A6B 0%, #D4AF87 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-top: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(193, 154, 107, 0.4);
}

.btn-submit-sidebar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit-sidebar:hover::before {
    width: 500px;
    height: 500px;
}

.btn-submit-sidebar:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(193, 154, 107, 0.7);
}

.btn-submit-sidebar:active {
    transform: translateY(-2px) scale(0.98);
}

.submit-icon {
    font-size: 1.5rem;
    animation: submitIconBounce 2s ease-in-out infinite;
}

@keyframes submitIconBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(15deg); }
}

.feedback-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.feedback-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #C19A6B;
    box-shadow: 0 20px 60px rgba(193, 154, 107, 0.5);
    z-index: 10001;
    text-align: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-message.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.success-icon {
    font-size: 5rem;
    animation: successIconPop 0.6s ease-out;
}

@keyframes successIconPop {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.success-message h3 {
    color: #C19A6B;
    font-size: 2rem;
    margin: 1rem 0;
}

.success-message p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* ===== PROJECT MODAL ===== */
.project-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.project-modal-overlay.active {
    display: flex;
}

.project-modal {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid rgba(193, 154, 107, 0.3);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(50px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.project-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
    border: 2px solid rgba(255, 68, 68, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.project-modal-close:hover {
    background: rgba(255, 68, 68, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.project-modal-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.project-modal-content {
    padding: 3rem;
}

.project-modal-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(193, 154, 107, 0.2);
    color: #C19A6B;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-modal-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #C19A6B 0%, #D4AF87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.project-modal-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.project-modal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.project-modal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.project-modal-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.project-modal-link.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 43, 136, 0.5);
}

.project-modal::-webkit-scrollbar { width: 8px; }
.project-modal::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.3); }
.project-modal::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #C19A6B, #D4AF87); border-radius: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .feedback-sidebar {
        width: 100%;
        right: -100%;
    }

    .feedback-float-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .index-about-grid {
        grid-template-columns: 1fr;
    }

    .index-featured-grid {
        grid-template-columns: 1fr;
    }

    .index-card-image {
        height: 350px;
    }

    .index-card-content {
        min-height: 240px;
    }

    .project-modal {
        margin: 1rem;
        max-height: 95vh;
    }

    .project-modal-content {
        padding: 2rem 1.5rem;
    }

    .project-modal-title {
        font-size: 2rem;
    }

    .index-announcements-ticker-label {
        padding: 0.7rem 1rem;
        font-size: 0.65rem;
    }

    .index-announcements-grid {
        grid-template-columns: 1fr;
    }

    .announcement-modal-title {
        font-size: 1.5rem;
    }

    .announcement-modal-body {
        padding: 1.5rem;
    }
}
/* Cole este CSS no arquivo public/css/index.css,
   na seção do Announcement Modal */

.announcement-modal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(193, 154, 107, 0.2);
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.announcement-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 5px 20px rgba(193, 43, 136, 0.3);
}

.announcement-link.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 43, 136, 0.6);
}

.announcement-link.custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.announcement-link.custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

@media (max-width: 768px) {
    .announcement-modal-links {
        flex-direction: column;
    }
    
    .announcement-link {
        min-width: 100%;
    }
}