/* Guia Entrada Franca - Eventos Culturais Gratuitos */
/* Tema: Vibrante Cultural - Cores laranja (#FF6B35) e vermelho (#E63946) */
/* Design: Chamativo, acessível e democrático */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8E8 30%, #FFF0F0 70%, #FFF8F0 100%);
    background-attachment: fixed;
    color: #2D3436;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(230, 57, 70, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #E63946 100%);
    background-size: 200% 200%;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2),
                0 4px 12px rgba(230, 57, 70, 0.15);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: headerGradient 6s ease infinite;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo h1 {
    font-size: 1.8rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.tagline {
    font-size: 0.7rem;
    color: #FFD700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus {
    background: #FFD700;
    color: #FF6B35;
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #FFD700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a:focus::before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: 2px solid #FFD700;
    padding: 0.5rem;
    border-radius: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
    padding-top: 100px; /* Account for fixed header */
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    color: #E63946;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1),
                 0 0 30px rgba(230, 57, 70, 0.2);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    animation: titleBounce 3s ease-in-out infinite alternate;
}

@keyframes titleBounce {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.hero-title .highlight {
    color: #FF6B35;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.9),
                 0 0 50px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #FF6B35, #FF8C5A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    display: inline-block;
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.9; filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #2D3436;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFD700;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #E63946;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 3px solid;
    font-size: 1rem;
    min-width: 200px;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #FF6B35 0%, #E63946 50%, #FF6B35 100%);
    background-size: 200% 200%;
    border-color: #FF6B35;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3),
                0 4px 12px rgba(230, 57, 70, 0.2);
    position: relative;
    overflow: hidden;
    animation: gradientMove 3s ease infinite;
}

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

.cta-button.primary::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;
}

.cta-button.primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary:hover,
.cta-button.primary:focus {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.4),
                0 8px 24px rgba(230, 57, 70, 0.3);
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.cta-button.secondary {
    border-color: #E63946;
    color: #E63946;
    background: rgba(255, 215, 0, 0.9);
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
    background: #E63946;
    color: #FFFFFF;
    transform: translateY(-2px);
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.6;
    animation: floatElement 6s ease-in-out infinite;
}

.element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1.5s;
}

.element:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: 3s;
}

.element:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 4.5s;
}

.element:nth-child(5) {
    top: 30%;
    left: 85%;
    animation-delay: 2s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.8;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Quick Search */
.quick-search {
    padding: 3rem 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8E8 100%);
}

.quick-search h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FF6B35;
    margin-bottom: 2rem;
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFD700;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #E63946;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 0.8rem;
    border: 2px solid #FF6B35;
    border-radius: 8px;
    background: #FFFFFF;
    color: #2D3436;
    font-family: inherit;
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.search-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #FF6B35, #E63946);
    color: #FFFFFF;
    border: 2px solid #FF6B35;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.search-btn:hover,
.search-btn:focus {
    background: #FFD700;
    border-color: #FFD700;
    color: #FF6B35;
    transform: translateY(-2px);
    outline: 2px solid #E63946;
    outline-offset: 2px;
}

/* Featured Events */
.featured-events {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFE8E8 0%, #FFF0F0 100%);
}

.featured-events h2 {
    text-align: center;
    font-size: 3rem;
    color: #E63946;
    margin-bottom: 3rem;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08),
                0 4px 12px rgba(255, 107, 53, 0.05);
    border: 3px solid rgba(255, 107, 53, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(230, 57, 70, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 60px rgba(255, 107, 53, 0.15),
                0 8px 24px rgba(230, 57, 70, 0.1);
    border-color: #E63946;
}

.event-card:hover::before {
    opacity: 1;
}

.event-card.featured {
    grid-template-columns: 400px 1fr;
    display: grid;
    border-color: #E63946;
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-card.featured .event-image {
    height: 100%;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FFD700, #FF6B35);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.event-content {
    padding: 2rem;
}

.event-category {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-content h3 {
    color: #E63946;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2D3436;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-description {
    color: #2D3436;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF6B35;
    font-size: 0.9rem;
}

.event-link {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B35, #E63946);
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.event-link:hover,
.event-link:focus {
    background: #FFD700;
    color: #FF6B35;
    transform: translateY(-2px);
    outline: 2px solid #E63946;
    outline-offset: 2px;
}

/* Cities Section */
.cities-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFF0F0 0%, #FFF8F0 100%);
}

.cities-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #2D3436;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.city-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #FF6B35;
}

.city-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.city-card:hover .city-image img {
    transform: scale(1.05);
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(255, 107, 53, 0.9));
    color: #FFFFFF;
    padding: 2rem 1.5rem 1rem;
}

.city-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.city-events {
    background: #FFD700;
    color: #FF6B35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
}

.city-info {
    padding: 1.5rem;
}

.city-info p {
    color: #2D3436;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.city-link {
    color: #E63946;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.city-link:hover,
.city-link:focus {
    color: #FF6B35;
    text-decoration: underline;
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFE8E8 0%, #FFF0F0 100%);
}

.categories-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #E63946;
    margin-bottom: 3rem;
}

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

.category-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(230, 57, 70, 0.2);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #E63946;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF6B35, #E63946);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFFFFF;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.category-card h3 {
    color: #E63946;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-card p {
    color: #2D3436;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.category-count {
    display: block;
    color: #FF6B35;
    font-weight: 600;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8E8 100%);
}

.about-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #FF6B35;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    color: #E63946;
    margin: 2.5rem 0 1rem 0;
    font-size: 1.8rem;
}

.about-text h4 {
    color: #2D3436;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #2D3436;
}

.about-text ul {
    margin: 1rem 0 2rem 0;
    padding-left: 2rem;
}

.about-text li {
    margin-bottom: 0.8rem;
    color: #2D3436;
}

.about-text li strong {
    color: #FF6B35;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #2D3436;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, #FF6B35, #E63946);
    color: #FFFFFF;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
}

.form-row input,
.form-row select {
    flex: 1;
    padding: 1rem;
    border: 2px solid #FFD700;
    border-radius: 8px;
    background: #FFFFFF;
    color: #2D3436;
    font-family: inherit;
    font-size: 1rem;
}

.form-row input:first-child {
    border-radius: 8px 0 0 8px;
}

.form-row select {
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: #FFD700;
    color: #FF6B35;
    border: 2px solid #FFD700;
    border-radius: 0 8px 8px 0;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-btn:hover,
.newsletter-btn:focus {
    background: #FFFFFF;
    color: #FF6B35;
    transform: translateY(-2px);
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.newsletter-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFF0F0 0%, #FFF8F0 100%);
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #E63946;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #FF6B35;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #2D3436;
}

.contact-details p {
    margin-bottom: 1rem;
    color: #2D3436;
}

.contact-details strong {
    color: #E63946;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    color: #2D3436;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.contact-feature i {
    color: #FFD700;
    font-size: 1.2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #E63946;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    background: #FFFFFF;
    color: #2D3436;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, #FF6B35, #E63946);
    color: #FFFFFF;
    border: 2px solid #FF6B35;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.submit-button:hover,
.submit-button:focus {
    background: #FFD700;
    border-color: #FFD700;
    color: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    outline: 2px solid #E63946;
    outline-offset: 2px;
}

/* Authority Links */
.authority-links {
    padding: 3rem 0;
    background: rgba(255, 107, 53, 0.1);
    text-align: center;
}

.authority-links h3 {
    color: #FF6B35;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.authority-link {
    color: #E63946;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border: 2px solid #FFD700;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: #FFFFFF;
}

.authority-link:hover,
.authority-link:focus {
    background: #FFD700;
    border-color: #FF6B35;
    color: #FF6B35;
    transform: translateY(-2px);
    outline: 2px solid #E63946;
    outline-offset: 2px;
}

/* Footer */
.main-footer {
    background: linear-gradient(45deg, #FF6B35, #E63946);
    border-top: 3px solid #FFD700;
    color: #FFFFFF;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
    color: #FFD700;
}

.footer-logo h3 {
    color: #FFD700;
    margin: 0;
    font-size: 1.3rem;
}

.footer-logo p {
    color: #FFFFFF;
    font-style: italic;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #FFD700;
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

.footer-authority a {
    display: block;
    color: #FFD700;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-authority a:hover,
.footer-authority a:focus {
    color: #FFFFFF;
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Load More */
.load-more {
    text-align: center;
}

.load-more-btn {
    background: linear-gradient(45deg, #FF6B35, #E63946);
    color: #FFFFFF;
    border: 2px solid #FF6B35;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more-btn:hover,
.load-more-btn:focus {
    background: #FFD700;
    border-color: #FFD700;
    color: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    outline: 2px solid #E63946;
    outline-offset: 2px;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #FFF8F0;
    border: 2px solid #FF6B35;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #FF6B35, #E63946);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #E63946, #FF6B35);
}
