.elementor-2108 .elementor-element.elementor-element-f48efe3{--display:flex;--justify-content:center;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;--z-index:999;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-fd73be5 *//* Header Fixo */
        .topo { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);}

        header {
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c4a7c;
            text-decoration: none;
        }

        .logo img {
            width: 200px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .nav-links > li > a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #2c4a7c;
            transition: width 0.3s ease;
        }

        .nav-links > li > a:hover {
            color: #2c4a7c;
        }

        .nav-links > li > a:hover::after {
            width: 100%;
        }

        /* Dropdown Desktop */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            cursor: pointer;
        }

        .dropdown-toggle .arrow {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .dropdown.active .arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 15px);
            left: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu a {
            display: block;
            padding: 0.9rem 1.5rem;
            color: #4a5568;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-menu li:first-child a {
            border-radius: 12px 12px 0 0;
        }

        .dropdown-menu li:last-child a {
            border-bottom: none;
            border-radius: 0 0 12px 12px;
        }

        .dropdown-menu a:hover {
            background: rgba(44, 74, 124, 0.08);
            color: #2c4a7c;
            padding-left: 2rem;
        }

        .cta-button {
            background: linear-gradient(135deg, #2c4a7c 0%, #3d5a8f 100%);
            color: white;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(44, 74, 124, 0.3);
            white-space: nowrap;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(44, 74, 124, 0.4);
        }

        /* Menu Mobile */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2c4a7c;
            cursor: pointer;
            z-index: 1001;
            padding: 0.5rem;
            line-height: 1;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
            padding: 5rem 2rem 2rem;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-close-btn {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: rgba(44, 74, 124, 0.1);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.5rem;
            color: #2c4a7c;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .mobile-menu > ul > li {
            border-bottom: 1px solid #e2e8f0;
        }

        .mobile-menu > ul > li > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            color: #4a5568;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1.2rem 0;
            transition: all 0.3s ease;
        }

        .mobile-menu > ul > li > a:hover {
            color: #2c4a7c;
            padding-left: 0.5rem;
        }

        /* Dropdown Mobile */
        .mobile-dropdown-toggle {
            cursor: pointer;
        }

        .mobile-dropdown-toggle .mobile-arrow {
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .mobile-menu .dropdown.active .mobile-arrow {
            transform: rotate(180deg);
        }

        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: rgba(44, 74, 124, 0.04);
            margin: 0.5rem 0;
            border-radius: 8px;
        }

        .mobile-menu .dropdown.active .mobile-dropdown-menu {
            max-height: 500px;
        }

        .mobile-dropdown-menu li {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .mobile-dropdown-menu li:last-child {
            border-bottom: none;
        }

        .mobile-dropdown-menu a {
            display: block;
            padding: 1rem 1.5rem;
            color: #4a5568;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .mobile-dropdown-menu a:hover {
            color: #2c4a7c;
            background: rgba(44, 74, 124, 0.08);
            padding-left: 2rem;
        }

        .mobile-menu .cta-button {
            display: block;
            margin-top: 2rem;
            text-align: center;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
        }

        /* Responsive Mobile */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .overlay {
                display: block;
            }

            .mobile-menu {
                display: block;
            }

            nav {
                padding: 1rem 1.5rem;
            }

            .nav-links,
            nav .cta-button {
                display: none;
            }

            .logo img {
                width: 160px;
            }
        }
        
       

        /* Hero Section */
        .hero {
            min-height: 400px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding: 4rem 2rem;
            position: relative;
        }

        /* Elementos decorativos de fundo */
        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(61, 90, 143, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }
        .floating-card {
            position: absolute;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            z-index: 3;
            animation: float 6s ease-in-out infinite;  /* ← ADICIONAR ESTA LINHA */
        }
        .card-1 {
            top: 10%;
            right: -10%;
            animation-delay: 0s;  /* ← ADICIONAR */
        }
        
        .card-2 {
            bottom: 15%;
            left: -15%;
            animation-delay: 2s;  /* ← ADICIONAR (delay diferente) */
        }
        
        .card-3 {
            top: 50%;
            right: -15%;
            animation-delay: 4s;  /* ← ADICIONAR (delay diferente) */
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(61, 90, 143, 0.1);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            color: #2c4a7c;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .badge::before {
            content: '✨';
        }

        h1 {
            font-size: 3.5rem;
            color: #1a202c;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        h1 .highlight {
            background: linear-gradient(135deg, #2c4a7c 0%, #df4336 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #718096;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            max-width: 550px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #2c4a7c 0%, #3d5a8f 100%);
            color: white;
            padding: 1.1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 25px rgba(44, 74, 124, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(44, 74, 124, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #2c4a7c;
            padding: 1.1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: #2c4a7c;
            background: rgba(44, 74, 124, 0.05);
        }

        /* Hero Image */
        .hero-image {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .circle-bg {
            position: absolute;
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, rgba(223, 67, 54, 0.12) 0%, rgba(61, 90, 143, 0.12) 100%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .doctor-image {
            position: relative!important;
            width: 450px;
            height: 450px;
            border-radius: 50%!important;
            object-fit: cover!important;
            border: 8px solid white;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15)!important;
            z-index: 2!important;
        }

        /* Floating cards */
        .floating-card {
            position: absolute;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            z-index: 3;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2c4a7c 0%, #3d5a8f 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .card-text {
            display: flex;
            flex-direction: column;
        }

        .card-text strong {
            font-size: 1.1rem;
            color: #1a202c;
        }

        .card-text small {
            font-size: 0.85rem;
            color: #718096;
        }

        .card-1 {
            top: 10%;
            right: -10%;
        }

        .card-2 {
            bottom: 15%;
            left: -15%;
        }

        .card-3 {
            top: 50%;
            right: -15%;
        }

        /* Categories Navigation */
        .categories-nav {
            background: linear-gradient(135deg, #2c4a7c 0%, #3d5a8f 100%);
            border-radius: 25px;
            padding: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: -20px auto 4rem;
            position: relative;
            z-index: 10;
            box-shadow: 0 15px 50px rgba(44, 74, 124, 0.3);
        }

        .category-item {
            text-align: center;
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .category-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .category-item i {
            font-size: 2rem;
            font-style: normal;
        }

        .category-item span {
            font-weight: 600;
            font-size: 1rem;
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Responsive Tablet */
        @media (max-width: 1200px) {
            .categories-nav {
                margin-left: 2rem;
                margin-right: 2rem;
            }
        }

        @media (max-width: 1024px) {
            nav {
                padding: 1rem 2rem;
            }

            .hero {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 3rem 2rem;
            }

            h1 {
                font-size: 2.8rem;
            }

            .doctor-image {
                width: 400px;
                height: 400px;
            }

            .circle-bg {
                width: 450px;
                height: 450px;
            }

            .categories-nav {
                margin: -30px 2rem 3rem;
                padding: 1.5rem;
                gap: 1rem;
            }
        }

        /* Responsive Mobile */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .topo header {
               position: fixed;
            }
            .overlay {
                display: block;
            }

            .mobile-menu {
                display: block;
            }

            nav {
                padding: 1rem 1.5rem;
            }

            .nav-links,
            nav .cta-button {
                display: none;
            }

            .logo {
                font-size: 1.1rem;
            }
           .post {
                margin-top: 120px;
           }
            .hero  {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 2rem 1.5rem;
                gap: 2rem;
                margin-top: 90px;
            }

            .hero-content {
                order: 2;
            }

            .hero-image {
                order: 1;
            }

            .badge {
                font-size: 0.8rem;
                padding: 0.5rem 1rem;
            }

            h1 {
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }

            .subtitle {
                font-size: 1rem;
                margin: 0 auto 2rem;
                max-width: 100%;
            }

            .hero-buttons {
                justify-content: center;
                flex-direction: column;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 1rem 2rem;
            }

            .doctor-image {
                width: 320px;
                height: 320px;
            }

            .circle-bg {
                width: 370px;
                height: 370px;
            }

            .floating-card {
                padding: 0.8rem 1rem;
            }

            .card-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .card-text strong {
                font-size: 0.95rem;
            }

            .card-text small {
                font-size: 0.75rem;
            }

            .card-1 {
                top: 5%;
                right: 0;
            }

            .card-2 {
                bottom: 10%;
                left: 0;
            }

            .card-3 {
                display: none;
            }

            .categories-nav {
                grid-template-columns: repeat(2, 1fr);
                margin: -20px 1.5rem 2rem;
                padding: 1.5rem 1rem;
                gap: 0.8rem;
            }

            .category-item {
                padding: 1rem 0.5rem;
            }

            .category-item i {
                font-size: 1.8rem;
            }

            .category-item span {
                font-size: 0.9rem;
            }

            .hero::before {
                width: 400px;
                height: 400px;
                top: -10%;
            }
        }

        /* Mobile Pequeno */
        @media (max-width: 480px) {
            h1 {
                font-size: 1.9rem;
            }

            .doctor-image {
                width: 280px;
                height: 280px;
            }

            .circle-bg {
                width: 330px;
                height: 330px;
            }

            .floating-card {
                font-size: 0.85rem;
                padding: 0.6rem 0.8rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 0.9rem 1.5rem;
                font-size: 0.95rem;
            }

            .categories-nav {
                gap: 0.6rem;
                padding: 1.2rem 0.8rem;
            }
        }/* End custom CSS */