 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* HERO SECTION */
        .hero {
            height: 110vh;
            background: linear-gradient(135deg, #F2BABB 0%, #CA5985 50%, #AB1755 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(171, 23, 85, 0.2);
            z-index: 1;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 70%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            position: relative;
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease-out;
        }

        .logo-container {
            margin-bottom: 30px;
            animation: fadeInDown 1.2s ease-out;
        }

        .hero-logo {
            max-width: 300px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }

        .hero-logo:hover {
            transform: scale(1.05);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .hero .credentials {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.8;
        }

        .hero .location {
            font-size: 1.2rem;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, #B79565, #FFFFFF);
            color: #AB1755;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(171, 23, 85, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid #B79565;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(171, 23, 85, 0.4);
            background: linear-gradient(45deg, #AB1755, #CA5985);
            color: #FFFFFF;
            border: 2px solid #FFFFFF;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* GENERAL STYLES */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #AB1755;
            position: relative;
            font-weight: 600;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #CA5985, #B79565);
            border-radius: 2px;
        }

        /* SERVICES SECTION */
        .services {
            padding: 100px 0;
            background: linear-gradient(135deg, #FFFFFF 0%, #F2BABB 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(202, 89, 133, 0.15);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(202, 89, 133, 0.1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(45deg, #CA5985, #B79565);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(202, 89, 133, 0.25);
        }

        .service-icon {
            font-size: 3rem;
            color: #CA5985;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #AB1755;
            font-weight: 600;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        /* PITCH SECTION */
        .pitch {
            padding: 80px 0;
            background: linear-gradient(135deg, #F2BABB 0%, #CA5985 70%, #AB1755 100%);
            color: white;
            text-align: center;
        }

        .pitch h2 {
            font-size: 2.8rem;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-weight: 600;
        }

        .pitch p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.95;
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .benefit {
            background: rgba(255, 255, 255, 0.15);
            padding: 30px 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: transform 0.3s ease;
        }

        .benefit:hover {
            transform: translateY(-5px);
        }

        .benefit i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .benefit h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        /* ABOUT SECTION */
        .about {
            padding: 100px 0;
            background: linear-gradient(135deg, #CA5985 0%, #AB1755 50%, #AB1755 100%);
            color: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .doctor-photo {
            width: 100%;
            max-width: 400px;
            height: 600px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            border: 5px solid rgba(255, 255, 255, 0.3);
            transition: transform 0.3s ease;
        }

        .doctor-photo:hover {
            transform: scale(1.05);
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .credentials-box {
            background: rgba(255, 255, 255, 0.15);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            margin-top: 30px;
        }

        .credentials-box ul {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }

        .credentials-box li {
            margin-bottom: 5px;
        }

        /* CONTACT SECTION */
        .contact {
            padding: 100px 0;
            background: #AB1755;
            color: white;
            text-align: center;
        }

        .contact-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin: 50px 0;
            align-items: start;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            text-align: center;
        }

        .contact-item i {
            font-size: 2rem;
            color: #F2BABB;
        }

        .contact-item h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .contact-item p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .map-container {
            grid-column: 1 / -1;
            width: 100%;
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(171, 23, 85, 0.3);
            margin-top: 20px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 20px 40px;
            background: #25d366;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            margin-top: 40px;
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
            background: #128c7e;
        }
        
        .created-by{
            background: #AB1755;
            color: white;
            text-align: center;
            padding-bottom: 10px ;
        }

      
        
        .created-by a {
          position: relative;
          text-decoration: none;
          color: #fff;
          display: inline-block; /* importante para o transform funcionar melhor */
          transition: transform 0.3s;
          font-size: 12px;
        }
        
        .created-by a:hover {
          transform: translateY(-3px);
        }
        
        
        .created-by a::after {
           content: "";
              position: absolute;
              left: 0;
              bottom: -3px;
              width: 0;
              height: 2px;
              background: #ff0077;
              transition: width 0.3s;

          

        }
        
        .created-by a:hover::after {
          width: 100%;
          
  
        }

        
        

        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .subtitle {
                font-size: 1.1rem;
            }
            
            .hero-logo {
                max-width: 250px;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .doctor-photo {
                max-width: 300px;
                height: 300px;
                margin: 0 auto;
                display: block;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }

            .map-container {
                height: 250px;
                margin-top: 30px;
            }

            .pitch h2 {
                font-size: 2.2rem;
            }

            .pitch p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }