/* Base Styles */
:root {
    --primary: #ef4444;
    --primary-light: #fecaca;
    --primary-dark: #dc2626;
    --secondary: #7c3aed;
    --secondary-light: #c4b5fd;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: white;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.grid {
    display: grid;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #fee2e2, white, #f3e8ff);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--danger);
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(to right, #ef4444, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-800);
    font-weight: 500;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--danger);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

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

.emergency-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    background: linear-gradient(to right, #ef4444, #ec4899);
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    overflow: hidden;
    z-index: 1;
}

.emergency-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #dc2626, #db2777);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.emergency-btn:hover::before {
    opacity: 1;
}

.whatsapp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    background-color: #25D366;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    overflow: hidden;
    z-index: 1;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #128C7E;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(239, 68, 68, 0.05);
}

.bg-circle-1 {
    top: -2.5rem;
    right: -2.5rem;
    width: 16rem;
    height: 16rem;
}

.bg-circle-2 {
    top: 33%;
    left: 2.5rem;
    width: 12rem;
    height: 12rem;
}

.bg-circle-3 {
    bottom: 2.5rem;
    right: 5rem;
    width: 18rem;
    height: 18rem;
}

/* Emergency Alert Section */
.emergency-alert-section {
    padding: 2rem 0;
    background: linear-gradient(to right, #fee2e2, #fecaca);
}

.emergency-alert {
    max-width: 56rem;
    margin: 0 auto;
    border-radius: 0.75rem;
    border: 1px solid #fca5a5;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
}

.alert-icon {
    width: 3rem;
    height: 3rem;
    background-color: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.alert-icon i {
    color: #dc2626;
    font-size: 1.5rem;
}

.alert-content {
    flex: 1;
}

.alert-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b91c1c;
    margin-bottom: 0.5rem;
}

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

@media (min-width: 768px) {
    .alert-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.alert-grid h3 {
    font-weight: 600;
    color: #b91c1c;
    margin-bottom: 0.5rem;
}

.emergency-list {
    list-style: none;
}

.emergency-list li {
    display: flex;
    align-items: flex-start;
    color: #b91c1c;
    margin-bottom: 0.5rem;
}

.number-circle {
    display: inline-flex;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #fee2e2;
    border-radius: 50%;
    color: #b91c1c;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.contact-link {
    display: flex;
    align-items: center;
    color: #b91c1c;
    text-decoration: none;
}

.bullet-circle {
    display: inline-flex;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #fee2e2;
    border-radius: 50%;
    color: #b91c1c;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Service Section */
.service-section {
    padding: 3rem 0;
    background-color: white;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to right, #ef4444, #8b5cf6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.service-icon i {
    color: white;
    font-size: 1.75rem;
}

.service-header h2 {
    font-size: 1.875rem;
    font-weight: 800;
    background: linear-gradient(to right, #ef4444, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

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

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

.feature-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #fca5a5;
    background: linear-gradient(to bottom right, #fee2e2, #f3e8ff);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.05), rgba(236, 72, 153, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-1 {
    border-color: #fca5a5;
}

.feature-card-2 {
    border-color: #86efac;
}

.feature-card-3 {
    border-color: #c4b5fd;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card-1 .feature-icon {
    background: linear-gradient(to right, #ef4444, #ec4899);
}

.feature-card-2 .feature-icon {
    background: linear-gradient(to right, #10b981, #14b8a6);
}

.feature-card-3 .feature-icon {
    background: linear-gradient(to right, #8b5cf6, #6366f1);
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-700);
    font-size: 1rem;
}

.why-us-box {
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.why-us-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.why-us-box > div {
    display: flex;
}

.why-us-box h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.benefits-list i {
    margin-top: 0.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

.section-header {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-600);
}

.process-steps {
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--gray-200);
    transform: translateX(-50%);
    display: none;
}

@media (min-width: 768px) {
    .process-steps::before {
        display: block;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-step {
        flex-direction: row;
        align-items: center;
    }
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin: 1rem auto;
    flex-shrink: 0;
    z-index: 10;
}

@media (min-width: 768px) {
    .step-number {
        margin: 0;
    }
}

.step-content {
    flex: 1;
}

.step-left {
    text-align: center;
}

@media (min-width: 768px) {
    .step-left {
        text-align: right;
        padding-right: 3rem;
    }
}

.step-right {
    text-align: center;
}

@media (min-width: 768px) {
    .step-right {
        text-align: left;
        padding-left: 3rem;
    }
}

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

.step-content p {
    color: var(--gray-600);
}

.step-details {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.step-details ul {
    list-style: none;
}

.step-details li {
    display: flex;
    align-items: flex-start;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.text-right {
    text-align: right;
}

/* Account Types Section */
.account-types-section {
    padding: 4rem 0;
    background-color: white;
}

.tabs-container {
    max-width: 56rem;
    margin: 0 auto;
}

.tabs-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    background-color: #fff0f1;
    padding: 0.25rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.tab-btn {
    padding: 0.75rem 1rem;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.tab-btn.active {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
    border: 1px solid var(--primary-dark);
}

.tab-content {
    display: none;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.tab-content.active {
    display: block;
}

.tab-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
}

.tab-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.tab-icon i {
    color: #4f46e5;
    font-size: 1.5rem;
}

.tab-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

.tab-description {
    color: var(--gray-600);
    padding: 0 1.5rem 1.5rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem 1.5rem;
}

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

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

.platform-card {
    background-color: var(--gray-50);
    padding: 1.25rem;
    border-radius: 0.75rem;
}

.platform-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.platform-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.platform-icon i {
    color: white;
    font-size: 1.25rem;
}

.platform-icon.instagram {
    background: linear-gradient(to right, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.platform-icon.facebook {
    background-color: #1877f2;
}

.platform-icon.twitter {
    background-color: #1da1f2;
}

.platform-icon.linkedin {
    background-color: #0a66c2;
}

.platform-icon.tiktok {
    background-color: #000;
}

.platform-icon.youtube {
    background-color: #ff0000;
}

.platform-header h4 {
    font-weight: 600;
    color: var(--gray-900);
}

.platform-features {
    list-style: none;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.platform-features li {
    margin-bottom: 0.25rem;
}

.success-rate-box {
    background-color: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.success-rate-box h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.success-rate-box p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.email-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem 1.5rem;
}

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

.email-card {
    background-color: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.email-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.email-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.email-icon i {
    color: white;
    font-size: 1.25rem;
}

.email-icon.gmail {
    background-color: #db4437;
}

.email-icon.outlook {
    background-color: #0078d4;
}

.email-icon.yahoo {
    background-color: #6001d2;
}

.email-icon.corporate {
    background-color: var(--gray-800);
}

.email-header h4 {
    font-weight: 600;
    color: var(--gray-900);
}

.email-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.email-warning-box {
    background-color: #eff6ff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
}

.warning-icon {
    color: #3b82f6;
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.email-warning-box h4 {
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.email-warning-box p {
    color: #1e40af;
    margin-bottom: 1rem;
}

.other-accounts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem 1.5rem;
}

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

.account-category {
    background-color: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.account-category h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.account-list {
    list-style: none;
}

.account-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.account-list i {
    color: #10b981;
    margin-top: 0.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.custom-recovery-box {
    background-color: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.custom-recovery-box h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.custom-recovery-box p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Prevention Section */
.prevention-section {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

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

.tip-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.tip-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.tip-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.tip-icon i {
    font-size: 1.25rem;
}

.tip-card:nth-child(1) .tip-icon {
    background-color: #dcfce7;
    color: #16a34a;
}

.tip-card:nth-child(2) .tip-icon {
    background-color: #dbeafe;
    color: #2563eb;
}

.tip-card:nth-child(3) .tip-icon {
    background-color: #fef3c7;
    color: #d97706;
}

.tip-card:nth-child(4) .tip-icon {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.tip-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.tip-list {
    list-style: none;
}

.tip-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: rgba(239, 68, 68, 0.05);
}

.cta-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 100;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background-color: #128C7E;
}

.whatsapp-icon {
    color: white;
    font-size: 1.75rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .emergency-alert {
        flex-direction: column;
    }
    
    .alert-icon {
        margin-bottom: 1rem;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-content {
        margin-bottom: 1rem;
    }
    
    .tab-header {
        flex-direction: column;
        text-align: center;
    }
    
    .tab-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .whatsapp-float {
        width: 3rem;
        height: 3rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-icon {
        font-size: 1.5rem;
    }
}