/*==========================================================
    DROGARIA VIRGÍNIA
    STYLE.CSS v3.0
==========================================================*/

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

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

/*==========================================================
    VARIÁVEIS
==========================================================*/

:root{

    --primary:#C8102E;
    --primary-dark:#A30D24;
    --secondary:#F5C400;

    --success:#25D366;

    --text:#444444;
    --title:#222222;

    --light:#FAF8F4;
    --white:#FFFFFF;

    --radius:18px;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --transition:.30s ease;

}

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

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#FAF8F4;

    color:var(--text);

    font-size:17px;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

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

.container{

    max-width:1320px;

}

/*==========================================================
    TÍTULOS
==========================================================*/

h1,
h2,
h3,
h4,
h5{

    color:var(--title);

    font-weight:700;

}

h2{

    font-size:42px;

    margin-bottom:18px;

}

/*==========================================================
    ESPAÇAMENTO DAS SEÇÕES
==========================================================*/

section{

    padding:60px 0;

}

/*==========================================================
    TÍTULO DAS SEÇÕES
==========================================================*/

.section-title{

    text-align:center;

    margin-bottom:40px;

}

.section-title h2{

    font-size:40px;

    font-weight:700;

    margin-bottom:12px;

    position:relative;

    display:inline-block;

}

.section-title h2::after{

    content:"";

    display:block;

    width:70px;

    height:4px;

    background:#C8102E;

    border-radius:10px;

    margin:12px auto 0;

}

.section-title p{

    max-width:650px;

    margin:18px auto 0;

    color:#666;

    font-size:17px;

    line-height:1.7;

}

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

header{

    background:#ffffff;

    position:sticky;

    top:0;

    z-index:9999;

    box-shadow:0 3px 18px rgba(0,0,0,.08);

}

/*==========================================================
    NAVBAR
==========================================================*/

.navbar{

    min-height:72px;
    padding:8px 0;
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
    transition:all .3s ease;

}

.navbar-brand{

    padding:0;

}

.navbar-brand img{

    width:190px;
    height:auto;
    display:block;

}

.logo{

    width:190px;
    transition:var(--transition);

}

.logo:hover{

    transform:scale(1.03);

}


/*==========================================================
    MENU
==========================================================*/

.navbar-nav{

    gap:12px;

}

.navbar-nav .nav-link{

    color:#444 !important;

    font-size:16px;

    font-weight:600;

    letter-spacing:.2px;

    padding:10px 18px;

    border-radius:30px;

    transition:all .25s ease;

}

.navbar-nav .nav-link:hover{

    color:#C8102E !important;

    background:rgba(200,16,46,.08);

    transform:translateY(-2px);

}

.navbar-nav .nav-link.active{

    background:#C8102E;

    color:#fff !important;

    box-shadow:0 6px 16px rgba(200,16,46,.25);

}

/*==========================================================
    BOTÕES
==========================================================*/

.btn{

    border-radius:50px;

    font-weight:600;

    padding:13px 28px;

    transition:all .3s ease;

}

.btn-danger{

    background:linear-gradient(135deg,#C8102E,#A30D24);

    border:none;

    box-shadow:0 8px 18px rgba(200,16,46,.25);

}

.btn-danger:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

    box-shadow:0 12px 24px rgba(200,16,46,.35);

}

.btn-warning{

    background:var(--secondary);

    border:none;

    color:#222;

}

.btn-warning:hover{

    background:#FFD740;

    transform:translateY(-2px);

}

.btn-success{

    background:var(--success);

    border:none;

    box-shadow:0 8px 18px rgba(40,167,69,.25);

}

.btn-success:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 24px rgba(40,167,69,.35);

}

/*==========================================================
    BANNER
==========================================================*/

#bannerPrincipal{

    background:#ffffff;

    padding:25px 0 50px;

}

#carouselPrincipal{

    max-width:1536px;

    margin:auto;

}

.carousel-inner{

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.carousel-item img{

    width:100%;

    height:auto;

    display:block;

}

/*==========================================================
    UTILIDADES
==========================================================*/

.text-danger{

    color:var(--primary)!important;

}

.bg-light{

    background:#F7F8FA!important;

}

.rounded{

    border-radius:18px!important;

}

.shadow{

    box-shadow:var(--shadow)!important;
}

.card{

    border:none;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

}

p{

    color:#666;

}

/*==========================================================
    QUEM SOMOS
==========================================================*/

#sobre{

    background:#ffffff;

}

#sobre .row{

    align-items:center;

    min-height:500px;

}

#sobre h2{

    font-size:46px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:25px;

}

#sobre p{

    font-size:18px;

    color:#555;

    margin-bottom:20px;

}

#sobre img{

    width:100%;

    max-width:520px;

    margin:auto;

    border-radius:20px;

    box-shadow:var(--shadow);

}

/*==========================================================
    TÍTULOS DAS SEÇÕES
==========================================================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    color:var(--primary);

    font-size:42px;

    margin-bottom:10px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

}

/*==========================================================
    LOJAS
==========================================================*/

#lojas{

    background:var(--light);

}

#lojas .card{

    overflow:hidden;

    border-radius:22px;

}

#lojas .card{

    overflow:hidden;

}

#lojas .card img{

    width:100%;
    height:520px;
    object-fit:cover;
    transition:.4s;

}

#lojas .card:hover img{

    transform:scale(1.05);

}

#lojas .card-body{

    padding:35px;

}

#lojas h4{

    color:var(--primary);

    font-size:28px;

    margin-bottom:20px;

}

#lojas ul{

    list-style:none;

    padding:0;

    margin:25px 0;

}

#lojas li{

    margin-bottom:15px;

    color:#555;

    font-size:17px;

}

#lojas li i{

    color:var(--primary);

    width:28px;

}

#lojas .btn{

    width:100%;

}


/*==========================================================
    FARMÁCIA POPULAR + IFOOD
==========================================================*/

.promocoes{

    background:#F7F8FA;
    padding:60px 0;

}

.promo-box{

    background:linear-gradient(135deg,#C8102E,#8B001C);
    border-radius:22px;
    padding:35px;
    min-height:240px;

    display:flex;
    align-items:center;

    color:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    transition:var(--transition);

}

.promo-box:hover{

    transform:translateY(-6px);

}

.promo-box .row{

    align-items:center;
    width:100%;

}

.promo-box img{

    max-width:180px;
    width:100%;
    display:block;
    margin:auto;

}

.promo-tag{

    display:block;

    color:#FFD84A;

    font-size:12px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:8px;

}

.promo-box h3{

    color:#fff;

    font-size:34px;

    margin-bottom:12px;

}

.promo-box p{

    color:#fff;

    opacity:.95;

    font-size:15px;

    line-height:1.7;

    min-height:99px;

    margin-bottom:20px;

}
.promo-box .btn{

    border-radius:40px;

    padding:11px 28px;

    font-weight:700;

}

/*==========================================================
    SERVIÇOS
==========================================================*/

#servicos{

    background:#ffffff;

}

#servicos .card{

    text-align:center;

    padding:40px 25px;

    height:100%;

}

#servicos .card:hover{

    transform:translateY(-12px);

}

#servicos i{

    font-size:54px;

    color:var(--primary);

    margin-bottom:25px;

}

#servicos h4{

    font-size:24px;

    margin-bottom:15px;

}

#servicos p{

    color:#666;

    font-size:16px;

}

/*==========================================================
    NÚMEROS
==========================================================*/

#numeros{

    background:#F8F8F8;

}

#numeros .item{

    text-align:center;

    padding:25px;

}

#numeros h2{

    font-size:56px;

    color:var(--primary);

    margin-bottom:10px;

}

#numeros p{

    font-size:18px;

    color:#555;

}

/*==========================================================
    NOTÍCIAS
==========================================================*/

#noticias{

    background:#F3F1EC;

}

#noticias .card{

    overflow:hidden;

    height:100%;

}

#noticias .card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

#noticias .card-body{

    padding:30px;

}

#noticias h4{

    color:var(--primary);

    margin-bottom:15px;

}

#noticias p{

    color:#666;

    margin-bottom:20px;

}

/*==========================================================
    NEWSLETTER
==========================================================*/

#newsletter{

    background:linear-gradient(135deg,#C8102E,#8F001C);

    color:#fff;

}

#newsletter h2{

    color:#fff;

}

#newsletter p{

    color:#fff;

}

#newsletter .form-control{

    height:58px;

    border:none;

    border-radius:40px;

    padding-left:22px;

}

#newsletter .btn{

    height:58px;

    border-radius:40px;

}

/*==========================================================
    GALERIA
==========================================================*/

#galeria{

    background:#ffffff;

}

#galeria img{

    border-radius:18px;

    transition:.35s;

}

#galeria img:hover{

    transform:scale(1.04);

}

/*==========================================================
    CONTATO
==========================================================*/

#contato{

    background:#F7F8FA;

}

#contato .card{

    padding:35px;

    height:100%;

}

#contato h3{

    color:var(--primary);

    margin-bottom:20px;

}

#contato p{

    margin-bottom:15px;

}

#contato iframe{

    width:100%;

    min-height:380px;

    border:none;

    border-radius:18px;

}

/*==========================================================
    REDES SOCIAIS
==========================================================*/

.social-icons{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:30px;

}

.social-icons a{

    width:56px;

    height:56px;

    border-radius:50%;

    background:linear-gradient(135deg,#C8102E,#A30D24);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.social-icons a:hover{

    background:var(--secondary);

    color:#222;

    transform:translateY(-4px);

}

/*==========================================================
    RODAPÉ
==========================================================*/

footer{

    background:#20252B;
    color:#ddd;
    padding:22px 0 10px;

}

footer .logo-footer{

    width:150px;
    margin-bottom:8px;

}

footer h5{

    color:#fff;
    margin-bottom:8px;
    font-size:18px;

}

.social-subtitle{

    font-size:12px;
    color:rgba(255,255,255,.70);
    margin-bottom:2px;
    line-height:1.2;

}

footer p{

    margin-bottom:6px;
    line-height:1.5;
    font-size:15px;

}

footer ul{

    list-style:none;
    padding:0;
    margin:0;

}

footer ul li{

    margin-bottom:4px;

}

footer a{

    color:#ddd;

}

footer a:hover{

    color:var(--secondary);

}

footer hr{

    border-color:#444;
    margin:12px 0 8px;

}

footer .copyright{

    color:#999;
    font-size:14px;

}

/*==========================================================
    BOTÕES FLUTUANTES
==========================================================*/

.whatsapp-float,
.ifood-float{

    position:fixed;

    right:25px;

    width:62px;

    height:62px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 30px rgba(0,0,0,.20);

    z-index:999;

    transition:.30s;

}

.whatsapp-float{

    bottom:25px;

    background:#25D366;

    color:#fff;

}

.ifood-float{

    bottom:100px;

    background:#EA1D2C;

    color:#fff;

}

.whatsapp-float:hover,
.ifood-float:hover{

    transform:scale(1.08);

}

.ifood-float img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

/*==========================================================
    ANIMAÇÕES
==========================================================*/

.card,
.btn,
img{

    transition:all .30s ease;

}


/*==========================================================
    RSS NOTÍCIAS
==========================================================*/

.news-icon{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f8f9fa;

    border-bottom:1px solid #ececec;

}

.news-icon i{

    font-size:42px;

    color:#C8102E;

}

#noticias .card{

    border:none;

    border-radius:16px;

    overflow:hidden;

    transition:.3s;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

#noticias .card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

#noticias h4{

    font-size:1.1rem;

    line-height:1.4;

    min-height:65px;

}

#noticias small{

    color:#777;

    font-size:.85rem;

}

/*==========================================================
    LINK DAS NOTÍCIAS
==========================================================*/

.news-link{

    color:#C8102E;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    transition:.3s;

}

.news-link:hover{

    color:#8f0f22;
    text-decoration:underline;

}

/*==========================================================
    REDES SOCIAIS
==========================================================*/

.social-icons{

    display:flex;
    gap:14px;
    margin-top:8px;

}

.social-icons a{

    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#ffffff;
    color:var(--primary);

    border-radius:50%;

    font-size:20px;

    transition:var(--transition);

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.social-icons a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-4px);

}

/*==========================================================
    QUEM SOMOS - IMAGENS
==========================================================*/

.sobre-imagens{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.sobre-imagens img{

    width:85%;
    margin:0 auto;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:var(--transition);

}
.sobre-imagens img:hover{

    transform:scale(1.02);

}

/*==========================================================
    HERO - PÁGINAS INTERNAS
==========================================================*/

.hero-page{

    margin-top:72px;

    padding:28px 0;

    background:linear-gradient(135deg,#C8102E,#8B001C);

    color:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

}

.hero-content{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:35px;

}

.hero-logo{

    flex-shrink:0;

}

.hero-logo img{

    width:170px;

    height:auto;

    display:block;

    transition:.3s;

}

.hero-logo img:hover{

    transform:scale(1.05);

}

.hero-texto{

    max-width:620px;

}

.hero-texto h1{

    color:#fff;

    font-size:44px;

    font-weight:700;

    margin-bottom:12px;

}

.hero-texto p{

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

    font-size:18px;

    line-height:1.7;

    margin:0;

}

@media (max-width:768px){

    .hero-content{

        flex-direction:column;

        text-align:center;

        gap:18px;

    }

    .hero-logo img{

        width:130px;

    }

    .hero-texto h1{

        font-size:34px;

    }

    .hero-texto p{

        font-size:16px;

    }

}

/*==========================================================
    CARDS - PÁGINA FARMÁCIA POPULAR
==========================================================*/

.hero-card{

    border:none;

    border-radius:18px;

    box-shadow:0 10px 28px rgba(0,0,0,.08);

    transition:.35s;

    overflow:hidden;

}

.hero-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.hero-card .card-body{

    padding:35px;

}

.hero-card h3{

    color:#C8102E;

    margin-bottom:20px;

}

/*==========================================================
    LINKS DO RODAPÉ
==========================================================*/

footer a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

footer a:hover{

    color:#FFD54A;

    text-decoration:none;

}