/* Servicii - Custom Styles */

/* Root Variables */
:root {
    --primary-color: #28a745;
    --primary-dark: #1e7e34;
    --primary-light: #34ce57;
    --secondary-color: #fd7e14;
    --accent-color: #e83e8c;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --white: #ffffff;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Dancing Script', cursive;
    --font-tertiary: 'Inter', sans-serif;
    --border-radius: 15px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal-backdrop: 1040;
    --z-index-modal: 1050;
    --z-index-popover: 1060;
    --z-index-tooltip: 1070;
}

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2.25rem; }
h4 { font-size: 1.875rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-color), var(--gray-800));
    color: white;
    padding: 1rem 0;
    z-index: var(--z-index-modal);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

/* Navigation */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: var(--transition);
}

.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--box-shadow);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color) !important;
    text-decoration: none;
}

.brand-icon {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

.brand-text {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(40, 167, 69, 0.1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    color: white !important;
    margin-left: 1rem;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f8f4 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    bottom: 20%;
    left: -100px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--box-shadow-lg);
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
    z-index: 3;
}

.floating-card i {
    font-size: 1.25rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    position: relative;
    background: white;
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.decoration-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: var(--box-shadow-lg);
}

.experience-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--box-shadow);
    min-width: 100px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.badge-text {
    font-size: 0.75rem;
    line-height: 1.2;
}

.features-list {
    margin: 2rem 0;
}

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

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-item p {
    color: var(--gray-600);
    margin: 0;
}

/* Service Section */
.service-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(40, 167, 69, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(253, 126, 20, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(232, 62, 140, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: var(--box-shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

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

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
}

.service-features .feature i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.service-pricing {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(40, 167, 69, 0.1);
}

.price-tag {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.guarantee i {
    color: var(--primary-color);
}

/* Calculator Section */
.calculator-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.calculator-form {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.gender-select {
    display: flex;
    gap: 1rem;
}

.gender-select input[type="radio"] {
    display: none;
}

.gender-select label {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.gender-select input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
}

.calculator-result {
    position: relative;
}

.result-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow-lg);
    position: relative;
    z-index: 2;
}

.result-header h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.calorie-display {
    text-align: center;
    margin-bottom: 2rem;
}

.calorie-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.calorie-unit {
    font-size: 1.125rem;
    opacity: 0.9;
}

.result-breakdown {
    margin-bottom: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item .label {
    font-weight: 500;
}

.breakdown-item .value {
    font-weight: 600;
}

.result-cta {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.result-cta p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.calculator-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.1;
}

.calculator-image img {
    border-radius: 20px;
    max-width: 300px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2328a745' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section-header {
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
    border: 1px solid rgba(40, 167, 69, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

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

.testimonial-rating i {
    color: #ffc107;
    margin-right: 0.25rem;
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.newsletter-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--box-shadow-lg);
    position: relative;
    overflow: hidden;
}

.newsletter-decoration {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form .input-group {
    margin-bottom: 0.5rem;
}

.newsletter-form .form-control {
    border: 2px solid var(--gray-300);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
}

.newsletter-form .form-text {
    color: var(--gray-600);
}

.newsletter-form .form-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.newsletter-form .form-text a:hover {
    text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: var(--z-index-tooltip);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--box-shadow-lg);
    transition: var(--transition);
    position: relative;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    background: #1ebe57;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float a:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float .tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--dark-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color), var(--gray-800));
    color: white;
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

.footer-logo span {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 600;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-widget h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.copyright {
    color: var(--gray-400);
    margin: 0;
}

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

.footer-links-inline a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links-inline a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-image-wrapper {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .service-pricing {
        margin-top: 2rem;
    }
    
    .calculator-result {
        margin-top: 3rem;
    }
    
    .newsletter-content {
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .floating-card {
        position: static;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .newsletter-card {
        padding: 2rem;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .gender-select {
        flex-direction: column;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float .tooltip {
        display: none;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .experience-badge {
        position: static;
        margin-top: 1rem;
        display: inline-flex;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .calculator-form {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .newsletter-card {
        padding: 1.5rem;
    }
    
    .footer-top {
        padding: 3rem 0 1rem;
    }
    
    .footer-links-inline {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-section{
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-image-container{
        flex-direction: column;
    }

    .nav-item{
        margin-bottom: 10px;
    }
}

.form-check-input[type=checkbox]{
    width: 5px;
}

.legal-header{
    padding-top: 100px;
}

.section-description{
    margin: 20px auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator a {
        animation: none;
    }
    
    .shape {
        animation: none;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .text-gradient {
        background: none;
        -webkit-text-fill-color: initial;
        color: var(--primary-color);
    }
    
    .hero-shapes {
        display: none;
    }
    
    .section-bg {
        display: none;
    }
}

/* Print styles */
@media print {
    .navbar,
    .whatsapp-float,
    .cookie-banner,
    .newsletter-section {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section-decoration,
    .hero-shapes {
        display: none;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}


.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


        .breadcrumb-section {
            padding: 6rem 0 1rem;
            background: var(--gray-100);
        }

        .breadcrumb {
            background: none;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--gray-600);
        }

        .article-header {
            padding: 2rem 0 3rem;
            background: var(--gray-100);
        }

        .article-category {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

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

        .article-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }

        .author-name {
            font-weight: 600;
            color: var(--dark-color);
            display: block;
        }

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

        .article-stats {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .stat {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-600);
            font-size: 0.875rem;
        }

        .stat i {
            color: var(--primary-color);
        }

        .social-share {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .social-share span {
            font-weight: 500;
            color: var(--gray-700);
        }

        .social-share button {
            background: none;
            border: none;
            color: var(--gray-500);
            font-size: 1.125rem;
            cursor: pointer;
            transition: var(--transition);
            padding: 0.5rem;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-share button:hover {
            color: var(--primary-color);
            background: rgba(40, 167, 69, 0.1);
        }

        .article-featured-image {
            padding: 2rem 0;
            background: white;
        }

        .featured-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--box-shadow-lg);
        }

        .featured-image-wrapper img {
            width: 100%;
            height: auto;
        }

        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 2rem 1.5rem 1rem;
        }

        .image-caption p {
            margin: 0;
            font-style: italic;
        }

        .article-content {
            padding: 4rem 0;
            background: white;
        }

        .content-wrapper {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--box-shadow);
        }

        .content-intro .lead {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--gray-700);
            line-height: 1.6;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--gray-100);
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
        }

        .content-section {
            margin-bottom: 3rem;
        }

        .content-section h2 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .content-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        }

        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .benefits-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 0.75rem;
            background: var(--gray-100);
            border-radius: var(--border-radius);
        }

        .benefits-list i {
            color: var(--primary-color);
            font-size: 1.125rem;
        }

        .superfood-grid {
            display: grid;
            gap: 2rem;
            margin-top: 2rem;
        }

        .superfood-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            padding: 1.5rem;
            background: var(--gray-100);
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
        }

        .superfood-number {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.125rem;
            flex-shrink: 0;
        }

        .superfood-content h3 {
            color: var(--dark-color);
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .superfood-content p {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

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

        .tip-card {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            text-align: center;
            border: 1px solid rgba(40, 167, 69, 0.1);
        }

        .tip-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

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

        .tip-card h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .recipe-card {
            background: var(--gray-100);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin-top: 1.5rem;
            border-left: 4px solid var(--secondary-color);
        }

        .recipe-card h4 {
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .recipe-ingredients, .recipe-steps {
            margin-bottom: 1.5rem;
        }

        .recipe-ingredients li, .recipe-steps li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .conclusion {
            background: var(--gray-100);
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
        }

        .article-cta {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin-top: 3rem;
        }

        .cta-content h3 {
            color: white;
            margin-bottom: 1rem;
        }

        .cta-content p {
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .article-sidebar {
            position: sticky;
            top: 100px;
        }

        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 2rem;
        }

        .widget-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-color);
        }

        .toc-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .toc-list li {
            margin-bottom: 0.5rem;
        }

        .toc-list a {
            color: var(--gray-600);
            text-decoration: none;
            transition: var(--transition);
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--gray-200);
        }

        .toc-list a:hover {
            color: var(--primary-color);
            padding-left: 0.5rem;
        }

        .author-bio {
            text-align: center;
        }

        .author-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 3px solid var(--primary-color);
        }

        .author-bio h4 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .author-credentials {
            color: var(--gray-600);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .author-social {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
        }

        .author-social a {
            color: var(--gray-500);
            font-size: 1.125rem;
            transition: var(--transition);
        }

        .author-social a:hover {
            color: var(--primary-color);
        }

        .related-articles {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .related-article {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--gray-200);
        }

        .related-article:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .related-article img {
            border-radius: 8px;
            flex-shrink: 0;
        }

        .related-content h5 {
            font-size: 0.95rem;
            line-height: 1.4;
            margin-bottom: 0.25rem;
        }

        .related-content a {
            color: var(--dark-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .related-content a:hover {
            color: var(--primary-color);
        }

        .related-date {
            font-size: 0.8rem;
            color: var(--gray-500);
        }

        .newsletter-widget {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
        }

        .newsletter-widget .widget-title {
            color: white;
            border-bottom-color: rgba(255, 255, 255, 0.3);
        }

        .sidebar-newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .sidebar-newsletter-form input {
            padding: 0.75rem;
            border: none;
            border-radius: var(--border-radius);
            font-size: 0.95rem;
        }

        .sidebar-newsletter-form button {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 0.75rem;
            border-radius: var(--border-radius);
            font-weight: 500;
        }

        @media (max-width: 992px) {
            .article-sidebar {
                position: static;
                margin-top: 3rem;
            }

            .article-meta {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }

            .article-stats {
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }

            .article-subtitle {
                font-size: 1.125rem;
            }

            .superfood-item {
                flex-direction: column;
                text-align: center;
            }

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

            .social-share {
                justify-content: center;
                flex-wrap: wrap;
            }

            .content-wrapper {
                padding: 1.5rem;
            }
        }


        .legal-header {
            padding: 8rem 0 4rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f8f4 100%);
            text-align: center;
        }

        .legal-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
        }

        .legal-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .legal-subtitle {
            font-size: 1.125rem;
            color: var(--gray-600);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .legal-description {
            font-size: 1.125rem;
            color: var(--gray-600);
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .legal-content {
            padding: 4rem 0;
            background: white;
        }

        .legal-document {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--box-shadow-lg);
            line-height: 1.7;
        }

        .legal-section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--gray-200);
        }

        .legal-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .legal-section h2 {
            color: var(--dark-color);
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-color);
        }

        .legal-section h3 {
            color: var(--dark-color);
            font-size: 1.25rem;
            font-weight: 600;
            margin: 1.5rem 0 1rem;
        }

        .legal-section h4 {
            color: var(--dark-color);
            font-size: 1.125rem;
            font-weight: 600;
            margin: 1rem 0 0.5rem;
        }

        .legal-section p {
            color: var(--gray-700);
            margin-bottom: 1rem;
        }

        .legal-section ul, .legal-section ol {
            color: var(--gray-700);
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }

        .legal-section li {
            margin-bottom: 0.5rem;
        }

        .legal-section a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .legal-section a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .responsible-info {
            background: var(--gray-100);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-top: 1rem;
        }

        .responsible-info p {
            margin-bottom: 0.5rem;
        }

        .purpose-item {
            background: var(--gray-100);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary-color);
        }

        .retention-table {
            background: var(--gray-100);
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-top: 1rem;
        }

        .retention-row {
            display: flex;
            padding: 1rem;
            border-bottom: 1px solid var(--gray-300);
        }

        .retention-row:last-child {
            border-bottom: none;
        }

        .retention-type {
            flex: 1;
            font-weight: 600;
            color: var(--dark-color);
        }

        .retention-period {
            flex: 1;
            color: var(--gray-700);
        }

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

        .right-item {
            background: var(--gray-100);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid rgba(40, 167, 69, 0.1);
        }

        .right-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
        }

        .rights-exercise {
            background: rgba(40, 167, 69, 0.1);
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
            margin-top: 2rem;
        }

        .security-measures {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .security-item {
            background: var(--gray-100);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
        }

        .security-item i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .cookie-types {
            background: var(--gray-100);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-top: 1rem;
        }

        .authority-info {
            background: var(--gray-100);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-top: 1rem;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: var(--gray-100);
            padding: 1.5rem;
            border-radius: var(--border-radius);
        }

        .contact-method i {
            color: var(--primary-color);
            font-size: 1.25rem;
            margin-top: 0.25rem;
        }

        .legal-footer {
            background: var(--gray-100);
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin-top: 2rem;
        }

        .legal-footer p {
            margin-bottom: 0.5rem;
        }

        .effective-notice {
            font-style: italic;
            color: var(--gray-600);
        }

        .legal-navigation {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

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

        .legal-nav-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--box-shadow);
            text-align: center;
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
            border: 1px solid rgba(40, 167, 69, 0.1);
        }

        .legal-nav-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow-lg);
            color: inherit;
            text-decoration: none;
        }

        .legal-nav-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .legal-nav-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .legal-nav-card p {
            color: var(--gray-600);
            margin: 0;
        }

        @media (max-width: 768px) {
            .legal-header {
                padding: 6rem 0 3rem;
            }

            .legal-title {
                font-size: 2rem;
            }

            .legal-document {
                padding: 2rem;
            }

            .legal-section h2 {
                font-size: 1.5rem;
            }

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

            .security-measures {
                grid-template-columns: 1fr;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }

            .legal-nav-cards {
                grid-template-columns: 1fr;
            }

            .retention-row {
                flex-direction: column;
                gap: 0.5rem;
            }
        }