/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: transparent;
}

.header.scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-red {
    color: var(--color-red-600);
}

.logo-dark {
    color: var(--color-gray-900);
    transition: color 0.3s ease;
}

.header:not(.scrolled) .logo-dark {
    color: var(--color-white);
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    position: relative;
    color: var(--color-gray-700);
    transition: color 0.3s ease;
    font-weight: 500;
}

.header:not(.scrolled) .nav-link {
    color: var(--color-white);
}

.nav-link:hover {
    color: var(--color-red-600);
}

.header:not(.scrolled) .nav-link:hover {
    color: #fca5a5;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red-600);
    transition: width 0.3s ease;
}

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

.btn-cta {
    background-color: var(--color-red-600);
    color: var(--color-white);
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-cta:hover {
    background-color: var(--color-red-hover);
    transform: scale(1.05);
}

.btn-cta:active {
    transform: scale(0.95);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    color: var(--color-gray-900);
    transition: color 0.3s ease;
}

.header:not(.scrolled) .mobile-menu-btn {
    color: var(--color-white);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-gray-200);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-menu-content {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-content button {
    width: 100%;
    text-align: left;
    color: var(--color-gray-700);
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    font-weight: 500;
}

.mobile-menu-content button:hover {
    color: var(--color-red-600);
}

.mobile-cta-btn {
    width: 100%;
    background-color: var(--color-red-600);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
    font-weight: 500;
    text-align: center;
}

.mobile-cta-btn:hover {
    background-color: var(--color-red-hover);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.9), rgba(0,0,0,0.7), rgba(127,29,29,0.4));
}

.hero-animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.animated-circle-1,
.animated-circle-2 {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background-color: rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.animated-circle-1 {
    top: 5rem;
    right: 5rem;
    animation: pulse1 8s ease-in-out infinite;
}

.animated-circle-2 {
    bottom: 5rem;
    left: 5rem;
    animation: pulse2 10s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text {
    max-width: 56rem;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.5);
    color: #fca5a5;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    max-width: 42rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-btn-primary {
    background-color: var(--color-red-600);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    font-weight: 500;
}

.hero-btn-primary:hover {
    background-color: var(--color-red-hover);
    transform: scale(1.05);
}

.hero-btn-primary:active {
    transform: scale(0.95);
}

.hero-btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hero-btn-secondary:active {
    transform: scale(0.95);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

.stat-label {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator > div {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-indicator-dot {
    width: 0.25rem;
    height: 0.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--color-white);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-0.5rem);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    color: var(--color-white);
}

.gradient-blue {
    background: linear-gradient(to bottom right, #3b82f6, #2563eb);
}

.gradient-red {
    background: linear-gradient(to bottom right, #ef4444, #dc2626);
}

.gradient-orange {
    background: linear-gradient(to bottom right, #f97316, #ea580c);
}

.gradient-purple {
    background: linear-gradient(to bottom right, #a855f7, #9333ea);
}

.gradient-green {
    background: linear-gradient(to bottom right, #22c55e, #16a34a);
}

.gradient-yellow {
    background: linear-gradient(to bottom right, #eab308, #ca8a04);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--color-gray-600);
    line-height: 1.6;
}

.services-cta {
    margin-top: 3rem;
    text-align: center;
}

.services-cta-text {
    color: var(--color-gray-600);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.services-cta-btn {
    background-color: var(--color-gray-900);
    color: var(--color-white);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.services-cta-btn:hover {
    background-color: var(--color-black);
    transform: scale(1.05);
}

.services-cta-btn:active {
    transform: scale(0.95);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-line {
    display: none;
}

@media (min-width: 1024px) {
    .process-line {
        display: block;
        position: absolute;
        top: 5rem;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(to right, #fecaca, #ef4444, #fecaca);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--color-white);
    border: 4px solid var(--color-red-light);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-red-600);
    position: relative;
    z-index: 10;
}

.process-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-icon svg {
    color: var(--color-white);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.process-description {
    color: var(--color-gray-600);
    line-height: 1.6;
}

.process-cta {
    margin-top: 4rem;
    background: linear-gradient(to right, var(--color-red-600), var(--color-red-hover));
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
}

.process-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.process-cta-text {
    color: #fecaca;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.process-cta-btn {
    background-color: var(--color-white);
    color: var(--color-red-600);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    font-weight: 500;
}

.process-cta-btn:hover {
    background-color: var(--color-gray-100);
    transform: scale(1.05);
}

.process-cta-btn:active {
    transform: scale(0.95);
}

/* ============================================
   TESTIMONIALS & CLIENTS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--color-gray-800);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
}

.quote-icon {
    color: var(--color-red-600);
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.rating svg {
    color: var(--color-red-500);
}

.testimonial-text {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid var(--color-gray-700);
    padding-top: 1rem;
}

.author-name {
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-position {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.author-company {
    color: var(--color-red-500);
    font-size: 0.875rem;
}

.clients-section {
    border-top: 1px solid var(--color-gray-800);
    padding-top: 3rem;
}

.clients-title {
    text-align: center;
    color: var(--color-gray-400);
    margin-bottom: 2rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.client-card {
    background-color: var(--color-gray-800);
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.client-card:hover {
    background-color: #374151;
    transform: scale(1.1);
}

.client-card {
    color: #d1d5db;
    font-size: 0.875rem;
}

.client-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .client-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number-red {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-red-500);
    margin-bottom: 0.5rem;
}

.stat-label-gray {
    color: var(--color-gray-400);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
}

.contact-info-text {
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--color-white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-red-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--color-red-600);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--color-gray-900);
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--color-red-600);
}

.contact-form-wrapper {
    background-color: var(--color-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red-500);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    background-color: var(--color-red-600);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-submit-btn:hover:not(:disabled) {
    background-color: var(--color-red-hover);
    transform: scale(1.02);
}

.form-submit-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.form-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-gray-900);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.logo-white {
    color: var(--color-white);
}

.footer-text {
    color: var(--color-gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-gray-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-red-600);
    transform: translateY(-2px) scale(1.1);
}

.social-link svg {
    color: var(--color-white);
}

.footer-title {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links button,
.footer-links a {
    color: var(--color-gray-400);
    transition: color 0.3s ease;
    text-align: left;
}

.footer-links button:hover,
.footer-links a:hover {
    color: var(--color-red-500);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact svg {
    color: var(--color-red-500);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact span,
.footer-contact a {
    color: var(--color-gray-400);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-red-500);
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-800);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--color-gray-400);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-red-500);
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-red-600);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 40;
    opacity: 0;
    pointer-events: none;
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-to-top:hover {
    background-color: var(--color-red-hover);
    transform: scale(1.1);
}

.scroll-to-top:active {
    transform: scale(0.9);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #25D366;
    color: var(--color-white);
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 45;
    text-decoration: none;
    font-weight: 500;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-button svg {
    flex-shrink: 0;
}

.whatsapp-text {
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .whatsapp-button {
        left: 1rem;
        bottom: 1rem;
        padding: 0.75rem;
        border-radius: 50%;
        width: 3.5rem;
        height: 3.5rem;
        justify-content: center;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
}