/* Custom CSS for Ruiz Brunetti Psychology Website */

:root {
    --primary-pink: #e94b88;
    --light-pink: #ffd6e6;
    --dark-footer: #452e3d;
    --text-gray: #6b7280;
    --muted: #9ca3af;
    --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;
    --white: #ffffff;
    --green-500: #10b981;
    --green-600: #059669;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --yellow-50: #fffbeb;
    --yellow-200: #fde68a;
    --yellow-400: #f59e0b;
    --yellow-700: #a16207;
    --yellow-800: #92400e;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Display */
.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline-flex {
    display: inline-flex;
}

/* Position */
.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

/* Width & Height */
.w-full {
    width: 100%;
}

.w-6 {
    width: 1.5rem;
}

.w-5 {
    width: 1.25rem;
}

.w-10 {
    width: 2.5rem;
}

.w-16 {
    width: 4rem;
}

.h-6 {
    height: 1.5rem;
}

.h-5 {
    height: 1.25rem;
}

.h-4 {
    height: 1rem;
}

.h-10 {
    height: 2.5rem;
}

.h-16 {
    height: 4rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.min-h-80vh {
    min-height: 80vh;
}

/* Spacing */
.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pt-24 {
    padding-top: 6rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Typography */
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.text-center {
    text-align: center;
}

/* Colors */
.text-white {
    color: var(--white);
}

.text-gray-300 {
    color: var(--gray-300);
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-gray-800 {
    color: var(--gray-800);
}

.text-gray-900 {
    color: var(--gray-900);
}

.bg-white {
    background-color: var(--white);
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.bg-gray-100 {
    background-color: var(--gray-100);
}

.bg-gray-200 {
    background-color: var(--gray-200);
}

.bg-gray-800 {
    background-color: var(--gray-800);
}

.bg-green-500 {
    background-color: var(--green-500);
}

.bg-green-600 {
    background-color: var(--green-600);
}

.bg-blue-600 {
    background-color: var(--blue-600);
}

.bg-blue-700 {
    background-color: var(--blue-700);
}

.bg-yellow-50 {
    background-color: var(--yellow-50);
}

/* Pink Colors */
.text-pink-600 {
    color: var(--primary-pink);
}

.text-pink-200 {
    color: var(--light-pink);
}

.bg-pink-50 {
    background-color: #fdf2f8;
}

.bg-pink-100 {
    background-color: var(--light-pink);
}

.bg-pink-200 {
    background-color: var(--light-pink);
}

.bg-pink-600 {
    background-color: var(--primary-pink);
}

.bg-pink-700 {
    background-color: #d13b76;
}

.border-pink-600 {
    border-color: var(--primary-pink);
}

.focus\:border-pink-500:focus {
    border-color: var(--primary-pink);
}

.focus\:ring-pink-500:focus {
    box-shadow: 0 0 0 2px rgba(233, 75, 136, 0.2);
}

/* Borders */
.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-t {
    border-top-width: 1px;
}

.border-b-2 {
    border-bottom-width: 2px;
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.border-gray-300 {
    border-color: var(--gray-300);
}

.border-gray-700 {
    border-color: var(--gray-700);
}

.border-yellow-200 {
    border-color: var(--yellow-200);
}

.border-white {
    border-color: var(--white);
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* Shadows */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Hover States */
.hover\:text-white:hover {
    color: var(--white);
}

.hover\:text-pink-600:hover {
    color: var(--primary-pink);
}

.hover\:text-pink-200:hover {
    color: var(--light-pink);
}

.hover\:bg-pink-600:hover {
    background-color: var(--primary-pink);
}

.hover\:bg-pink-700:hover {
    background-color: #d13b76;
}

.hover\:bg-pink-200:hover {
    background-color: var(--light-pink);
}

.hover\:bg-gray-100:hover {
    background-color: var(--gray-100);
}

.hover\:bg-green-600:hover {
    background-color: var(--green-600);
}

.hover\:bg-blue-700:hover {
    background-color: var(--blue-700);
}

.hover\:underline:hover {
    text-decoration: underline;
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Transitions */
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Z-index */
.z-50 {
    z-index: 50;
}

.z-1000 {
    z-index: 1000;
}

/* Top/Bottom/Left/Right */
.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.bottom-20 {
    bottom: 5rem;
}

.right-20 {
    right: 5rem;
}

/* Overflow */
.overflow-y-auto {
    overflow-y: auto;
}

/* Focus */
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

/* Form Elements */
input, textarea, select {
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    width: 100%;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 2px rgba(233, 75, 136, 0.2);
}

/* Buttons */
button {
    cursor: pointer;
    border: none;
    border-radius: 0.375rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:text-center {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .md\:hidden {
        display: none;
    }

    .md\:flex {
        display: flex;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:w-1\/2 {
        width: 50%;
    }

    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .md\:pt-32 {
        padding-top: 8rem;
    }

    .md\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
}

/* Custom styles for the original design elements */

/* Header Styles */
.fondorosa {
    background-color: var(--primary-pink);
}

.text-blanco-600,
.text-blanco-100 {
    color: white;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--light-pink) !important;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-pink);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d13b76;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Cookie Overlay */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cookie-overlay.show {
    display: flex;
}

.cookie-panel {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    margin: 1rem;
    max-height: 80vh;
    overflow-y: auto;
}

.prefs {
    margin-top: 1rem;
}

.pref {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.pref:last-child {
    border-bottom: none;
}

.desc {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

.toggle {
    width: 44px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 12px;
    border: none;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.toggle[aria-pressed="true"] {
    background-color: var(--primary-pink);
}

.toggle[aria-pressed="true"]:before {
    transform: translateX(20px);
}

.cookie-actions {
    margin-top: 1.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-pink);
    color: white;
}

.btn-primary:hover {
    background-color: #d13b76;
}

.btn-ghost {
    background-color: transparent;
    color: var(--primary-pink);
    border: 1px solid var(--primary-pink);
}

.btn-ghost:hover {
    background-color: var(--primary-pink);
    color: white;
}

.btn-link {
    background-color: transparent;
    color: var(--primary-pink);
    text-decoration: underline;
}

.btn-link:hover {
    color: #d13b76;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Footer */
.footer {
    background-color: var(--dark-footer);
}

/* Mobile Menu */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .testimonial-card {
        margin-bottom: 1rem;
    }

    .cookie-panel {
        margin: 0.5rem;
        padding: 1.5rem;
    }
}

/* Custom Pink Colors for Design */
.bg-pink-600 {
    background-color: var(--primary-pink) !important;
}

.text-pink-600 {
    color: var(--primary-pink) !important;
}

.border-pink-600 {
    border-color: var(--primary-pink) !important;
}

.hover\:bg-pink-600:hover {
    background-color: var(--primary-pink) !important;
}

.hover\:text-pink-600:hover {
    color: var(--primary-pink) !important;
}

.bg-pink-200 {
    background-color: var(--light-pink) !important;
}

.hover\:bg-pink-200:hover {
    background-color: var(--light-pink) !important;
}

.hover\:text-pink-200:hover {
    color: var(--light-pink) !important;
}

.text-pink-200 {
    color: var(--light-pink) !important;
}

/* Form Styles */
input[type="email"],
input[type="text"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea,
select {
    outline: none;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    width: 100%;
    font-size: 1rem;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 2px rgba(233, 75, 136, 0.2);
}

/* Checkbox styling */
input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--primary-pink);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    scroll-margin-top: 100px;
}

/* Gradient backgrounds */
.bg-gradient-to-br {
    background: linear-gradient(to bottom right, var(--light-pink), var(--white));
}

.from-pink-50 {
    --tw-gradient-from: #fdf2f8;
}

.to-white {
    --tw-gradient-to: #ffffff;
}

/* Yellow/Warning colors for notification */
.text-yellow-400 {
    color: var(--yellow-400);
}

.text-yellow-700 {
    color: var(--yellow-700);
}

.text-yellow-800 {
    color: var(--yellow-800);
}

/* Additional utility classes for flex */
.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-1 {
    flex: 1 1 0%;
}

/* SVG fill */
svg {
    fill: currentColor;
}

/* Link styling */
a {
    text-decoration: none;
    color: inherit;
}

/* Lists */
ul {
    list-style: none;
}

/* Additional responsive utilities */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md\:hidden {
        display: none !important;
    }

    .md\:flex {
        display: flex !important;
    }
}

/* Focus and active states */
.focus\:ring-pink-500:focus {
    box-shadow: 0 0 0 2px rgba(233, 75, 136, 0.2);
}

/* Text decoration */
.underline {
    text-decoration: underline;
}

/* Header Styles */
.fondorosa {
    background-color: var(--primary-pink);
}

.text-blanco-600,
.text-blanco-100 {
    color: white;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--light-pink) !important;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-pink);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d13b76;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.text-pink-600 {
    color: var(--primary-pink) !important;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Cookie Overlay */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cookie-overlay.show {
    display: flex;
}

.cookie-panel {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    margin: 1rem;
    max-height: 80vh;
    overflow-y: auto;
}

.prefs {
    margin-top: 1rem;
}

.pref {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.pref:last-child {
    border-bottom: none;
}

.desc {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

.toggle {
    width: 44px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 12px;
    border: none;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.toggle[aria-pressed="true"] {
    background-color: var(--primary-pink);
}

.toggle[aria-pressed="true"]:before {
    transform: translateX(20px);
}

.cookie-actions {
    margin-top: 1.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-pink);
    color: white;
}

.btn-primary:hover {
    background-color: #d13b76;
}

.btn-ghost {
    background-color: transparent;
    color: var(--primary-pink);
    border: 1px solid var(--primary-pink);
}

.btn-ghost:hover {
    background-color: var(--primary-pink);
    color: white;
}

.btn-link {
    background-color: transparent;
    color: var(--primary-pink);
    text-decoration: underline;
}

.btn-link:hover {
    color: #d13b76;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Footer */
.footer {
    background-color: var(--dark-footer);
}

/* Mobile Menu */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .testimonial-card {
        margin-bottom: 1rem;
    }

    .cookie-panel {
        margin: 0.5rem;
        padding: 1.5rem;
    }
}

/* Custom Pink Colors for Tailwind Override */
.bg-pink-600 {
    background-color: var(--primary-pink) !important;
}

.text-pink-600 {
    color: var(--primary-pink) !important;
}

.border-pink-600 {
    border-color: var(--primary-pink) !important;
}

.hover\:bg-pink-600:hover {
    background-color: var(--primary-pink) !important;
}

.hover\:text-pink-600:hover {
    color: var(--primary-pink) !important;
}

.bg-pink-200 {
    background-color: var(--light-pink) !important;
}

.hover\:bg-pink-200:hover {
    background-color: var(--light-pink) !important;
}

.hover\:text-pink-200:hover {
    color: var(--light-pink) !important;
}

.text-pink-200 {
    color: var(--light-pink) !important;
}

/* Form Styles */
input[type="email"] {
    outline: none;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

input[type="email"]:focus {
    border-color: var(--primary-pink);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    scroll-margin-top: 100px;
}
