/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float-message {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.whatsapp-float-button {
    width: 65px;
    height: 65px;
    background: linear-gradient(45deg, #25D366, #22c55e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.whatsapp-float-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #25D366, transparent);
    border-radius: 50%;
    opacity: 0.7;
    animation: pulse 2s infinite;
    z-index: -1;
}

.whatsapp-float-button:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-message {
    background: linear-gradient(45deg, #075e54, #128c7e);
    color: white;
    padding: 12px 25px;
    border-radius: 20px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    max-width: 280px;
}

.whatsapp-float-message strong {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.whatsapp-float-message span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.whatsapp-float-message::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid #128c7e;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float-message {
        display: none;
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Hover Effects */
.whatsapp-float:hover .whatsapp-float-button {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-message {
        display: none;
    }
    
    .whatsapp-float-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float-button img {
        filter: brightness(0) invert(1);
        width: 24px;
        height: 24px;
    }
}

:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --text-color: #2b2d42;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 4px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, #e63946 0%, #d32f2f 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 100px; /* Espaço para o menu fixo */
}

/* Header & Navigation */
.hero {
    background: #194ea9;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: var(--white);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(25, 78, 169, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu {
    flex: 1;
    margin: 0 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--white);
    left: 0;
    transition: 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-button.active .hamburger {
    background: transparent;
}

.mobile-menu-button.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-button.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.mobile-whatsapp {
    display: none;
}

@media (max-width: 1024px) {
    .nav {
        flex-wrap: wrap;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        margin: 20px 0 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links li {
        margin: 5px 10px;
    }

    .nav {
        padding: 15px 0;
    }

    .mobile-menu-button {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        font-size: 1.1rem;
        text-align: center;
    }

    .desktop-whatsapp {
        display: none;
    }

    .mobile-whatsapp {
        display: flex;
        margin-top: auto;
        justify-content: center;
    }

    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }

    .menu-overlay.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav {
        justify-content: space-between;
    }

    .whatsapp-button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .nav-menu {
        width: 100%;
        max-width: none;
    }

    .logo {
        width: 160px;
        height: auto;
    }
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* WhatsApp CTA Button */
.whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-cta img {
    filter: brightness(0) invert(1);
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.whatsapp-cta:hover {
    background: #22c15e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.whatsapp-cta:hover img {
    transform: rotate(-10deg);
}

.desktop-only {
    display: flex;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none;
    }
}

/* Hero Content */
.hero-content {
    width: 100%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.top-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badges span {
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 40px;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 3;
}

.cta-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    min-width: 200px;
    border: 2px solid transparent;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
    background: #ff4d4d;
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(230, 57, 70, 0.2);
}

.promo-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(29, 53, 87, 0.1));
    border-radius: 50%;
    line-height: 1;
}

.benefit-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits {
        padding: 40px 0;
    }

    .benefits-grid {
        gap: 20px;
        margin-top: 20px;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-icon {
        font-size: 3rem;
        padding: 12px;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.contact-info h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
    outline: none;
}

.form-group input::placeholder {
    color: #adb5bd;
}

.form-security {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
    color: #6c757d;
    font-size: 0.85rem;
}

.submit-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-button .inline-icon {
    filter: brightness(0) invert(1);
}

.submit-button:hover {
    background: #d32f2f;
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-disclaimer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-subtitle {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-top: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-content {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-content p {
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4CAF50;
    font-size: 0.8rem;
    margin-top: 5px;
}

.testimonials-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.rating-stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-total {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

.rating-platforms {
    display: flex;
    align-items: center;
    gap: 20px;
}

.platform-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.platform-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-footer {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .rating-summary {
        flex-direction: column;
        gap: 10px;
    }
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.brands-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.brand-logo {
    filter: grayscale(1);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Map Section */
.map-section {
    padding: 80px 0 0 0;
    background: var(--light-gray);
    position: relative;
}

.map-section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-size: 2rem;
    padding: 0 20px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    position: relative;
    margin-top: -60px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.address-card {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.address-card:hover {
    transform: translateY(-5px);
}

.address-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.address-card p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.6;
}

.location-icon,
.clock-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.directions-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.2);
}

.directions-button:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

@media (max-width: 768px) {
    .map-section {
        padding: 40px 0 0 0;
    }

    .map-container {
        height: 300px;
    }

    .location-info {
        margin-top: -40px;
        padding: 0 20px 60px;
    }

    .address-card {
        padding: 20px;
    }
}

/* Footer */
.site-footer {
    background: #194ea9;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3,
.footer-services h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-schedule {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.footer-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-phones {
    margin-top: 20px;
}

.footer-phones h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 10px;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-phones {
        margin: 20px auto;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.7rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .pulse-animation,
    .animate-on-scroll {
        animation: none;
        transition: none;
    }
}

/* Print Styles */
@media print {
    .hero {
        background: none;
        color: black;
    }
    
    .whatsapp-button,
    .floating-whatsapp,
    .cta-primary {
        display: none;
    }
    
    .contact-form,
    .whatsapp-button {
        display: none;
    }
}

.whatsapp-float-button img {
    filter: brightness(0) invert(1);
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.whatsapp-float-button:hover img {
    transform: scale(1.1);
}

.whatsapp-cta img {
    filter: brightness(0) invert(1);
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.whatsapp-cta:hover img {
    transform: rotate(-10deg);
}