* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== SKIP LINK (ACESSIBILIDADE) ========== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

:root {
    --color-primary: #ae6f7d;
    --color-primary-light: #ffdee8;
    --color-secondary: #697962;
    --color-secondary-light: #afb695;
    --color-accent: #b99772;
    --color-neutral-light: #ebe6db;
    --color-neutral-lighter: #e9dac5;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

/* ========== ANIMAÇÕES DE SCROLL ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-text);
    line-height: 1.4;
    background-color: var(--color-white);
}

/* ========== HEADER E NAVEGAÇÃO ========== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 0.4rem 2rem;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.2625rem;
}

.logo img {
    height: 50px;
    margin-right: 0.8rem;
}

.logo-text {
    font-size: 0.9625rem;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu-toggle {
    display: none;
}

nav a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 1.0125rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--color-primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cta-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 0.9625rem;
}

.cta-header:hover {
    background-color: var(--color-secondary);
}

/* ========== HERO SECTION ========== */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(174, 111, 125, 0.1) 0%, rgba(105, 121, 98, 0.1) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-intro {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-profile-image {
    width: 260px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero-profile-image:hover {
    transform: scale(1.05);
}

.hero-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-profile-image-mobile {
    display: none;
}

.hero-intro-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-top: 1rem;
}

.hero-greeting {
    font-size: 2.2625rem;
    color: var(--color-text);
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.1;
}

.highlight-name {
    color: var(--color-text);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.3625rem;
    color: var(--color-text-light);
    line-height: 1.4;
    margin: 0;
}

.hero-subtitle em {
    color: var(--color-primary);
    font-style: italic;
    font-weight: 500;
}

.hero-main-title {
    font-size: 1.8625rem !important;
    color: var(--color-text) !important;
    margin: 1.2rem 0 0 !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
    font-family: 'Georgia', 'Times New Roman', serif !important;
    font-style: italic !important;
}

.hero-main-title .highlight-word {
    color: var(--color-primary) !important;
    font-weight: 600 !important;
    font-style: normal !important;
}

.hero-intro-paragraph {
    font-size: 1.1625rem;
    color: var(--color-text-light);
    margin-top: 1.5rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.hero h1 {
    font-size: 2.8625rem;
    color: var(--color-primary);
    margin: 2rem 0 1rem;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
}

.hero p {
    font-size: 1.1625rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.0625rem;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(174, 111, 125, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ========== SOBRE MIM ========== */
.about {
    padding: 3.5rem 2rem;
    background-color: var(--color-neutral-light);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    padding: 0 2rem;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-image-mobile {
    display: none;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.about-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-gallery img:hover {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 2.5625rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-content p {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.credentials {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-primary-light) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--color-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.credentials p {
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 1.0625rem;
    color: var(--color-text);
}

.credentials p:last-child {
    margin-bottom: 0;
}

.credentials strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* ========== POR QUE TERAPIA ========== */
.why-therapy {
    padding: 5rem 2rem;
    background-color: var(--color-white);
}

.why-therapy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8625rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.1;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 2px;
}

.why-content {
    background-color: var(--color-primary-light);
    padding: 3rem;
    border-radius: 15px;
    font-size: 1.1125rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* ========== SERVIÇOS ========== */
.services {
    padding: 5rem 2rem;
    background-color: var(--color-neutral-lighter);
}

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

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-primary-light) 100%);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid var(--color-primary);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.service-card-content {
    padding: 2.5rem;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

.service-card-image-couple {
    object-position: center 15% !important;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

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

.service-card-content h3 {
    font-size: 1.6625rem;
    color: var(--color-primary);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.service-card-content p {
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 1.1125rem;
}

/* ========== COMO FUNCIONA ========== */
.how-it-works {
    padding: 5rem 2rem;
    background-color: var(--color-white);
}

.how-it-works-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-neutral-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-5px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.5625rem;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2625rem;
}

.step p {
    color: var(--color-text-light);
    font-size: 1.0125rem;
}

/* ========== CONTATO ========== */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5625rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact p {
    font-size: 1.1625rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
}

.contact-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info p {
    font-size: 1.1625rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.crp {
    font-weight: 700;
    font-size: 1.3625rem;
    letter-spacing: 0.5px;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.0625rem;
    display: inline-block;
}

.btn-white:hover {
    background-color: var(--color-neutral-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--color-text);
    color: var(--color-white);
    text-align: center;
    padding: 2rem;
    font-size: 0.9625rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-social-link:hover {
    color: var(--color-primary-light);
    transform: translateY(-2px);
}

.footer-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.footer-social-link:hover .footer-icon {
    transform: scale(1.1);
}

.footer-separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    align-self: center;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
    header {
        padding: 1rem;
        position: relative;
        box-shadow: none;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: var(--color-primary);
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 2rem 2rem;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: left;
        list-style: none;
    }

    .main-nav a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.0625rem;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .hero {
        margin-top: 0;
        padding: 2rem 1rem;
    }

    .hero-intro {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-intro-text {
        text-align: center;
    }

    .hero-profile-image {
        display: none;
    }

    .hero-profile-image-mobile {
        display: block;
        width: 180px;
        height: 250px;
        margin: 1.5rem auto;
        border-radius: 20px;
        overflow: hidden;
        border: 6px solid var(--color-primary);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .hero-profile-image-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-greeting {
        font-size: 2.0625rem;
    }

    .hero-subtitle {
        font-size: 1.1625rem;
    }

    .hero-main-title {
        font-size: 1.5625rem !important;
        margin-top: 1rem !important;
    }

    .hero h1 {
        font-size: 2.0625rem;
        text-align: center;
    }

    .hero p {
        font-size: 1.0625rem;
    }

    .about {
        padding: 3rem 0.5rem !important;
    }

    .about-container {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .about-content {
        padding: 0 0.6rem !important;
        width: 100% !important;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .about-image {
        display: none;
    }

    .about-image-mobile {
        display: block;
        margin: 1.5rem 0.6rem;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .about-image-mobile img {
        width: 100%;
        height: auto;
        display: block;
    }

    .about-gallery {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 1.8625rem;
    }

    .section-title {
        font-size: 1.8625rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card-image {
        border-radius: 20px 20px 0 0;
        height: 300px;
    }

    .service-card-image-couple {
        object-position: center top;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact h2 {
        font-size: 1.8625rem;
    }

    .why-content {
        padding: 2rem;
        font-size: 1.0625rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.8rem;
        position: relative;
        box-shadow: none;
    }

    .logo img {
        height: 40px;
        margin-right: 0.5rem;
    }

    .logo-text {
        font-size: 0.8125rem;
    }

    nav ul {
        gap: 0.5rem;
    }

    nav a {
        font-size: 0.8625rem;
    }

    .cta-header {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .hero {
        margin-top: 0;
        padding: 1.5rem 1rem;
    }

    .hero-intro {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-intro-text {
        text-align: center;
    }

    .hero-profile-image {
        display: none;
    }

    .hero-profile-image-mobile {
        width: 150px;
        height: 210px;
    }

    .hero-greeting {
        font-size: 1.5625rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-main-title {
        font-size: 1.3625rem !important;
        margin-top: 0.8rem !important;
    }

    .hero h1 {
        font-size: 1.5625rem;
        text-align: center;
    }

    .hero p {
        font-size: 0.9625rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9625rem;
    }

    .about-content h2 {
        font-size: 1.5625rem;
    }

    .about-content p {
        font-size: 0.9625rem;
    }

    .section-title {
        font-size: 1.5625rem;
    }

    .section-title::after {
        width: 50px;
        height: 2px;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card-content {
        padding: 1.5rem;
    }

    .service-card-image {
        border-radius: 20px 20px 0 0;
        height: 250px;
    }

    .service-card-image-couple {
        object-position: center top;
    }

    .service-card-content h3 {
        font-size: 1.2625rem;
    }

    .why-content {
        padding: 1.5rem;
        font-size: 0.9625rem;
    }

    .contact h2 {
        font-size: 1.5625rem;
    }

    .contact p {
        font-size: 1.0125rem;
    }
}

@media (max-width: 360px) {
    header {
        padding: 0.5rem;
        position: relative;
        box-shadow: none;
    }

    .logo img {
        height: 35px;
        margin-right: 0.4rem;
    }

    .logo-text {
        font-size: 0.75rem;
    }

    nav ul {
        gap: 0.3rem;
    }

    nav a {
        font-size: 0.8125rem;
    }

    .cta-header {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }

    .hero {
        margin-top: 0;
        padding: 1rem 0.8rem;
    }

    .hero-profile-image {
        display: none;
    }

    .hero-profile-image-mobile {
        width: 80px;
        height: 115px;
    }

    .hero-greeting {
        font-size: 1.3625rem;
    }

    .hero-main-title {
        font-size: 1.1625rem !important;
        margin-top: 0.6rem !important;
    }

    .hero p {
        font-size: 0.9125rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9125rem;
    }

    .about-content h2 {
        font-size: 1.3625rem;
    }

    .about-content p {
        font-size: 0.9125rem;
    }

    .credentials {
        padding: 1.2rem;
    }

    .section-title {
        font-size: 1.3625rem;
    }

    .section-title::after {
        width: 40px;
        height: 2px;
    }

    .why-content {
        padding: 1.2rem;
        font-size: 0.9125rem;
    }

    .service-card-content {
        padding: 1.2rem;
    }

    .service-card-content h3 {
        font-size: 1.1625rem;
    }

    .service-card-content p {
        font-size: 0.9625rem;
    }

    .service-card-image {
        height: 200px;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2625rem;
    }

    .step h3 {
        font-size: 1.0625rem;
    }

    .step p {
        font-size: 0.9125rem;
    }

    .contact {
        padding: 3rem 0.8rem;
    }

    .contact h2 {
        font-size: 1.3625rem;
    }

    .contact p {
        font-size: 0.9625rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .btn-white {
        padding: 0.7rem 1.2rem;
        font-size: 0.9125rem;
    }

    footer {
        padding: 1.5rem 0.8rem;
        font-size: 0.8625rem;
    }

    .footer-social {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-separator {
        display: none;
    }

    .footer-icon {
        width: 24px;
        height: 24px;
    }
}

/* ========== BOTÃO FLUTUANTE WHATSAPP ========== */
#whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

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

#whatsapp-float svg {
    width: 32px;
    height: 32px;
}

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

@media (max-width: 768px) {
    #whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    #whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    #whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 15px;
        right: 15px;
    }

    #whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
