/* Base */
:root {
    --primary-color: #3db9f3;
    --primary-dark: #0288d1;
    --accent-color: #40c4ff;
    --dark-color: #0d1b2a;
    --darker-color: #071018;
    --light-color: #e1f5fe;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Estiliza a barra de rolagem para combinar com o tema */
::-webkit-scrollbar {
    width: 12px;
    background-color: var(--darker-color);
}

::-webkit-scrollbar-track {
    background-color: var(--darker-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    border: 2px solid var(--darker-color);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
    box-shadow: 0 0 8px rgba(61, 185, 243, 0.5);
}

/* Para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--darker-color);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: var(--dark-color);
    color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
    outline: none;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 185, 243, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(61, 185, 243, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(61, 185, 243, 0);
    }
}

/* Seção Hero */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--darker-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    /* Remova qualquer filter ou blend-mode que possa estar causando o problema */
    filter: none;
    mix-blend-mode: normal;
}

.ice-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.duotone-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 16, 24, 0.85), rgba(13, 27, 42, 0.85));
    z-index: 2;
}

.duotone-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: none;
    filter: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker-color);
    opacity: 0.8;
    z-index: 5;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
    z-index: 6;
    pointer-events: none;
}

.logo-container {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 100;
}

.hero-background, 
.background-image, 
.duotone-overlay, 
.duotone-overlay::after, 
.hero::before, 
.hero::after {
    z-index: 1;
}

.hero-logo {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(61, 185, 243, 0.6));
    animation: float 6s ease-in-out infinite;
    opacity: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    z-index: 7;
}

.hero-content .container {
    max-width: 800px;
    margin: 0 0 3% 20%;
}

.subheading {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-shadow: var(--text-shadow);
    position: relative;
    padding-left: 20px;
}

.subheading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-color);
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: var(--text-shadow);
    max-width: 700px;
    letter-spacing: -0.5px;
}

@media (max-width: 1200px) {
    .hero-content .container {
        margin: 0 auto;
        text-align: center;
    }
    
    .logo-container {
        width: 100%;
        right: 0;
        justify-content: center;
        top: 15%; /* Posiciona a logo mais para o topo */
        transform: translateY(0); /* Remove o transform vertical */
        height: auto; /* Remove a altura fixa */
        z-index: 101; /* Aumenta o z-index para garantir que fique na frente */
    }
    
    .hero-logo {
        max-width: 70%;
    }
    
    .hero-content {
        bottom: auto; /* Remove posicionamento fixo na parte inferior */
        top: 55%; /* Posiciona o conteúdo abaixo da logo */
        left: 0;
        text-align: center;
    }
    
    .hero-content .container {
        margin: 0 auto;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        max-width: 100%;
    }
    
    .subheading {
        padding-left: 0; /* Remove o padding esquerdo */
    }
    
    .subheading::before {
        display: none; /* Remove o marcador à esquerda */
    }
}

@media (max-width: 768px) {


    .hero-logo {
        max-width: 80%;
    }
    
    .background-image {
        background-position: right center;
    }

    .logo-container {
        top: 10%; /* Move a logo ainda mais para cima em telas menores */
    }
    
    .hero-content {
        top: 50%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-logo {
        max-width: 80%;
    }

}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-content {
        bottom: 15%;
    }
    
    .hero-logo {
        max-width: 90%;
    }

    .logo-container {
        top: -0.1%;
    }
    
    .hero-content {
        top: 45%;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-logo {
        max-width: 85%;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

}

.particle {
    position: absolute;
    background-color: rgba(225, 245, 254, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(225, 245, 254, 0.8);
}

@keyframes fallDown {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(calc(100vh + 10px)) rotate(360deg);
        opacity: 0;
    }
}

.subheading {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    transition: filter 0.5s ease;
}

.hero-logo:hover {
    filter: drop-shadow(0 0 30px rgba(61, 185, 243, 0.8));
}

/* Seção Novidade */
.novidade {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.novidade::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-color), var(--dark-color));
    z-index: 0;
}

.novidade-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.novidade .subheading {
    margin-bottom: 25px;
}

.comunicado {
    margin-bottom: 40px;
}

.comunicado p {
    font-size: 1.1rem;
    color: var(--light-color);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.video-container {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(61, 185, 243, 0.3);
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 10px rgba(61, 185, 243, 0.2);
    pointer-events: none;
}

.novidade .btn-primary {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .novidade {
        padding: 70px 0;
    }
    
    .comunicado p {
        font-size: 1rem;
    }
    
    .video-container {
        margin-bottom: 30px;
    }
    
    .video-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .novidade {
        padding: 50px 0;
    }
    
    .video-container iframe {
        height: 250px;
    }
}

/* Seção Tutorial */
.tutorial {
    padding: 100px 0;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.tutorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(61, 185, 243, 0.05), transparent 70%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-description {
    color: var(--light-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.ip-highlight-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.ip-highlight {
    background: rgba(13, 27, 42, 0.6);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(61, 185, 243, 0.3);
    position: relative;
}

.ip-code-wrapper {
    background: rgba(13, 27, 42, 0.8);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(61, 185, 243, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.ip-address-code {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 30px;
    display: inline-block;
    text-align: center;
    flex-grow: 1;
}

.copy-btn {
    background: rgba(61, 185, 243, 0.15);
    border: 1px solid rgba(61, 185, 243, 0.3);
    color: var(--primary-color);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Consolas', 'Monaco', monospace;
}

.copy-btn:hover {
    background: rgba(61, 185, 243, 0.25);
}

.ip-code-wrapper::before {
    content: "> ";
    color: var(--primary-color);
    font-family: monospace;
    font-weight: bold;
    position: absolute;
    left: 15px;
    font-size: 1.5rem;
}

.ip-code-block h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.ip-code-block {
    background: rgba(7, 16, 24, 0.8);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(61, 185, 243, 0.3);
}

.ip-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    z-index: -1;
    border-radius: 17px;
    opacity: 0.5;
    filter: blur(10px);
}

.ip-highlight h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.ip-address-large {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 800;
    margin: 20px 0;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(61, 185, 243, 0.5);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(61, 185, 243, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(61, 185, 243, 0.8), 0 0 30px rgba(61, 185, 243, 0.4);
    }
}

.copy-btn {
    background: rgba(61, 185, 243, 0.2);
    border: 1px solid rgba(61, 185, 243, 0.4);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.copy-btn:hover {
    background: rgba(61, 185, 243, 0.3);
    transform: translateY(-2px);
}

.versions-box {
    display: flex;
    align-items: center;
    background: rgba(13, 27, 42, 0.4);
    border-radius: 10px;
    padding: 20px 30px;
    margin: 0 auto 50px;
    max-width: 600px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(61, 185, 243, 0.2);
    transition: transform 0.3s ease;
}

.versions-box:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(61, 185, 243, 0.1);
    border-radius: 50%;
}

.info-content h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-content p {
    color: var(--light-color);
    margin-bottom: 5px;
}

.versions {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step-box {
    display: flex;
    background: rgba(13, 27, 42, 0.4);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.versions-info {
    text-align: center;
    margin: -10px auto 50px;
    max-width: 600px;
    padding: 0 20px;
}

.info-content {
    display: inline-block;
    background: rgba(13, 27, 42, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(61, 185, 243, 0.15);
}

.versions-label {
    color: var(--light-color);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-right: 8px;
}

.versions-text {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 576px) {
    .versions-info {
        margin: -5px auto 40px;
    }
    
    .info-content {
        padding: 8px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .versions-label {
        margin-right: 0;
        margin-bottom: 2px;
    }
}

.step-box:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 185, 243, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(61, 185, 243, 0.2);
}

.step-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-content p {
    color: var(--light-color);
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .ip-code-block {
        padding: 20px;
    }
    
    .ip-code-wrapper {
        padding: 15px;
        flex-direction: column;
    }
    
    .ip-code-wrapper::before {
        font-size: 1.3rem;
    }
    
    .ip-address-code {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-left: 25px;
    }
    
    .copy-btn {
        width: 100%;
        padding: 8px 12px;
    }

    .tutorial {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .ip-highlight {
        padding: 25px;
    }
    
    .ip-address-large {
        font-size: 2.2rem;
        margin: 15px 0;
    }
    
    .versions-box {
        padding: 15px 20px;
    }
    
    .info-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .step-box {
        padding: 20px;
    }
    
    .step-number {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .tutorial {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .ip-address-large {
        font-size: 1.8rem;
    }
    
    .step-box {
        padding: 15px;
    }
    .ip-address-code {
        font-size: 1.3rem;
    }
}

/* Seção Depoimentos */
.depoimentos {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 16, 24, 0.8), var(--dark-color));
    z-index: 0;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.depoimento-card {
    background: rgba(13, 27, 42, 0.5);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(61, 185, 243, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(61, 185, 243, 0.1);
    line-height: 1;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(61, 185, 243, 0.25);
}

.depoimento-topo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.depoimento-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid rgba(61, 185, 243, 0.3);
    position: relative;
}

.depoimento-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button-container-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 100%;
    text-align: center;
}

.button-container-centered .btn {
    margin: 0 auto;
    display: inline-block;
}

.depoimento-info {
    flex: 1;
}

.depoimento-nome {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.depoimento-estrelas {
    color: #FFD700;
    font-size: 0.9rem;
}

.depoimento-texto {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.depoimento-texto p {
    color: var(--light-color);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.depoimento-card:nth-child(1) {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

.depoimento-card:nth-child(2) {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.depoimento-card:nth-child(3) {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

.depoimento-card:nth-child(4) {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

@media (max-width: 992px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .depoimentos {
        padding: 70px 0;
    }
    
    .depoimentos-grid {
        gap: 20px;
    }
    
    .depoimento-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimento-avatar {
        width: 50px;
        height: 50px;
    }
    
    .depoimento-nome {
        font-size: 1rem;
    }
}

/* Seção Footer */
.footer {
    background-color: var(--darker-color);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61, 185, 243, 0.5), transparent);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

.footer-info {
    flex: 1;
    min-width: 300px;
}

.footer-description {
    color: var(--light-color);
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    background: rgba(61, 185, 243, 0.1);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 185, 243, 0.2);
    text-decoration: none;
}

.social-link i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.social-link span {
    font-weight: 600;
}

.social-link:hover {
    background: rgba(61, 185, 243, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: var(--light-color);
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-copyright .fa-heart {
    color: #ff6b6b;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        margin-bottom: 20px;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-social {
        flex-direction: column;
        gap: 15px;
    }
}