
    /* ================================
	   MODERN CLEAN COSMETICA DENTARA TEMPLATE
	   Matches Chirurgie Orala visual style
	================================ */

    /* General Layout */
.wp-template-cosmetica-dentara-content {
    padding: 60px 0;
    min-height: 100vh;
}

.wp-template-cosmetica-dentara-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Intro Section (Gradient like Experience) */
.wp-template-cosmetica-dentara-intro {
    background: linear-gradient(135deg,
    rgba(var(--color-primary), 0.95) 0%,
    rgba(var(--color-secondary), 0.85) 100%);
    color: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(var(--color-primary), 0.15);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
}

.wp-template-cosmetica-dentara-intro:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(var(--color-primary), 0.25);
}

.wp-template-cosmetica-dentara-intro h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.wp-template-cosmetica-dentara-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: rgba(var(--color-white), 0.8);
    border-radius: 2px;
}

.wp-template-cosmetica-dentara-intro p {
    font-size: 1.3em;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
    margin-bottom: 30px;
}

/* Procedures Section (White Card) */
.wp-template-cosmetica-dentara-procedures {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    animation: fadeInUp 0.7s ease-out;
}

.wp-template-cosmetica-dentara-procedures:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.wp-template-cosmetica-dentara-procedures h3 {
    color: rgba(var(--color-primary), 0.95);
    font-size: 2em;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.wp-template-cosmetica-dentara-procedures h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,
    rgba(var(--color-third), 1),
    rgba(var(--color-secondary), 1));
    border-radius: 2px;
}

.wp-template-cosmetica-dentara-procedures ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
}

.wp-template-cosmetica-dentara-procedures li {
    padding: 20px 25px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid rgba(var(--color-third), 1);
    color: #2d3748;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wp-template-cosmetica-dentara-procedures li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--color-third), 0.1), transparent);
    transition: left 0.5s ease;
}

.wp-template-cosmetica-dentara-procedures li:hover {
    background: white;
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wp-template-cosmetica-dentara-procedures li:hover::before {
    left: 100%;
}

/* Equipment Section (Soft gradient card) */
.wp-template-cosmetica-dentara-equipment {
    background: linear-gradient(135deg,
    rgba(var(--color-third), 0.05) 0%,
    rgba(var(--color-secondary), 0.08) 50%,
    rgba(var(--color-primary), 0.05) 100%);
    border: 1px solid rgba(var(--color-third), 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.wp-template-cosmetica-dentara-equipment p {
    font-size: 1.15em;
    line-height: 1.7;
    color: #4a5568;
    text-align: center;
    font-weight: 500;
}

/* Philosophy Section */
.wp-template-cosmetica-dentara-philosophy {
    background: linear-gradient(135deg, #fff 0%, #f7fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    animation: fadeInUp 0.9s ease-out;
}

.wp-template-cosmetica-dentara-philosophy p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #2d3748;
    text-align: center;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .wp-template-cosmetica-dentara-content .container {
        padding: 0 15px;
    }
    .wp-template-cosmetica-dentara-intro,
    .wp-template-cosmetica-dentara-procedures,
    .wp-template-cosmetica-dentara-equipment,
    .wp-template-cosmetica-dentara-philosophy {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .wp-template-cosmetica-dentara-intro h2 {
        font-size: 2em;
    }
    .wp-template-cosmetica-dentara-procedures ul {
        grid-template-columns: 1fr;
    }
    .wp-template-cosmetica-dentara-procedures li {
        padding: 20px;
    }
}
