* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    background: #121212;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu ul li a:hover {
    color: #ffffff;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    transition: width 0.3s;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - COM IMAGEM DE FUNDO SUTIL */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Camada da imagem de fundo (bem sutil) */
/* Camada da imagem de fundo (bem sutil) */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://raw.githubusercontent.com/Lporsebom/PersonalTr/main/Landing%20Page/img/hero-bg.jpg') center/cover no-repeat;
    filter: blur(12px) brightness(0.35);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

/* Seu gradiente vermelho existente (mantido) */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 60%);
    animation: gradientFlow 15s ease infinite;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 3; /* Acima de tudo */
}

.hero-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #ef4444 !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    background: none;
    -webkit-text-fill-color: #ef4444;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* CORREÇÃO PARA OS TEXTOS VERMELHOS EM GERAL */
.text-red {
    color: #ef4444 !important;
    background: none !important;
    -webkit-text-fill-color: #ef4444 !important;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.section-subtitle {
    color: #ef4444 !important;
    background: none !important;
    -webkit-text-fill-color: #ef4444 !important;
    font-weight: 600;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.btn-primary {
    background: #ef4444;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #ef4444;
}

.btn-secondary:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-3px);
    border-color: #ef4444;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.section-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.about-description {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.feature i {
    font-size: 30px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}

.feature p {
    color: #d0d0d0;
}

.about-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 16px;
    color: #d0d0d0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #121212;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #d0d0d0;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: rgba(36, 36, 36, 0.95);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-icon i {
    font-size: 40px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.service-card p {
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    margin-bottom: 10px;
    color: #d0d0d0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
}

/* Testimonials Section - CARROSSEL */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    min-height: 350px;
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-icon i {
    font-size: 50px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.user-info h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}

.user-time {
    font-size: 14px;
    color: #a0a0a0;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffffff;
    font-size: 20px;
    margin-right: 5px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.testimonial-text {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 0;
    font-style: italic;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #3a3a3a;
    transform: scale(1.1);
    border-color: rgba(255,255,255,0.3);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Comment Form */
.comment-section {
    max-width: 800px;
    margin: 60px auto 0;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
}

.comment-section h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.comment-section input,
.comment-section textarea,
.comment-section select {
    width: 100%;
    padding: 15px;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
}

.comment-section input:focus,
.comment-section textarea:focus,
.comment-section select:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(18, 18, 18, 0.95);
}

.comment-section input::placeholder,
.comment-section textarea::placeholder {
    color: #a0a0a0;
}

.rating-select {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.rating-select span {
    color: #fff;
    font-weight: 500;
}

.stars-input i {
    font-size: 24px;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
    margin-right: 5px;
}

.stars-input i.active,
.stars-input i.hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #121212;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 42px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-item h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
    color: white;
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-form {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-form h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(18, 18, 18, 0.95);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

.form-group select option {
    background: #121212;
    color: #fff;
}

.btn-block {
    width: 100%;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 60px 0 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-brand h2 {
    font-size: 32px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand span {
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #d0d0d0;
    line-height: 1.8;
}

.footer-links h4,
.footer-hours h4,
.footer-social h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links ul,
.footer-hours ul {
    list-style: none;
}

.footer-links ul li,
.footer-hours ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

.footer-hours ul li {
    color: #d0d0d0;
}

.footer-social .social-links {
    display: flex;
    gap: 15px;
}

.footer-social .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    text-decoration: none;
}

.footer-social .social-links a:hover {
    background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d0d0d0;
}

/* ATMOSFERA ATUALIZADA - Tons de Cinza */
.atmosfera {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    animation: respirar 30s infinite ease-in-out;
    mix-blend-mode: screen;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 40% 40%, #4a4a4a, #1a1a1a);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.glow-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle at 60% 60%, #3a3a3a, #0a0a0a);
    bottom: -200px;
    left: -150px;
    animation-delay: -8s;
    animation-duration: 35s;
    opacity: 0.08;
}

.glow-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle at 50% 50%, #5a5a5a, #2a2a2a);
    top: 30%;
    left: 20%;
    animation-delay: -4s;
    animation-duration: 40s;
    opacity: 0.06;
    filter: blur(120px);
}

@keyframes respirar {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.08;
    }
    33% {
        transform: scale(1.03) translate(15px, -15px);
        opacity: 0.12;
    }
    66% {
        transform: scale(0.98) translate(-10px, 10px);
        opacity: 0.06;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        max-width: 100%;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #121212;
        flex-direction: column;
        transition: 0.3s;
        padding: 50px 0;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: #ffffff;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: #ffffff;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .testimonials-carousel {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        margin: 0;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
}
/* ============================================ */
/* REDES SOCIAIS - SEÇÃO DESTACADA              */
/* ============================================ */
.social-highlight {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(220,38,38,0.2);
    border-bottom: 1px solid rgba(220,38,38,0.2);
}

.social-highlight::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 30% 70%, rgba(220,38,38,0.1) 0%, transparent 50%);
    animation: gradientFlow 15s ease infinite;
}

.social-highlight-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.social-highlight-content h2 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.social-highlight-content p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 50px;
}

.social-highlight-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.social-highlight-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 30px 20px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(220,38,38,0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-highlight-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(220,38,38,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.social-highlight-item:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #dc2626;
    box-shadow: 0 20px 30px rgba(220,38,38,0.3);
}

.social-highlight-item:hover::before {
    opacity: 1;
    animation: gradientFlow 3s ease infinite;
}

.social-highlight-item i {
    font-size: 50px;
    background: linear-gradient(135deg, #dc2626, #7f1d1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s;
}

.social-highlight-item:hover i {
    transform: scale(1.2) rotate(5deg);
    animation: glowRed 1s infinite;
}

.social-highlight-item span {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.social-highlight-item small {
    font-size: 14px;
    color: #a0a0a0;
    transition: all 0.3s;
}

.social-highlight-item:hover small {
    color: #dc2626;
}

/* Cores específicas para cada rede no hover */
.social-highlight-item.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcaf45);
}

.social-highlight-item.tiktok:hover {
    background: linear-gradient(135deg, #010101, #69c9d0, #ee1d52);
}

.social-highlight-item.youtube:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-highlight-item.whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128C7E);
}

.social-highlight-item:hover i,
.social-highlight-item:hover span,
.social-highlight-item:hover small {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

/* ============================================ */
/* SEÇÃO DE COMENTÁRIOS - NOVO LAYOUT           */
/* ============================================ */
.comment-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.comment-section-modern::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(220,38,38,0.05) 0%, transparent 50%);
    animation: gradientFlow 20s ease infinite;
}

.comment-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(220,38,38,0.2);
    box-shadow: 0 30px 50px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.comment-header {
    text-align: center;
    margin-bottom: 40px;
}

.comment-header .section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #dc2626, #7f1d1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.comment-header h2 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.comment-header p {
    font-size: 16px;
    color: #b0b0b0;
}

.comment-form-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modern label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-modern label i {
    color: #dc2626;
    font-size: 14px;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(220,38,38,0.2);
    border-radius: 15px;
    font-size: 15px;
    color: #fff;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 0 0 4px rgba(220,38,38,0.1);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: #555;
    font-weight: 300;
}

.rating-group-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(10, 10, 10, 0.6);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(220,38,38,0.15);
}

.rating-group-modern label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-group-modern label i {
    color: #dc2626;
}

.stars-input-modern {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 10px 0;
}

.stars-input-modern i {
    font-size: 35px;
    color: #444;
    cursor: pointer;
    transition: all 0.2s;
}

.stars-input-modern i.active,
.stars-input-modern i.hover {
    color: #dc2626;
    text-shadow: 0 0 20px #dc2626;
    transform: scale(1.2);
}

.btn-submit-modern {
    background: linear-gradient(135deg, #dc2626, #7f1d1d);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    animation: pulseRed 3s infinite;
}

.btn-submit-modern i {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-submit-modern:hover {
    background: linear-gradient(135deg, #ef4444, #991b1b);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(220,38,38,0.4);
    animation: none;
}

.btn-submit-modern:hover i {
    transform: translateX(5px) rotate(10deg);
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .social-highlight-content h2 {
        font-size: 32px;
    }
    
    .social-highlight-links {
        gap: 15px;
    }
    
    .social-highlight-item {
        min-width: 150px;
        padding: 20px 15px;
    }
    
    .social-highlight-item i {
        font-size: 40px;
    }
    
    .social-highlight-item span {
        font-size: 16px;
    }
    
    .social-highlight-item small {
        font-size: 12px;
    }
    
    .comment-wrapper {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .comment-header h2 {
        font-size: 28px;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
    }
    
    .stars-input-modern {
        gap: 8px;
    }
    
    .stars-input-modern i {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .social-highlight-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-highlight-item {
        max-width: 100%;
        width: 100%;
    }
    
    .comment-header h2 {
        font-size: 24px;
    }
    
    .stars-input-modern i {
        font-size: 28px;
    }
}
/* ============================================ */
/* CORES DE TEXTO VERMELHO - NOVAS             */
/* ============================================ */
.text-red {
    color: #dc2626;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    animation: glowRed 3s infinite;
}

.section-header h2 .text-red {
    font-size: inherit;
    display: inline-block;
}

.section-header p .text-red {
    font-weight: 600;
    animation: glowRed 2s infinite;
}

/* Aumentar presença do vermelho em textos */
.hero-content h1 {
    background: linear-gradient(135deg, #ffffff, #dc2626, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s ease infinite;
    background-size: 300% 300%;
}

.hero-subtitle {
    color: #dc2626 !important;
    background: none !important;
    -webkit-text-fill-color: #dc2626 !important;
    text-shadow: 0 0 20px rgba(220,38,38,0.5);
}

.about-text h2 span,
.service-card h3,
.contact-info h2 span {
    color: #dc2626;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: #dc2626 !important;
    background: none !important;
    -webkit-text-fill-color: #dc2626 !important;
    font-weight: 700;
    letter-spacing: 3px;
}

/* ============================================ */
/* REDES SOCIAIS - CARDS LIMPOS (SEM ESTATÍSTICAS) */
/* ============================================ */
.social-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.social-premium::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(239,68,68,0.08) 0%, transparent 50%);
    animation: gradientFlow 20s ease infinite;
}

.social-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

/* Card base */
.social-premium-card {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 20px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(239,68,68,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-premium-card:hover {
    transform: translateY(-8px);
    border-color: #ef4444;
    box-shadow: 0 15px 30px rgba(239,68,68,0.25);
}

/* Card WhatsApp em destaque (primeiro) */
.social-premium-card.whatsapp.featured {
    border: 2px solid #25d366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    position: relative;
}

.social-premium-card.whatsapp.featured .social-premium-icon {
    background: linear-gradient(135deg, #25d366, #128C7E);
}

.social-premium-card.whatsapp.featured .social-badge {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.1);
}

.social-premium-card.whatsapp.featured .featured-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #25d366;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 3;
}

.social-premium-card.whatsapp.featured:hover {
    background: linear-gradient(135deg, #25d366, #128C7E);
    border-color: #25d366;
}

/* Header do card */
.social-premium-header {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.social-premium-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-premium-card:hover .social-premium-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px #ef4444;
}

.social-premium-icon i {
    font-size: 28px;
    color: white;
}

.social-premium-info {
    flex: 1;
}

.social-premium-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.social-handle {
    font-size: 13px;
    color: #ef4444;
    font-weight: 500;
}

.social-badge {
    background: rgba(239,68,68,0.15);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.3);
    white-space: nowrap;
}

/* Preview de conteúdo */
.social-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    background: rgba(10,10,10,0.5);
    padding: 15px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.preview-item {
    flex: 1;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 5px;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    transition: all 0.3s;
}

.preview-item i {
    font-size: 18px;
    color: #ef4444;
}

.preview-item span {
    font-size: 11px;
    color: #e0e0e0;
    text-align: center;
    font-weight: 400;
}

/* Ação do card */
.social-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0 5px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.social-action span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.social-action i {
    font-size: 14px;
    color: #ef4444;
    transition: transform 0.3s;
}

.social-premium-card:hover .social-action i {
    transform: translateX(8px);
}

/* Cores específicas no hover (mantendo identidade das marcas) */
.social-premium-card.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcaf45);
}

.social-premium-card.tiktok:hover {
    background: linear-gradient(135deg, #010101, #69c9d0, #ee1d52);
}

.social-premium-card.youtube:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-premium-card.whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128C7E) !important;
}

/* Efeitos hover nos textos */
.social-premium-card:hover .social-premium-info h3,
.social-premium-card:hover .social-action span {
    color: white;
}

.social-premium-card:hover .social-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    border-color: white;
}

.social-premium-card:hover .preview-item i,
.social-premium-card:hover .social-action i {
    color: white;
}

.social-premium-card:hover .preview-item {
    background: rgba(255,255,255,0.15);
}

.social-premium-card:hover .social-handle {
    color: white;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 1100px) {
    .social-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .social-premium-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .social-premium-card {
        padding: 20px;
    }
    
    .social-premium-card.whatsapp.featured .featured-tag {
        top: 8px;
        right: 8px;
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .preview-item {
        min-width: 60px;
    }
    
    .social-premium-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-premium-icon i {
        font-size: 24px;
    }
    
    .social-premium-info h3 {
        font-size: 18px;
    }
    
    .social-handle {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .social-premium-card {
        padding: 18px 15px;
    }
    
    .social-premium-header {
        gap: 8px;
    }
    
    .social-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .preview-item {
        min-width: 50px;
        padding: 8px 3px;
    }
    
    .preview-item i {
        font-size: 16px;
    }
    
    .preview-item span {
        font-size: 10px;
    }
    
    .social-action span {
        font-size: 13px;
    }
}

/* Animações necessárias */
@keyframes gradientFlow {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(1.1);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}
/* CORREÇÕES GERAIS DE VERMELHO - REMOVER SUJEIRA */
.hero-subtitle,
.section-subtitle,
.text-red,
.testimonial-rating i,
.feature i,
.service-icon i,
.contact-item i,
.social-links a:hover {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: currentColor !important;
}

.hero-subtitle,
.section-subtitle {
    color: #ef4444 !important;
}

.testimonial-rating i {
    color: #ef4444 !important;
}

.service-icon i,
.feature i,
.contact-item i {
    color: #ef4444 !important;
}

/* Gradientes apenas em elementos específicos que precisam */
.btn-primary,
.social-premium-icon,
.whatsapp-float {
    background: #ef4444 !important;
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

/* Ajuste do glow para vermelho mais limpo */
.glow-1 {
    background: radial-gradient(circle at 40% 40%, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.05));
}

.glow-2 {
    background: radial-gradient(circle at 60% 60%, rgba(239, 68, 68, 0.1), rgba(185, 28, 28, 0.03));
}

.glow-3 {
    background: radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.08), rgba(127, 29, 29, 0.02));
}
@media (max-width: 768px) {
    .hero::after {
        filter: blur(8px) brightness(0.3);
        opacity: 0.15;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .hero::after {
        filter: blur(6px) brightness(0.25);
        opacity: 0.12;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
}