/* ==========================================================================
   IMPORTAÇÃO DE FONTES
   ========================================================================== */
@import url('https://fonts.cdnfonts.com/css/chubby-cheeks');

/* ==========================================================================
   VARIÁVEIS GLOBAIS DE CORES
   ========================================================================== */
:root {
    /* Cores principais do tema */
    --primary-color: #89CFF0;    /* Azul bebê - Cor principal */
    --secondary-color: #B0E0E6;   /* Azul pó - Cor secundária */
    --background-color: #F8F7F3;  /* Bege claro - Fundo geral */
    --text-color: #4682B4;       /* Azul aço claro - Texto principal */
    --white: #FFFFFF;
    --gray-light: #F0EDE6;       /* Bege mais claro - Elementos sutis */
    --gray-dark: #7B9EB3;        /* Azul acinzentado - Elementos de destaque */
    --accent-color: #ADD8E6;     /* Azul claro - Acentuação */
    --heading-color: #5F9EA0;    /* Azul cadet - Títulos */
    
    /* Cores específicas para botões 3D */
    --button-top: #89CFF0;       /* Gradiente superior */
    --button-bottom: #4682B4;    /* Gradiente inferior */
    --button-shadow: #2F4F4F;    /* Sombra dos botões */
    --button-shine: rgba(255,255,255,0.3); /* Brilho dos botões */

    /* Cores para ícones dos cards de serviços */
    --icon-alimentacao: #FF6B6B;     /* Vermelho suave - Alimentação */
    --icon-desenvolvimento: #4ECDC4;  /* Turquesa - Desenvolvimento */
    --icon-atividades: #FFD93D;       /* Amarelo - Atividades */
    --icon-musica: #FF8E3C;          /* Laranja - Música */
    --icon-rotina: #6C5CE7;          /* Roxo - Rotina */
    --icon-consulta: #A8E6CF;        /* Verde menta - Consulta */

    /* Cores para ícones de redes sociais */
    --facebook-color: #1877F2;
    --instagram-color: #E4405F;
    --youtube-color: #FF0000;
    --tiktok-color: #000000;
}

/* ==========================================================================
   RESET E CONFIGURAÇÕES BÁSICAS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Chubby Cheeks', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* ==========================================================================
   NAVEGAÇÃO - HEADER E NAVBAR
   ========================================================================== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 2rem;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* Estilização do logo */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.logo h1 {
    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo h1 {
    font-size: 1.3rem;
}

/* Links de navegação */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Menu mobile */
.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Estilos para dispositivos móveis */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        transition: right 0.5s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Animação do menu burger */
    .burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active div:nth-child(2) {
        opacity: 0;
    }

    .burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Animação dos links */
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-links li.fade {
        animation: navLinkFade 0.5s ease forwards;
    }
}

/* Ajustes gerais para mobile */
@media screen and (max-width: 768px) {
    /* Ajuste do padding principal para compensar o menu fixo */
    main {
        padding-top: 70px;
    }

    /* Ajuste do carrossel */
    .carousel-content h1 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    /* Ajuste dos cards de serviços */
    .cards-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    /* Ajuste da seção sobre */
    .sobre-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .sobre-destaques {
        grid-template-columns: 1fr;
    }

    /* Ajuste do footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* ==========================================================================
   SEÇÃO HERO COM CARROSSEL
   ========================================================================== */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(3px);
    transform: scale(1.1);
}

.carousel-item::before {
    display: none;  /* Remove o overlay azul */
}

.carousel-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #000000;
    padding: 0 2rem;
    max-width: 800px;
    font-family: 'Chubby Cheeks', sans-serif;
}

.carousel-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
    font-family: 'Chubby Cheeks', sans-serif;
}

.carousel-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #000000;
    font-family: 'Chubby Cheeks', sans-serif;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: var(--white);
}

@media screen and (max-width: 768px) {
    .carousel-content h1 {
        font-size: 2.5rem;
    }

    .carousel-content p {
        font-size: 1.2rem;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   SEÇÃO DE SERVIÇOS
   ========================================================================== */
.servicos {
    padding: 5rem 2rem;
}

.servicos h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--heading-color);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Cores específicas para cada ícone dos cards */
.card:nth-child(1) i {
    color: var(--icon-alimentacao);
    text-shadow: 2px 2px 4px rgba(255,107,107,0.3);
}

.card:nth-child(2) i {
    color: var(--icon-desenvolvimento);
    text-shadow: 2px 2px 4px rgba(78,205,196,0.3);
}

.card:nth-child(3) i {
    color: var(--icon-atividades);
    text-shadow: 2px 2px 4px rgba(255,217,61,0.3);
}

.card:nth-child(4) i {
    color: var(--icon-musica);
    text-shadow: 2px 2px 4px rgba(255,142,60,0.3);
}

.card:nth-child(5) i {
    color: var(--icon-rotina);
    text-shadow: 2px 2px 4px rgba(108,92,231,0.3);
}

.card:nth-child(6) i {
    color: var(--icon-consulta);
    text-shadow: 2px 2px 4px rgba(168,230,207,0.3);
}

.card:hover i {
    animation: pulsar 1s infinite;
    filter: brightness(1.2);
}

@keyframes pulsar {
    0% {
        transform: scale(1.2) rotate(10deg);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.4) rotate(-5deg);
        filter: brightness(1.3);
    }
    100% {
        transform: scale(1.2) rotate(10deg);
        filter: brightness(1);
    }
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--button-shine) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover::before {
    opacity: 0.7;
}

.card h3 {
    color: var(--heading-color);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.card:hover h3 {
    color: var(--button-top);
}

.card p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* ==========================================================================
   SEÇÃO SOBRE
   ========================================================================== */
.sobre {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.sobre-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-texto {
    padding-right: 2rem;
}

.sobre-texto h2 {
    color: var(--heading-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.sobre-texto p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.sobre-destaques {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.destaque {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--gray-light);
    transition: transform 0.3s ease;
}

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

.destaque i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.destaque h3 {
    color: var(--heading-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.destaque p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

.sobre-imagem {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.sobre-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.sobre-imagem:hover img {
    transform: scale(1.05);
}

.btn-saiba-mais {
    display: inline-block;
    background: linear-gradient(to bottom, var(--button-top) 0%, var(--button-bottom) 100%);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 -2px 0 var(--button-shine),
        0 4px 0 var(--button-shadow),
        0 8px 15px rgba(0,0,0,0.1);
}

.btn-saiba-mais:hover {
    transform: translateY(-2px);
    box-shadow: 
        inset 0 -2px 0 var(--button-shine),
        0 6px 0 var(--button-shadow),
        0 12px 20px rgba(0,0,0,0.15);
}

@media screen and (max-width: 768px) {
    .sobre-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sobre-texto {
        padding-right: 0;
    }

    .sobre-destaques {
        grid-template-columns: 1fr;
    }

    .sobre-imagem {
        height: 300px;
    }
}

/* ==========================================================================
   NOTIFICAÇÕES
   ========================================================================== */
.notificacao {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s;
    z-index: 1000;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.badge-carrinho {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: #000000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ==========================================================================
   SEÇÃO DE CONTATO
   ========================================================================== */
.contato {
    padding: 5rem 2rem;
}

.contato h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--heading-color);
}

.contato-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Formulário de contato */
#contato-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contato-form input,
#contato-form textarea {
    padding: 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#contato-form input:focus,
#contato-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

#contato-form button {
    background: linear-gradient(45deg, var(--button-top), var(--button-bottom));
    background-size: 200% 200%;
    color: #000000;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        inset 0 -1px 0 var(--button-shine),
        0 4px 0 var(--button-shadow),
        0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#contato-form button:hover {
    transform: translateY(-2px);
    box-shadow: 
        inset 0 -1px 0 var(--button-shine),
        0 5px 0 var(--button-shadow),
        0 6px 10px rgba(0,0,0,0.25);
}

#contato-form button:active {
    transform: translateY(1px);
    box-shadow: 
        inset 0 -1px 0 var(--button-shine),
        0 1px 0 var(--button-shadow),
        0 2px 4px rgba(0,0,0,0.2);
}

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

/* ==========================================================================
   FOOTER E REDES SOCIAIS
   ========================================================================== */
footer {
    background-color: var(--primary-color);
    color: #000000;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #000000;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
}

/* Ícones de redes sociais */
.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: #000000;
}

/* ==========================================================================
   ANIMAÇÕES E EFEITOS
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .produto {
    animation: fadeIn 0.5s ease forwards;
}

/* ==========================================================================
   UTILITÁRIOS E CLASSES AUXILIARES
   ========================================================================== */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    z-index: 1001;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ==========================================================================
   ESTILO DE BOTÕES 3D VIDEOGAME
   ========================================================================== */
.submit-button,
.resource-link,
.btn-comprar,
.btn-favorito,
.filtro-btn,
.social-button,
.carousel-button {
    position: relative;
    background: linear-gradient(to bottom, var(--button-top) 0%, var(--button-bottom) 100%);
    color: #000000;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    box-shadow: 
        inset 0 -1px 0 var(--button-shine),
        0 4px 0 var(--button-shadow),
        0 4px 8px rgba(0,0,0,0.2);
    text-decoration: none;
    text-align: center;
    transform: translateY(-2px);
}

.submit-button:hover,
.resource-link:hover,
.btn-comprar:hover,
.btn-favorito:hover,
.filtro-btn:hover,
.social-button:hover,
.carousel-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        inset 0 -1px 0 var(--button-shine),
        0 5px 0 var(--button-shadow),
        0 6px 10px rgba(0,0,0,0.25);
}

.submit-button:active,
.resource-link:active,
.btn-comprar:active,
.btn-favorito:active,
.filtro-btn:active,
.social-button:active,
.carousel-button:active {
    transform: translateY(1px);
    box-shadow: 
        inset 0 -1px 0 var(--button-shine),
        0 1px 0 var(--button-shadow),
        0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.05s ease;
}

/* ==========================================================================
   ESTILO PARA BOTÕES DESABILITADOS
   ========================================================================== */
.submit-button:disabled,
.resource-link:disabled,
.btn-comprar:disabled,
.btn-favorito:disabled,
.filtro-btn:disabled,
.social-button:disabled {
    background: var(--gray-light);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.7;
}

/* ==========================================================================
   ESTILO ESPECÍFICO PARA ÍCONES DE REDES SOCIAIS
   ========================================================================== */
.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 0.9em;
}

.social-icons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.social-icons .fa-facebook {
    color: var(--facebook-color);
}

.social-icons .fa-instagram {
    color: var(--instagram-color);
}

.social-icons .fa-youtube {
    color: var(--youtube-color);
}

.social-icons .fa-tiktok {
    color: var(--tiktok-color);
}

.social-icons a:hover .fa-facebook,
.social-icons a:hover .fa-instagram,
.social-icons a:hover .fa-youtube,
.social-icons a:hover .fa-tiktok {
    color: #000000;
}

.social-icons a:hover {
    background: var(--button-shine);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}

/* ==========================================================================
   BOTÕES E ELEMENTOS COM TEXTO BRANCO
   ========================================================================== */
.submit-button,
.resource-link,
.btn-comprar,
.btn-favorito,
.filtro-btn,
.social-button,
.carousel-button,
.categoria {
    color: #000000;
}

.carousel-button {
    color: #000000;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: #000000;
}

/* ==========================================================================
   BADGE DO CARRINHO
   ========================================================================== */
.badge-carrinho {
    background: var(--primary-color);
    color: #000000;
}

/* ==========================================================================
   GRADIENTE PARA OS BOTÕES
   ========================================================================== */
.submit-button,
.resource-link,
.btn-comprar,
.btn-favorito,
.filtro-btn,
.social-button,
.carousel-button {
    background: var(--button-shine);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
} 