/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header .container {
    padding: 0 5px 0 5px;
}

/* Header */
.header {
    background-color: #000;
    width: 100%;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: -10px;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header-right {
    display: flex;
    align-items: center;
}

.btn-green {
    background-color: #74cc00;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-green:hover {
    background-color: #5fa300;
    transform: translateY(-2px);
}

.btn-green:active {
    transform: translateY(0);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

.nav-link:hover {
    color: #999;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: #74cc00;
    border-radius: 50%;
}

/* Main Content */
.main {
    background-color: #fff;
}

.section {
    padding: 80px 0;
}

#o-que-faz {
    background-color: #000;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-block {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-block h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

#resultados {
    background-color: #5eff6c;
}

.results-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 50px;
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    border-radius: 10px;
    min-width: 250px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stars {
    font-size: 24px;
    color: #ffc107;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin: 0;
}

.section-alt {
    background-color: #f9f9f9;
}

/* Demonstração Visual - Carrossel */
.demo-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.carousel-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    display: none;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.demo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.demo-icon {
    font-size: 80px;
    margin-bottom: 30px;
    display: block;
}

.demo-item h3 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.carousel-btn {
    background-color: #74cc00;
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
}

.carousel-btn:hover {
    background-color: #5fa300;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot:hover {
    background-color: #999;
    transform: scale(1.2);
}

.dot.active {
    background-color: #74cc00;
    transform: scale(1.3);
}

/* Seção CTA Final */
.cta-section {
    background-color: #000;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.3;
}

.cta-button {
    background-color: #74cc00;
    color: #000;
    border: none;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(116, 204, 0, 0.3);
}

.cta-button:hover {
    background-color: #5fa300;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(116, 204, 0, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(116, 204, 0, 0.3);
}

/* Seção de Frases em Movimento */
.moving-text-section {
    background-color: #fff;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.moving-text-container {
    width: 100%;
}

.moving-line {
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
}

.moving-content {
    display: inline-flex;
    gap: 60px;
    animation: moveRight 40s linear infinite;
    will-change: transform;
}

.moving-content.reverse {
    animation: moveLeft 45s linear infinite;
}

.moving-content span {
    font-size: 12px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    padding: 10px 20px;
    background-color: #f5f5f5;
    border-radius: 25px;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes moveRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes moveLeft {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

.line-1 .moving-content {
    animation: moveRight 40s linear infinite;
}

.line-2 .moving-content {
    animation: moveLeft 45s linear infinite;
}

.line-3 .moving-content {
    animation: moveRight 42s linear infinite;
}

.section-title-alt {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    font-style: italic;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #74cc00;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Seção de Marcas */
.brands-section {
    background-color: #5eff6c;
    padding: 30px 0;
    width: 100%;
}

.brands-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-name {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.section-reverse {
    flex-direction: row-reverse;
}

.section-image {
    flex: 1;
    min-width: 0;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-text {
    flex: 1;
    min-width: 0;
}

.section-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.section-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #666;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section ul li {
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .header-left {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .logo {
        margin-left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .header-right {
        width: 100%;
        justify-content: center;
    }

    .btn-green {
        width: 100%;
        max-width: 200px;
    }

    .section-content {
        flex-direction: column !important;
        gap: 30px;
    }

    .section-reverse {
        flex-direction: column !important;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .feature-block {
        padding: 25px 15px;
    }

    .feature-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .feature-block h3 {
        font-size: 16px;
    }

    .brands-section {
        padding: 20px 0;
    }

    .brands-content {
        gap: 30px;
    }

    .brand-name {
        font-size: 12px;
    }

    .section-text h2 {
        font-size: 24px;
    }

    .results-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .stats-container {
        gap: 30px;
        margin-bottom: 40px;
    }

    .stat-item {
        min-width: 200px;
        padding: 25px 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-text {
        font-size: 14px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .demo-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .carousel-wrapper {
        min-height: 350px;
    }

    .carousel-slide {
        padding: 50px 30px;
    }

    .demo-icon {
        font-size: 60px;
        margin-bottom: 25px;
    }

    .demo-item h3 {
        font-size: 24px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 18px;
    }

    .section-title-alt {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .steps-container {
        gap: 25px;
    }

    .step-item {
        padding: 20px;
        gap: 20px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
    }

    .nav-link {
        font-size: 14px;
    }

    .section-text h2 {
        font-size: 20px;
    }

    .section-text p {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .section-title-alt {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .step-item {
        padding: 18px;
        gap: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .demo-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .carousel-wrapper {
        min-height: 300px;
    }

    .carousel-slide {
        padding: 40px 20px;
    }

    .demo-icon {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .demo-item h3 {
        font-size: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 16px;
    }

    .moving-text-section {
        padding: 20px 0;
    }

    .moving-content span {
        font-size: 16px;
        padding: 8px 16px;
    }

    .moving-content {
        gap: 40px;
    }

    .results-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .stat-item {
        min-width: auto;
        padding: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-text {
        font-size: 13px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-block {
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .feature-block h3 {
        font-size: 15px;
    }

    .brands-content {
        gap: 20px;
    }

    .brand-name {
        font-size: 10px;
    }
}

/* Botão Flutuante Chat */
.chat-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #74cc00;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(116, 204, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.chat-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(116, 204, 0, 0.6);
    background-color: #5fa300;
}

.chat-float:active {
    transform: scale(0.95);
}

.chat-float svg {
    width: 24px;
    height: 24px;
}

/* Modal de Chat */
.chat-modal {
    display: none;
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 380px;
    height: 600px;
    max-height: 90vh;
    z-index: 2000;
}

.chat-modal.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.chat-container {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 15px 15px 0 0;
    box-shadow: -4px -4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background-color: #74cc00;
    color: #000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chat-header-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.chat-header-info p {
    margin: 0;
    font-size: 12px;
    color: #000;
    opacity: 0.8;
}

.chat-close {
    background: none;
    border: none;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    line-height: 1;
}

.chat-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background-color: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%23f0f0f0'/%3E%3Cpath d='M0 0l100 100M100 0L0 100' stroke='%23ddd' stroke-width='0.5'/%3E%3C/svg%3E");
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    display: flex;
    margin-bottom: 5px;
}

.message.sent {
    justify-content: flex-end;
}

.message.received {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 70%;
    padding: 10px 12px;
    border-radius: 8px;
    position: relative;
    word-wrap: break-word;
}

.message.sent .message-bubble {
    background-color: #dcf8c6;
    border-bottom-right-radius: 2px;
}

.message.received .message-bubble {
    background-color: #fff;
    border-bottom-left-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-bubble p {
    margin: 0;
    font-size: 14px;
    color: #000;
    line-height: 1.4;
}

.message-bubble img {
    max-width: 100%;
    border-radius: 5px;
    margin-top: 5px;
}

.message-time {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
    display: inline-block;
    margin-right: 5px;
}

.message-status {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.message-status svg {
    width: 16px;
    height: 16px;
    fill: #999;
}

.chat-input-area {
    background-color: #f0f0f0;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #ddd;
}

.chat-input-actions {
    display: flex;
    gap: 5px;
}

.chat-action-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.chat-action-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.chat-input {
    flex: 1;
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    background-color: #fff;
}

.chat-send-btn {
    background-color: #74cc00;
    border: none;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.chat-send-btn:hover {
    background-color: #5fa300;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    background-color: #20BA5A;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .chat-float {
        width: 55px;
        height: 55px;
        bottom: 90px;
        right: 20px;
    }

    .chat-modal {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .chat-container {
        border-radius: 0;
    }

    .chat-header {
        border-radius: 0;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .chat-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 15px;
    }

    .chat-float svg {
        width: 20px;
        height: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

