
/* Modern CSS for Rede RWP - Inline to avoid path issues */
:root {
    --primary-color: #ff4500;
    --primary-dark: #e03e00;
    --secondary-color: #ffd700;
    --accent-color: #ff6b35;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ffa500);

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);

    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

    html {
    scroll-behavior: smooth;
    }

    body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    overflow-x: hidden;
    }

    .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

    .section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    }

    .section-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--dark-color);
    }

    .section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    }

    /* Navigation */
    .navbar {
    background: transparent;
    padding: 1rem 0;
    transition: var(--transition);
    z-index: 1000;
    }

    .navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    }

    .navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    text-decoration: none;
    transition: var(--transition);
    }

    .navbar-brand:hover {
    color: var(--secondary-color) !important;
    transform: scale(1.05);
    }

    .logo-img {
    height: 50px;
    margin-right: 12px;
    transition: var(--transition);
    }

    .navbar.scrolled .logo-img {
    height: 40px;
    }

    .brand-text {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    }

    .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    }

    .nav-link:hover {
    color: var(--secondary-color) !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    }

    .btn-login {
    background: var(--gradient-primary);
    color: white !important;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 16px;
    transition: var(--transition);
    text-decoration: none;
    }

    .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white !important;
    }

    .navbar-toggler {
    border: none;
    padding: 4px 8px;
    }

    .navbar-toggler:focus {
    box-shadow: none;
    }

    .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    /* Hero Section */
    .hero-section {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(255, 69, 0, 0.3)), url("../midias/img/banner.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    }

    .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    }

    .hero-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    }

    .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    }

    .hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    }

    .hero-scroll-indicator a {
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    }

    .hero-scroll-indicator a:hover {
    opacity: 1;
    color: var(--secondary-color);
    }

    @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
    }

    /* Buttons */
    .btn {
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    }

    .btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
    }

    .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
    }

    .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    }

    .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    }

    .btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
    }

    /* About Section */
    .about-section {
    padding: 120px 0;
    background: var(--gray-100);
    }

    .section-header {
    margin-bottom: 4rem;
    }

    .about-content {
    padding-right: 2rem;
    }

    .about-content .lead {
    font-size: 1.3rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    }

    .feature-list {
    margin: 3rem 0;
    }

    .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    }

    .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    }

    .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    }

    .feature-icon i {
    color: white;
    font-size: 1.5rem;
    }

    .feature-text h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    }

    .feature-text p {
    color: var(--gray-600);
    margin: 0;
    }

    .about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    }

    .about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
    }

    .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    }

    .about-image:hover .image-overlay {
    opacity: 1;
    }

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

    .play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    }

    .play-button:hover {
    transform: scale(1.1);
    }

    .play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
    }

    /* Partners Section */
    .partners-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-color), #ffffff), url("../midias/img/parceiros.png") center / cover no-repeat;
    background-blend-mode: overlay;
    position: relative;
    }

    .partner-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    }

    .partner-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    }

    .partner-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    }

    .partner-image {
    margin-bottom: 2rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .partner-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1.2);
    transition: var(--transition);
    }

    .partner-card:hover .partner-image img {
    transform: scale(1.1);
    }

    .partner-content h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    }

    .partner-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    }

    .partner-arrow {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    }

    .partner-card:hover .partner-arrow {
    transform: translateX(10px);
    }

    /* Location Section */
    .location-section {
    padding: 120px 0;
    background: var(--dark-color);
    }

    .map-container {
    margin-top: 3rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    }

    #mapid {
    height: 500px;
    width: 100%;
    }

    /* Contact Section */
    .contact-section {
    padding: 120px 0;
    background: var(--gray-100);
    }

    .contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    }

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

    .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    }

    .form-label i {
    color: var(--primary-color);
    }

    .form-control,
    .form-select {
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    }

    .form-control:focus,
    .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.1);
    outline: none;
    }

    .form-control::placeholder {
    color: var(--gray-500);
    }

    /* Footer */
    .footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
    }

    .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    }

    .footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    }

    .footer-brand h5 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    }

    .footer-brand p {
    color: var(--gray-400);
    max-width: 300px;
    }

    .footer-title {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    }

    .footer-links {
    list-style: none;
    padding: 0;
    }

    .footer-links li {
    margin-bottom: 0.5rem;
    }

    .footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    }

    .footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
    }

    .social-links {
    display: flex;
    gap: 1rem;
    }

    .social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    }

    .social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
    }

    .footer-divider {
    border-color: var(--gray-700);
    margin: 2rem 0 1rem;
    }

    .footer-bottom {
    color: var(--gray-500);
    font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
    .hero-title {
        font-size: 4rem;
    }
    }

    @media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .about-content {
        padding-right: 0;
        margin-top: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    }

    @media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(20px);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: var(--border-radius);
    }
    .nav-link {
        margin: 0.5rem 0;
        text-align: center;
    }
    .btn-login {
        margin: 1rem 0 0 0;
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .about-section,
    .partners-section,
    .location-section,
    .contact-section {
        padding: 80px 0;
    }
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .about-image img {
        height: 300px;
    }
    .partner-card {
        margin-bottom: 2rem;
    }
    #mapid {
        height: 400px;
    }
    }

    @media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    .btn-lg {
        padding: 12px 32px;
        font-size: 1rem;
    }
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    .footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-brand,
    .footer-links,
    .social-links {
        text-align: center;
        margin-bottom: 2rem;
    }
    .social-links {
        justify-content: center;
    }
}