/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #385666;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #385666;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Text Utilities */
.text-gradient {
    background: #89c14e; /*linear-gradient(135deg, #89c14e 0%, #385666 100%);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    gap: 0.5rem;
}

.btn--primary {
    background: #89c14e; /*linear-gradient(135deg, #89c14e 0%, #385666 100%);*/
    color: #FFFFFF;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(137, 193, 78, 0.3);
}

.btn--outline {
    background: #385666;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn--outline:hover {
    background: #89c14e;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(56, 86, 102, 0.2);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn--full {
    width: 100%;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__badge {
    display: inline-block;
    background: rgba(137, 193, 78, 0.1);
    color: #89c14e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section__title {
    margin-bottom: 1.5rem;
}

.section__description {
    font-size: 1.125rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(56, 86, 102, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(56, 86, 102, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo {
    background: linear-gradient(135deg, #89c14e 0%, #385666 100%);
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-foot {
    height: 100px;
    width: auto;
}

.nav__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #385666;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    color: #5a6c7d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #89c14e;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: #385666;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #385666 0%, #2a4a5a 100%);
    color: #FFFFFF;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(137, 193, 78, 0.2);
    color: #89c14e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.hero__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
}

.stat__number {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__cards {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: scale(1.05);
}

.card-1 {
    top: 20px;
    left: 0px;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    right: 0;
    background: #89c14e; /*linear-gradient(135deg, #89c14e 100%, #385666 0%); */
    animation-delay: 2s;
}

.card-3 {
    bottom: 0px;
    right: 150px;
    background: #385666; /* linear-gradient(135deg, #385666 100%, #89c14e 0%); */
    animation-delay: 4s;
}


.card__icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.card__content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.card__content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(137, 193, 78, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(137, 193, 78, 0.05) 0%, transparent 50%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
    background: #f8fafc;
}

.serviceGrid{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(56, 86, 102, 0.08);
    border: 1px solid rgba(56, 86, 102, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #89c14e 0%, #385666 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(56, 86, 102, 0.15);
}

.service-card__icon {
    background: linear-gradient(135deg, #89c14e 0%, #385666 100%);
    color: #FFFFFF;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.service-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #385666;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
    color: #89c14e;
}

.service-card__description {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card__features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card__features li {
    display: flex;
    align-items: center;
    color: #5a6c7d;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-card__features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #89c14e;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.services__cta {
    text-align: center;
}

.cta-card {
    background: #385666; /*linear-gradient(135deg, #89c14e 0%, #385666 100%);*/
    color: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* About Section */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about__description {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about__stat {
    background: rgba(137, 193, 78, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.about__stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #89c14e;
    margin-bottom: 0.5rem;
}

.about__stat-label {
    color: #5a6c7d;
    font-size: 0.875rem;
}

.about__values {
    display: inline-block; /* grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem; */
}

.value-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    /*background: #f8fafc;*/
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(56, 86, 102, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(56, 86, 102, 0.08)
}

.value-card:hover {
    background: rgba(137, 193, 78, 0.05);
    border-color: rgba(137, 193, 78, 0.2);
    transform: translateY(-4px);
}

.value-card__icon {
    background: linear-gradient(135deg, #89c14e 0%, #385666 100%);
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-card__icon {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #385666;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: #89c14e;
}

.value-card p {
    color: #5a6c7d;
    font-size: 0.875rem;
    line-height: 1.5;
}

.about__mission {
    text-align: center;
}

.mission-card {
    background: linear-gradient(135deg, #385666 0%, #2a4a5a 100%);
    color: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 20px;
}

.mission-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Portfolio Section */
.portfolio {
    background: #f8fafc;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.project-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(56, 86, 102, 0.08);
    border: 1px solid rgba(56, 86, 102, 0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(56, 86, 102, 0.15);
}

.project-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card__image img {
    transform: scale(1.1);
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-card__overlay {
    opacity: 1;
}

.project-card__category {
    background: #89c14e;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-card__content {
    padding: 1.5rem;
}

.project-card__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #385666;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.project-card:hover .project-card__content h3 {
    color: #89c14e;
}

.project-card__content p {
    color: #5a6c7d;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.project-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-card__tags span {
    background: #f1f5f9;
    color: #5a6c7d;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-card__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #89c14e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.project-card__link:hover {
    color: #385666;
}

.testimonials {
    margin-bottom: 4rem;
}

.testimonials__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #385666;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(56, 86, 102, 0.08);
    border: 1px solid rgba(56, 86, 102, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(56, 86, 102, 0.12);
}

.testimonial-card__quote {
    background: rgba(137, 193, 78, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #89c14e;
    margin-bottom: 1rem;
}

.testimonial-card__rating {
    margin-bottom: 1rem;
}

.testimonial-card__rating span {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-card p {
    color: #5a6c7d;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-card__author strong {
    color: #385666;
    font-weight: 600;
}

.testimonial-card__author span {
    color: #5a6c7d;
    font-size: 0.875rem;
}

.portfolio__cta {
    text-align: center;
}

/* Contact Section */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
}

.contact__form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #385666;
    margin-bottom: 1.5rem;
}

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

.form__group {
    margin-bottom: 1rem;
}

.form__group label {
    display: block;
    color: #385666;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: #89c14e;
    box-shadow: 0 0 0 3px rgba(137, 193, 78, 0.1);
}

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

.contact__info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #385666;
    margin-bottom: 1rem;
}

.contact__info > p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact__details {
    margin-bottom: 2rem;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact__detail-icon {
    background: rgba(137, 193, 78, 0.1);
    color: #89c14e;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail-content h4 {
    font-weight: 600;
    color: #385666;
    margin-bottom: 0.25rem;
}

.contact__detail-content p {
    color: #5a6c7d;
    margin-bottom: 0.25rem;
}

.contact__detail-content span {
    color: #9ca3af;
    font-size: 0.875rem;
}

.contact__quick {
    background: #385666; /*linear-gradient(135deg, #89c14e 0%, #385666 100%);*/
    color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 16px;
}

.contact__quick h4 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact__quick p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #385666;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer__logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer__services h3,
.footer__links h3,
.footer__social h3 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__services ul,
.footer__links ul {
    list-style: none;
}

.footer__services li,
.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__services a,
.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer__services a:hover,
.footer__links a:hover {
    color: #89c14e;
}

.footer__social p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer__social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer__social-links a {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer__social-links a:hover {
    background: #89c14e;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: #89c14e;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 4rem;
    right: 0;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.whatsapp-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: bounce 0.6s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 1rem;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFFFFF;
}

.whatsapp-tooltip__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.whatsapp-tooltip__header span {
    font-weight: 600;
    color: #385666;
    font-size: 0.875rem;
}

.whatsapp-tooltip__close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-tooltip__close:hover {
    color: #385666;
}

.whatsapp-tooltip p {
    color: #5a6c7d;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
}

.whatsapp-button__link {
    background: #25d366;
    color: #FFFFFF;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
}

.whatsapp-button__link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-10px);
    }
    70% {
        transform: translateY(-5px);
    }
    90% {
        transform: translateY(-2px);
    }
}