/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

/* Hero Section - Primeira dobra da tela */
.hero-section {
    height: 100vh;
    /* background-image: url('../images/1background-pc.jpg'); */
    background-image: url('../images/background-pc.webp');
    /* background-image: url('../images/background-pc.png'); */
    /* background-image: url('../images/1background-pc.png'); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    box-sizing: border-box;
    z-index: 1;
    padding-top: 80px;
}

/* Overlay para melhor legibilidade */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(31, 173, 24, 0.15) 100%); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 80px;
    margin-left: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.cta-container {
    margin-top: 1.5rem;
}

.cta-button {
    background: #1fad18;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 5px; */
    min-width: 260px;
}

.cta-button:hover {
    background: #168a12;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-main-text {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.cta-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-align: center;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: #f0f8f0;
}

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

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1fad18;
}

.content-section p {
    font-size: 1.2rem;
    text-align: center;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsividade para tablets */
@media screen and (max-width: 768px) {
    .header-content {
        padding: 15px 40px;
    }
    
    .logo {
        height: 35px;
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 250px;
    }
    
    .cta-main-text {
        font-size: 1rem;
    }
    
    .cta-subtitle {
        font-size: 0.75rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .scroll-indicator {
        bottom: 8px;
    }
    
    .scroll-arrow {
        width: 16px;
        height: 16px;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    /* Responsividade para Services Section em tablets */
    .services-section {
        padding: 70px 0;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
}

/* Responsividade para mobile */
@media screen and (max-width: 480px) {
    .header-content {
        padding: 12px 20px;
    }
    
    .logo {
        height: 30px;
    }
    
    .hero-section {
        height: 80vh;
        background-image: url('../images/background-pc.webp');
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 220px;
    }
    
    .cta-main-text {
        font-size: 0.9rem;
    }
    
    .cta-subtitle {
        font-size: 0.7rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .content-section p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .scroll-indicator {
        bottom: 5px;
    }
    
    .scroll-arrow {
        width: 14px;
        height: 14px;
        border-width: 1px;
    }
    
    /* Responsividade para Services Section */
    .services-section {
        padding: 60px 0;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .services-header p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background-image: url('../images/background-body.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    z-index: 10;
    color: #ffffff;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.advantages-section .container {
    position: relative;
    z-index: 2;
}

.advantages-header {
    text-align: center;
    margin-bottom: 60px;
}

.advantages-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.advantages-header p {
    font-size: 1.2rem;
    /* color: #1fad18; */
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    text-align: center;
    padding: 20px;
}

.advantage-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-image: url('../images/background-body.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    z-index: 10;
    margin-top: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: #a0b0c0;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.25);
}

.service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #a0b0c0;
    line-height: 1.6;
}

@media screen and (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Seção de Clientes */
.clients-section {
    padding: 80px 0 50px;
    background: #152636;
    position: relative;
    z-index: 10;
}

.clients-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.clients-decoration {
    height: 128px;
    width: auto;
    opacity: 0.9;
}

.clients-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.clients-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clients-header p {
    font-size: 1.3rem;
    color: #1fad18;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-subtitle {
    font-size: 1rem;
    color: #a0b0c0;
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

.clients-stats {
    margin-top: 20px;
}

.clients-stats-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.clients-stat {
    text-align: center;
}

.clients-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1fad18;
    line-height: 1;
    letter-spacing: 1px;
    padding: 30px;
}

.clients-stats .stat-label {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-stats-note {
    margin-top: 8px;
    font-size: 0.95rem;
    color: #a0b0c0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.client-logo img {
    max-width: 200px;
    max-height: 60px;
    width: auto;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
}

/* Responsividade para tablets */
@media screen and (max-width: 768px) {
    .clients-section {
        padding: 60px 0 40px;
    }
    
    .clients-header h2 {
        font-size: 2rem;
    }
    
    .clients-decoration {
        height: 22px;
    }
    
    .clients-header p {
        font-size: 1.1rem;
    }
    
    .clients-subtitle {
        font-size: 0.9rem;
    }
    
    .clients-stats .stat-number {
        font-size: 2.6rem;
    }
    .clients-stats .stat-label {
        font-size: 0.95rem;
    }
    .clients-stats-grid {
        gap: 14px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .client-logo {
        padding: 15px;
        min-height: 80px;
    }
    
    .client-logo img {
        max-width: 90px;
        max-height: 45px;
    }
}

/* Responsividade para mobile */
@media screen and (max-width: 480px) {
    .clients-section {
        padding: 50px 0 30px;
    }
    
    .clients-header h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .clients-decoration {
        height: 90px;
        opacity: 0.8;
    }
    
    .clients-header p {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .clients-subtitle {
        font-size: 0.85rem;
    }
    
    .clients-stats .stat-number {
        font-size: 2rem;
    }
    .clients-stats .stat-label {
        font-size: 0.85rem;
    }
    .clients-stats-note {
        font-size: 0.85rem;
        margin-top: 8px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 400px;
    }
    
    .client-logo {
        padding: 12px;
        min-height: 70px;
    }
    
    .client-logo img {
        max-width: 120px;
        max-height: 60px;
    }
}

/* Responsividade para vantagens */
@media screen and (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-header h2 {
        font-size: 2rem;
    }
    
    .advantages-header p {
        font-size: 1.1rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantage-item {
        padding: 15px;
    }
    
    .advantage-item h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .advantages-section {
        padding: 50px 0;
    }
    
    .advantages-header h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .advantages-header p {
        font-size: 1rem;
        color: #1fad18;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-item {
        padding: 10px;
    }
    
    .advantage-icon {
        margin-bottom: 15px;
    }
    
    .advantage-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .advantage-item p {
        font-size: 0.9rem;
    }
}

.client-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    opacity: 0.9;
}

/* Indicador de Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 6px; */
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    animation: scrollArrow 2s infinite;
    opacity: 0.7;
}

.scroll-arrow:nth-child(1) {
    animation-delay: 0s;
}

.scroll-arrow:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes scrollArrow {
    0% {
        opacity: 0.7;
        transform: rotate(45deg) translateY(0);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) translateY(5px);
    }
    100% {
        opacity: 0.7;
        transform: rotate(45deg) translateY(0);
    }
}

.scroll-indicator:hover .scroll-arrow {
    opacity: 1;
}

.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
}

.header-content {
    padding: 20px 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    height: 40px;
    width: auto;
    max-width: 200px;
}

/* Popup do Formulário */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.popup-content h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #1fad18;
    box-shadow: 0 0 0 3px rgba(31, 173, 24, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #1fad18;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #168a12;
    transform: translateY(-1px);
}

/* Mensagem de Sucesso */
.success-message {
    text-align: center;
    padding: 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #1fad18;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.success-message h2 {
    color: #1fad18;
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.success-message .close-btn {
    position: relative;
    top: auto;
    right: auto;
    background: #1fad18;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    width: auto;
    height: auto;
    display: inline-flex;
}

.success-message .close-btn:hover {
    background: #168a12;
}

/* Responsividade do Popup */
@media screen and (max-width: 768px) {
    .popup-content {
        padding: 30px 25px;
        width: 95%;
        max-width: 400px;
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .popup-content {
        padding: 25px 20px;
        width: 92%;
        border-radius: 12px;
    }
    
    .popup-content h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .close-btn {
        top: 10px;
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group input {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 10px;
        font-size: 0.95rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .success-message h2 {
        font-size: 1.3rem;
    }
    
    .success-message p {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: #152636;
    padding: 60px 0 30px;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.footer-content {
    text-align: center;
}

.footer-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-cta {
    margin: 20px auto;
    display: inline-block;
    min-width: 280px;
    text-transform: uppercase
}

.footer-ou {
    font-size: 1.1rem;
    margin: 30px 0 20px;
    font-weight: 600;
    opacity: 0.8;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1fad18;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 280px;
    margin: 10px auto;
    cursor: pointer;
    letter-spacing: 1px;
}

.whatsapp-button:hover {
    background: #168a12;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lgpd-text {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0;
}

/* Responsividade para Footer */
@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section h2 {
        font-size: 2rem;
    }
    
    .footer-section p {
        font-size: 1.1rem;
    }
    
    .footer-cta,
    .whatsapp-button {
        min-width: 250px;
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .lgpd-text {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-section h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .footer-section p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .footer-cta,
    .whatsapp-button {
        min-width: 220px;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .footer-ou {
        font-size: 1rem;
        margin: 20px 0 15px;
    }
    
    .lgpd-text {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    
    .copyright {
        font-size: 0.8rem;
}
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1fad18;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 300;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    background: #168a12;
    transform: translateY(-2px);
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}