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

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #8B0000;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8B0000;
}

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

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    animation: fadeIn 0.8s ease-in-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-x: hidden; 
}

body.trajetoria-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('img/descarrego.jpeg') no-repeat fixed center center/cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.oracoes-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('img/bate_cabeça.jpeg') no-repeat fixed center center/cover;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

::selection {
    background: #8B0000;
    color: #121212;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant', serif;
    font-weight: 700;
    color: #8B0000; 
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-padding {
    padding: 6rem 0;
}

.dark-section {
    background-color: #1a1a1a;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(18, 18, 18, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    border-bottom: 1px solid #8B0000;
}

.logo {
    font-family: 'Cormorant', serif;
    font-size: 1.8rem;
    color: #8B0000;
    text-decoration: none;
}

.nav-menu li a.active { 
    font-weight: 700; 
    border-bottom: 1px solid currentColor; 
    padding-bottom: 2px; 
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8B0000;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.cta-button {
    background-color: #8B0000;
    color: #121212;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #8B0000;
    color: #fff;
    transform: translateY(-3px);
}

.nav-social {
    display: flex;
    align-items: center;
}

.nav-social a {
    color: #e0e0e0;
    font-size: 1.6rem;
    margin-left: 1.2rem;
    transition: color 0.3s ease;
}

.nav-social a:hover {
    color: #8B0000;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/familia_cezec.jpeg') no-repeat center center/cover;
}

.hero-content h1 {
    font-size: 4.5rem; 
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: slideUp 1s ease-out 0.3s backwards;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    animation: slideUp 1s ease-out 0.6s backwards;
    font-family: 'Cormorant', serif;
}

.hero-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 1.5rem auto 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.cta-button-main {
    background-color: #8B0000;
    color: #121212;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button-main:hover {
    background-color: #8B0000;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-button-main i {
    margin-right: 0.5rem;
}

main .section-padding {
    padding-top: 8rem; 
    padding-bottom: 6rem;
}


.trajetoria-bg main { flex-grow: 1; }

.trajetoria-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    text-align: left;
}

.trajetoria-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%; 
    border: 3px solid #8B0000;
    flex-shrink: 0;
}

.trajetoria-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

#servicos {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('img/conga.jpeg') no-repeat fixed center center/cover;
}

#trabalhos {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('img/oferenda.jpeg') no-repeat fixed center center/cover;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.servico-item {
    text-align: center;
    padding: 2rem;
    background-color: #1a1a1a;
    border: 1px solid #8B0000;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-item i {
    font-size: 3rem;
    color: #8B0000;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.servico-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    border-color: #8B0000;
}

.servico-item:hover i {
    transform: scale(1.1);
}

.servico-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}
.intro-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.intro-text p:first-child {
    font-size: 1.2rem;
}

.trabalhos-gallery {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.trabalho-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #8B0000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.trabalho-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #8B0000;
}

.trabalho-images {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.trabalho-images img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #8B0000;
    transition: transform 0.3s ease;
}

.trabalho-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    border-color: #8B0000;
}

.trabalho-images img:hover {
    transform: scale(1.05);
}

.trabalho-item p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
}

#contato {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('img/conga2.jpeg') no-repeat fixed center center/cover;
}

#contato p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.contato-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contato-card {
    background-color: rgba(31, 31, 31, 0.8);

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(180deg,#25D366,#128C7E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border: none;
    z-index: 1200;
    cursor: pointer;
    font-size: 1.4rem;
}

#chat-widget {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 340px;
    max-width: calc(100% - 40px);
    background: linear-gradient(180deg,#0f0f0f,#1a1a1a);
    border: 1px solid rgba(217,4,41,0.12);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1300;
    animation: fadeIn 260ms ease;
}

#chat-widget .chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: linear-gradient(90deg, rgba(217,4,41,0.12), transparent);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

#chat-widget .chat-header span { font-weight: 700; color: #f6f6f6; }
#chat-widget .chat-header button { background: transparent; border: none; color: #f6f6f6; font-size: 1.2rem; cursor: pointer; }

.chat-body {
    padding: 12px;
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-message { padding: 10px 12px; border-radius: 10px; max-width: 85%; word-wrap: break-word; }
.bot-message { background: linear-gradient(180deg,#171717,#222); color: #e8e8e8; align-self: flex-start; }
.user-message { background: rgba(217,4,41,0.12); color: #fff; align-self: flex-end; }

.chat-options, .chat-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.chat-option-btn, .chat-action-btn { background: rgba(255,255,255,0.04); color: #f6f6f6; border: 1px solid rgba(255,255,255,0.03); padding: 6px 10px; border-radius: 999px; cursor: pointer; font-size: 0.95rem; }
.chat-option-btn:hover, .chat-action-btn:hover { background: rgba(217,4,41,0.14); border-color: rgba(217,4,41,0.3); }

.chat-input-area { display: flex; gap: 8px; padding: 10px; border-top: 1px solid rgba(255,255,255,0.03); }
.chat-input-area input { flex: 1; padding: 10px 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.04); background: #0b0b0b; color: #fff; }
.chat-input-area button { background: #D90429; color: #fff; border: none; padding: 10px 12px; border-radius: 8px; cursor: pointer; }
.chat-input-area button:hover { background: #A4061F }

@media (max-width: 480px) {
    #chat-widget { right: 12px; left: 12px; bottom: 80px; width: auto; max-width: none; }
    .chat-body { max-height: 260px }
}

.chat-option-btn:focus, .chat-action-btn:focus, .chat-input-area button:focus, #whatsapp-float:focus { outline: 3px solid rgba(217,4,41,0.18); outline-offset: 2px; }
    backdrop-filter: blur(5px);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #D90429;
    width: 100%;
    max-width: 700px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

@media (max-width: 768px) {
    .contato-item {
        flex-direction: column;
        text-align: center;
    }
    .contato-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.contato-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.contato-icon {
    background-color: #8B0000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contato-icon i {
    color: #121212;
    font-size: 1.5rem;
}

.contato-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: #fff;
    font-family: 'Cormorant', serif;
}

.contato-details p {
    margin: 0;
    font-size: 1.1rem;
    color: #b0b0b0;
    text-align: left;
    max-width: 100%;
}

.social-icons {
    margin-bottom: 1rem;
}

.social-icons a {
    color: #e0e0e0;
    font-size: 1.8rem;
    margin: 0 0.75rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #8B0000; 
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #1a1a1a;
    border-top: 1px solid #8B0000;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 370px;
    max-width: 90vw;
    max-height: 85vh;
    background-color: #ffffff; 
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: none; 
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    animation: slideUp 0.3s ease-out;
}

.chat-header {
    background-color: #8B0000;
    color: #121212;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-family: 'Cormorant', serif;
    font-size: 1.2rem;
}

.chat-header button {
    background: none;
    border: none;
    color: #121212;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.chat-body {
    padding: 15px;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #ffffff;
}

.chat-message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bot-message {
    background-color: #f0f0f0;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.user-message {
    background-color: #8B0000;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
    align-self: flex-start;
    width: 100%;
}

.chat-option-btn {
    background-color: transparent;
    border: 1px solid #8B0000;
    color: #8B0000;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    text-align: left;
    width: 100%;
}

.chat-option-btn:hover {
    background-color: #8B0000;
    color: #fff;
    font-weight: bold;
}

.chat-input-area {
    padding: 10px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 8px;
    background-color: #fff;
}

.chat-input-area input {
    flex: 1;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
    outline: none;
}

.chat-input-area button {
    background-color: #8B0000;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-dots { display: inline-block; padding: 0 5px; }
.typing-dots span {
    display: inline-block; width: 6px; height: 6px; margin: 0 2px;
    background-color: #888; border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}
.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

@media (max-width: 768px) {
    h2 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .navbar {
        padding: 0.4rem 0.8rem;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.5rem;
        order: 1;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    
    body.trajetoria-bg, body.oracoes-bg, #servicos, #trabalhos, #contato, .hero {
        background-attachment: scroll; 
        background-size: cover;
        background-position: center center;
    }

    .trajetoria-content,
    .servicos-grid, 
    .trabalhos-gallery, 
    .contato-wrapper {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .trajetoria-img {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }

    #chat-widget {
        width: 100%;
        height: 100%;
        max-width: 100vw;
        max-height: 100vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    footer {
        padding: 1.5rem 1rem; 
    }
}

.oracoes-list { transition: all 0.5s ease; }

.oracao-item { 
    background: #1a1a1a; 
    border: 1px solid #8B0000; 
    border-radius: 8px; 
    margin-bottom: 15px; 
    padding: 25px; 
    cursor: pointer; 
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.oracao-item:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25); 
    border-color: #8B0000;
}

.oracao-item h3 { 
    color: #e0e0e0; 
    margin: 0; 
    font-size: 1.5rem; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.oracao-item h3::after {
    content: '\f061'; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: #888;
    transition: color 0.3s;
}

.oracao-item:hover h3::after { color: #8B0000; }

.oracao-content { 
    font-family: 'Roboto', sans-serif; 
    line-height: 1.8; 
    color: #c0c0c0; 
    white-space: pre-line; 
    background-color: #1a1a1a; 
    padding: 20px; 
    border-radius: 8px; 
    margin-top: 20px; 
    display: none; 
    opacity: 0;
}

.oracoes-list.reading-mode .oracao-item:not(.active) { display: none; }

.oracoes-list.reading-mode .oracao-item.active { 
    cursor: default; 
    transform: none; 
    box-shadow: none; 
    border: none; 
    background: transparent; 
    padding: 0; 
}

.oracoes-list.reading-mode .oracao-item.active h3 { 
    font-size: 2.2rem; 
    margin-bottom: 20px; 
    border-bottom: 2px solid #8B0000; 
    padding-bottom: 10px; 
    color: #8B0000; 
}

.oracoes-list.reading-mode .oracao-item.active h3::after { display: none; }
.oracoes-list.reading-mode .oracao-item.active .oracao-content { 
    display: block; 
    animation: slideUpFade 0.8s ease forwards; 
}

#btn-voltar { 
    display: none; 
    background-color: transparent; 
    color: #e0e0e0; 
    border: 1px solid #888; 
    padding: 8px 20px; 
    border-radius: 20px; 
    cursor: pointer; 
    font-family: 'Roboto', sans-serif; 
    font-size: 0.9rem; 
    margin-bottom: 20px; 
    transition: all 0.3s ease; 
    align-items: center; 
    gap: 8px; 
}

#btn-voltar:hover { 
    background-color: #8B0000; 
    color: #121212;
    border-color: #8B0000; 
}

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

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; left: -100%; top: 45px; gap: 0;
        flex-direction: column;
        background-color: rgba(18, 18, 18, 0.9);
        width: 100%; text-align: center; transition: 0.3s; 
        backdrop-filter: blur(5px);
        z-index: 1000; padding: 20px 0;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 16px 0; }
    .hamburger { display: block; cursor: pointer; margin-left: 15px; padding-right: 0; order: 3; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .nav-social { display: flex; order: 2; margin-left: auto; align-items: center; }
    .nav-social a { font-size: 1.2rem; margin-left: 10px; }
}

.card-gira {
    background: linear-gradient(145deg, #1a1a1a, #222);
    border: 1px solid #8B0000;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-gira h3 { color: #8B0000; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.data-destaque { font-size: 3.5rem; font-weight: 700; color: #f5f5f5; line-height: 1; margin: 0.5rem 0; }
.tipo-gira { font-size: 1.2rem; color: #8B0000; font-weight: 300; margin-bottom: 1rem; font-style: italic; }
.card-gira small { display: block; color: #888; font-size: 0.9rem; margin-top: 1rem; border-top: 1px solid #333; padding-top: 1rem; }

.btn-whatsapp-card {
    display: inline-block; background: #25D366; color: #fff; padding: 10px 20px; 
    border-radius: 50px; text-decoration: none; font-weight: bold; margin-top: 15px;
    transition: transform 0.2s; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-card:hover { transform: scale(1.05); background: #1ebc57; }