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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10rem;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a3d52;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #2a3d52;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: rgba(45, 45, 45, 0.8);
}

.desktop-nav {
    display: none;
}

.desktop-cta {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: #2a3d52;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: #f3f4f6;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
    display: block;
}

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

.mobile-nav a {
    color: #2a3d52;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: rgba(45, 45, 45, 0.8);
}

.mobile-cta {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.btn-primary {
    background-color: #2a3d52;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: rgba(45, 45, 45, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    border: 2px solid #2a3d52;
    color: #2a3d52;
    background: transparent;
}

.btn-secondary:hover {
    background-color: #2a3d52;
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.cta-btn {
    background-color: #2a3d52;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    background-color: rgba(45, 45, 45, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Main Content */
#main-content {
    padding-top: 10rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f7f2ef 0%, white 100%);
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a3d52;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, #2a3d52, rgba(45, 45, 45, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    color: #2a3d52;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.1), rgba(45, 45, 45, 0.05));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.placeholder-icon {
    width: 200px;
    height: 200px;
    background: rgba(45, 45, 45, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.placeholder-icon i {
    width: 4rem;
    height: 4rem;
    color: #2a3d52;
}

.image-placeholder p {
    color: #2a3d52;
    font-weight: 500;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a3d52;
    margin-bottom: 1rem;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background-color: #2a3d52;
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.about-text strong {
    color: #2a3d52;
    font-weight: 600;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f7f2ef;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #2a3d52;
    font-weight: 600;
}

.specialties {
    margin-top: 1.5rem;
}

.specialties h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2a3d52;
    margin-bottom: 1rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.specialty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
}

.specialty i {
    color: #2a3d52;
    width: 1rem;
    height: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

/* Procedures Section */
.procedures {
    background: #f7f2ef;
}

.procedures-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.procedure-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.procedure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.procedure-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(45, 45, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background-color 0.3s ease;
}

.procedure-card:hover .procedure-icon {
    background: rgba(45, 45, 45, 0.2);
}

.procedure-icon i {
    width: 2rem;
    height: 2rem;
    color: #2a3d52;
}

.procedure-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2a3d52;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.procedure-card:hover h3 {
    color: rgba(45, 45, 45, 0.8);
}

.procedure-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonials-container {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #f7f2ef, white);
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: none;
    position: relative;
    overflow: hidden;
}

.testimonial-card.active {
    display: block;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23677580' opacity='0.2' viewBox='0 0 24 24'%3E%3Cpath d='M14 17h3l2-4V7h-6v6h3M6 17h3l2-4V7H5v6h3l-2 4z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star-filled {
    color: #fbbf24;
    width: 1.5rem;
    height: 1.5rem;
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2a3d52;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #6b7280;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2a3d52;
}

.testimonial-nav:hover {
    background: #f9fafb;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-nav.prev {
    left: -1rem;
}

.testimonial-nav.next {
    right: -1rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2a3d52;
    width: 2rem;
    border-radius: 1rem;
}

.dot:hover {
    background: #9ca3af;
}

/* Blog Section */
.blog {
    background: #f7f2ef;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.meta-item i {
    width: 1rem;
    height: 1rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2a3d52;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: rgba(45, 45, 45, 0.8);
}

.blog-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2a3d52;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-card:hover .read-more {
    color: rgba(45, 45, 45, 0.8);
}

.read-more i {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(0.25rem);
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a3d52;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f7f2ef;
    border-radius: 0.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(45, 45, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: #2a3d52;
}

.contact-item h4 {
    font-weight: 600;
    color: #2a3d52;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

.contact-form {
    background: #f7f2ef;
    border-radius: 1rem;
    padding: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #2a3d52;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a3d52;
    box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #2a3d52;
    color: white;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-credentials .credential {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.footer-contact .contact-item {
    background: transparent;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-contact .contact-item i {
    color: white;
    width: 1rem;
    height: 1rem;
}

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

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

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /*box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);*/
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    background: #374151;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.blog-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
}

.blog-modal-content {
    background: white;
    border-radius: 1rem;
    max-width: 64rem;
    width: 100%;
    position: relative;
    margin: 2rem 0;
}

.blog-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.blog-modal-close:hover {
    background: #e5e7eb;
}

.blog-modal-close i {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
}

#blog-post-content {
    padding: 2rem;
}

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a3d52;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.blog-post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.blog-post-meta .meta-item i {
    width: 1rem;
    height: 1rem;
}

.blog-post-image {
    margin-bottom: 2rem;
}

.blog-post-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-post-content {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
}

.blog-post-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a3d52;
    margin: 2rem 0 1rem;
}

.blog-post-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2a3d52;
    margin: 1.5rem 0 0.75rem;
}

.blog-post-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2a3d52;
    margin: 1rem 0 0.5rem;
}

.blog-post-content p {
    margin-bottom: 1rem;
}

.blog-post-content ul {
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 1rem;
}

.blog-post-content ul li {
    margin-bottom: 0.5rem;
}

.blog-post-content strong {
    font-weight: 600;
    color: #2a3d52;
}

.blog-post-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f7f2ef, white);
    border-radius: 1rem;
    border: 1px solid rgba(45, 45, 45, 0.1);
    text-align: center;
}

.blog-post-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a3d52;
    margin-bottom: 1rem;
}

.blog-post-cta p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .procedures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .desktop-cta {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .trust-indicators {
        justify-content: flex-start;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonial-nav.prev {
        left: -2rem;
    }
    
    .testimonial-nav.next {
        right: -2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .procedures-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}