/* CSS Principal - PRAMAC BRASIL */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F8F9FA;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #E74C3C;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #2C3E50;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #2C3E50;
}

.btn-outline {
    background: transparent;
    color: #2C3E50;
    border: 2px solid #FFD700;
}

.btn-outline:hover {
    background: #FFD700;
    color: #2C3E50;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
}

.btn-whatsapp-large {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 16px 32px;
    font-size: 18px;
}

.btn-promo {
    background: linear-gradient(45deg, #E74C3C, #C53030);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F8F9FA;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #E0E0E0;
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2C3E50;
    color: white;
    padding: 15px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.btn-cookie {
    background: #FFD700;
    color: #2C3E50;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #E0E0E0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #2C3E50;
}

.highlight {
    color: #FFD700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #2C3E50;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Menu Toggle Mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2C3E50;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: bounce 2s infinite;
}

.whatsapp-svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(255, 215, 0, 0.2));
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0 50px;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    fill: #FFD700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

.scroll-link span {
    font-size: 14px;
    margin-bottom: 10px;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Banner Promocional */
.promo-banner {
    background: linear-gradient(45deg, #E74C3C, #C53030);
    padding: 20px 0;
    color: white;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.promo-text h2 {
    margin-bottom: 5px;
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Sobre Nós */
.sobre-section {
    background: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.sobre-intro h3 {
    color: #2C3E50;
    margin-bottom: 20px;
}

.empresa-info {
    margin: 40px 0;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: #FFD700;
    flex-shrink: 0;
}

.info-content h4 {
    color: #2C3E50;
    margin-bottom: 10px;
}

.sobre-stats {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

.sobre-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
}

.overlay-content h4 {
    margin-bottom: 5px;
}

.sobre-cta {
    text-align: center;
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.sobre-cta h3 {
    margin-bottom: 15px;
}

.sobre-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Serviços */
.servicos-section {
    background: #F8F9FA;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.servico-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #FFD700;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.servico-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servico-icon svg {
    fill: #2C3E50;
}

.servico-content h3 {
    color: #2C3E50;
    margin-bottom: 15px;
}

.servico-lista {
    list-style: none;
    margin-top: 20px;
}

.servico-lista li {
    padding: 8px 0;
    border-bottom: 1px solid #E0E0E0;
    position: relative;
    padding-left: 20px;
}

.servico-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.beneficios-section {
    margin: 60px 0;
    text-align: center;
}

.beneficios-section h3 {
    color: #2C3E50;
    margin-bottom: 40px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.beneficio-item {
    text-align: center;
}

.beneficio-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficio-icon svg {
    fill: #2C3E50;
}

.beneficio-item h4 {
    color: #2C3E50;
    margin-bottom: 10px;
}

.servicos-cta {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.cta-content h3 {
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Depoimentos */
.depoimentos-section {
    background: white;
}

.depoimentos-carousel {
    position: relative;
    margin-bottom: 60px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.depoimento-slide {
    min-width: 100%;
    padding: 0 20px;
}

.depoimento-card {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #FFD700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.depoimento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.cliente-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cliente-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFD700;
}

.cliente-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cliente-details h4 {
    color: #2C3E50;
    margin-bottom: 5px;
}

.cliente-details p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.estrelas {
    display: flex;
    gap: 2px;
}

.estrela {
    fill: #E0E0E0;
    transition: fill 0.3s ease;
}

.estrela.ativa {
    fill: #FFD700;
}

.depoimento-content {
    position: relative;
}

.quote-icon {
    fill: #FFD700;
    margin-bottom: 10px;
}

.depoimento-content p {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.9);
    color: #2C3E50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #FFD700;
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #E0E0E0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FFD700;
    transform: scale(1.2);
}

.satisfacao-stats {
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    fill: #2C3E50;
}

.stat-content h3 {
    color: #2C3E50;
    margin-bottom: 5px;
}

.stat-content p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.avaliacao-cta {
    text-align: center;
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.avaliacao-cta h3 {
    margin-bottom: 15px;
}

.avaliacao-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Contato */
.contato-section {
    background: #F8F9FA;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.info-cards {
    display: grid;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    fill: #2C3E50;
}

.card-content h3 {
    color: #2C3E50;
    margin-bottom: 10px;
}

.card-content p {
    margin: 5px 0;
    color: #666;
}

.card-content a {
    color: #FFD700;
    font-weight: 500;
}

.contato-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    color: #2C3E50;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #E74C3C;
}

.field-error {
    color: #E74C3C;
    font-size: 14px;
    margin-top: 5px;
}

.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 20px 0;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
}

.form-checkbox label {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.mapa-section {
    margin: 60px 0;
}

.mapa-section h3 {
    text-align: center;
    color: #2C3E50;
    margin-bottom: 30px;
}

.mapa-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.whatsapp-cta {
    margin-top: 60px;
}

.whatsapp-banner {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-icon-large svg {
    fill: currentColor;
}

.whatsapp-text h3 {
    margin-bottom: 10px;
}

.whatsapp-text p {
    margin: 0;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-stats {
    display: flex;
    gap: 30px;
}

.footer-stats .stat {
    text-align: center;
}

.footer-stats strong {
    display: block;
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-stats span {
    font-size: 12px;
    opacity: 0.8;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #FFD700;
}

.footer-contact {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item svg {
    fill: #FFD700;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: white;
    opacity: 0.9;
}

.footer-social h4 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #2C3E50;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.footer-legal a {
    color: white;
    opacity: 0.8;
}

.footer-legal span {
    opacity: 0.5;
}

/* Páginas Legais */
.legal-page {
    padding: 120px 0 80px;
    background: white;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #E0E0E0;
}

.legal-header h1 {
    color: #2C3E50;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.legal-subtitle {
    color: #666;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #F8F9FA;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.legal-section h2 {
    color: #2C3E50;
    margin-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 10px;
}

.legal-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.legal-section ul {
    margin: 15px 0 15px 20px;
}

.legal-section li {
    margin-bottom: 8px;
}

.contact-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.legal-footer {
    background: #2C3E50;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.legal-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #E0E0E0;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Estados de Loading */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #FFD700;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

/* Utilitários */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

.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;
} 