@font-face {
  font-family: 'Frutiger Condensed';
  src: url("/font/FrutigerCondensed.woff2") format("woff2"), url("/font/FrutigerCondensed.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Frutiger Condensed';
  src: url("/font/FrutigerCondensedBold.woff2") format("woff2"), url("/font/FrutigerCondensedBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: 'Frutiger Condensed', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100vh;
  background: linear-gradient(135deg, #2BB2A4 0%, #1E8884 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden; }
  body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1; }

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #000;
  max-width: 600px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(43, 100, 127, 0.6);
  animation: fadeInUp 1s ease-out; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.logo {
  width: 100%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #667eea;
  font-weight: bold;
  font-family: 'Frutiger Condensed', sans-serif;
  transition: transform 0.3s ease; }
  .logo:hover {
    transform: scale(1.05); }
  .logo img {
    width: 60%;
    height: auto; }

.doctor-name {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px; }

.specialty {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: normal;
  letter-spacing: 0.5px; }

.credentials {
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2); }
  .credentials h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #000;
    font-weight: bold; }
  .credentials p {
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.95; }
  .credentials strong {
    font-weight: bold; }

.specialties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 15px; }

.specialty-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 16px;
  border-radius: 25px;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  line-height: 1.2; }
  .specialty-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px); }

.cta-section {
  margin-bottom: 30px; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  letter-spacing: 0.5px; }
  .whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6); }
  .whatsapp-btn i {
    margin-right: 10px;
    font-size: 1.2rem; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px; }

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  color: #2B647F;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2); }
  .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #fff; }
  .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff; }
  .social-link.facebook:hover {
    background: #1877f2; }

.footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  z-index: 2; }

@media (max-width: 768px) {
  body {
    padding: 10px; }

  .container {
    margin: 10px;
    padding: 25px 15px;
    max-width: 95%; }

  .doctor-name {
    font-size: 2.2rem;
    letter-spacing: -0.3px; }

  .specialty {
    font-size: 1.1rem; }

  .logo {
    margin: 0 auto 15px; }

  .credentials {
    padding: 15px;
    margin-bottom: 15px; }
    .credentials h3 {
      font-size: 1.2rem; }
    .credentials p {
      font-size: 1rem; }

  .specialties {
    grid-template-columns: 1fr;
    gap: 8px; }

  .specialty-item {
    padding: 0px 14px;
    font-size: 1rem;
    line-height: 1.0; }

  .social-links {
    gap: 15px; }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.3rem; }

  .whatsapp-btn {
    padding: 14px 28px;
    font-size: 1rem; }

  .footer {
    bottom: 15px;
    font-size: 0.8rem; } }
.floating {
  animation: floating 3s ease-in-out infinite; }

@keyframes floating {
  0%, 100% {
    transform: translateY(0px); }
  50% {
    transform: translateY(-10px); } }
.doctor-name,
.credentials h3,
.whatsapp-btn {
  text-rendering: optimizeLegibility; }

@media (max-width: 480px) {
  .container {
    padding: 20px 12px; }

  .doctor-name {
    font-size: 1.9rem; }

  .specialty {
    font-size: 1rem; }

  .logo {
    margin: 0 auto 15px; }

  .credentials h3 {
    font-size: 1.1rem; }

  .credentials p {
    font-size: 0.9rem; }

  .specialty-item {
    padding: 0px 14px;
    font-size: 1rem;
    line-height: 1.0; }

  .whatsapp-btn {
    padding: 12px 24px;
    font-size: 0.95rem; } }
