/* ==================================================
   MEDICORP
   GLOBAL STYLES
   VERSION 1.0
================================================== */


/* ==================================================
   GOOGLE FONTS
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');


/* ==================================================
   ROOT VARIABLES
================================================== */

:root {

    /* Brand */

    --primary-color: #0E4B87;
    --primary-dark: #08345F;
    --primary-light: #EAF4FD;

    --secondary-color: #27A6D9;

    --accent-color: #00C389;

    /* Neutral */

    --white: #FFFFFF;
    --black: #111827;

    --text-color: #374151;
    --text-light: #6B7280;

    --border-color: #E5E7EB;

    --bg-light: #F8FAFC;
    --bg-gray: #F3F6F9;

    /* Typography */

    --font-primary: 'Inter', sans-serif;

    --h1-size: 4rem;
    --h2-size: 3rem;
    --h3-size: 1.5rem;

    --body-size: 1rem;
    --small-size: .875rem;

    /* Radius */

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    /* Shadows */

    --shadow-sm: 0 8px 20px rgba(0,0,0,.05);

    --shadow-md: 0 15px 40px rgba(0,0,0,.08);

    --shadow-lg: 0 25px 60px rgba(0,0,0,.12);

    /* Container */

    --container-width: 1280px;

    /* Transition */

    --transition: all .3s ease;

}


/* ==================================================
   RESET
================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--font-primary);

    font-size:var(--body-size);

    line-height:1.7;

    color:var(--text-color);

    background:var(--white);

    overflow-x:hidden;
}

img{

    max-width:100%;

    display:block;
}

a{

    text-decoration:none;

    transition:var(--transition);
}

ul{
    list-style:none;
}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;
}

input,
textarea,
select{

    font-family:inherit;
}


/* ==================================================
   CONTAINER
================================================== */

.container{

    width:100%;

    max-width:var(--container-width);

    margin:0 auto;

    padding-left:20px;

    padding-right:20px;
}


/* ==================================================
   SECTIONS
================================================== */

section{

    padding:100px 0;
}


/* ==================================================
   TYPOGRAPHY
================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--black);

    line-height:1.2;

    font-weight:700;
}

h1{

    font-size:var(--h1-size);

    margin-bottom:25px;
}

h2{

    font-size:var(--h2-size);

    margin-bottom:20px;
}

h3{

    font-size:var(--h3-size);
}

p{

    margin-bottom:20px;
}


/* ==================================================
   SECTION HEADING
================================================== */

.section-heading{

    text-align:center;

    max-width:850px;

    margin:0 auto 60px auto;
}

.section-heading h2{

    margin-bottom:20px;
}

.section-heading p{

    color:var(--text-light);
}


/* ==================================================
   BADGE
================================================== */

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:var(--primary-light);

    color:var(--primary-color);

    padding:10px 18px;

    border-radius:999px;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:20px;
}


/* ==================================================
   BUTTONS
================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 30px;

    border-radius:999px;

    font-weight:600;

    transition:var(--transition);
}

.btn-primary{

    background:var(--primary-color);

    color:var(--white);
}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);
}

.btn-secondary{

    border:2px solid var(--primary-color);

    color:var(--primary-color);
}

.btn-secondary:hover{

    background:var(--primary-color);

    color:var(--white);
}


/* ==================================================
   HEADER
================================================== */

.site-header{

    position:sticky;

    top:0;

    z-index:1000;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    border-bottom:1px solid var(--border-color);
}

.header-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:90px;
}

.site-logo img{

    max-height:60px;
}

.main-nav .nav-menu{

    display:flex;

    align-items:center;

    gap:35px;
}

.main-nav a{

    color:var(--black);

    font-weight:500;
}

.main-nav a:hover{

    color:var(--primary-color);
}

.header-cta{

    background:var(--primary-color);

    color:var(--white);

    padding:14px 24px;

    border-radius:999px;

    font-weight:600;
}

.header-cta:hover{

    background:var(--primary-dark);
}

.mobile-menu-toggle{

    display:none;
}


/* ==================================================
   DROPDOWN
================================================== */

.has-submenu{

    position:relative;
}

.submenu{

    position:absolute;

    top:100%;

    left:0;

    min-width:280px;

    background:var(--white);

    border-radius:var(--radius-md);

    box-shadow:var(--shadow-md);

    padding:15px 0;

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:var(--transition);
}

.has-submenu:hover .submenu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

.submenu li{

    width:100%;
}

.submenu a{

    display:block;

    padding:12px 20px;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer{

    background:var(--primary-dark);

    color:rgba(255,255,255,.8);
}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;
}

.footer-column h3{

    color:var(--white);

    margin-bottom:20px;
}

.footer-column ul li{

    margin-bottom:12px;
}

.footer-column a{

    color:rgba(255,255,255,.8);
}

.footer-column a:hover{

    color:var(--white);
}

.footer-brand img{

    max-width:220px;

    margin-bottom:20px;
}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:60px;

    padding:25px 0;
}

.footer-bottom-content{

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.footer-bottom a{

    color:rgba(255,255,255,.8);

    margin-left:20px;
}


/* ==================================================
   WHATSAPP FLOATING
================================================== */

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:999;

    background:#25D366;

    color:#fff;

    padding:16px 24px;

    border-radius:999px;

    font-weight:700;

    box-shadow:var(--shadow-lg);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width:991px){

    h1{
        font-size:3rem;
    }

    h2{
        font-size:2.3rem;
    }

    .main-nav{
        display:none;
    }

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

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media (max-width:768px){

    section{
        padding:80px 0;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom-content{

        flex-direction:column;

        gap:15px;

        text-align:center;
    }

}

@media (max-width:576px){

    h1{
        font-size:2.4rem;
    }

    h2{
        font-size:2rem;
    }

}
```
