/* ==========================================================================
   ARCANJO EDUCAÇÃO & INOVAÇÃO - DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Brand Colors (Official Palette) */
    --verde-principal: #12C7A3;
    --verde-secundario: #0DB08E;
    --azul-institucional: #03233D;
    --azul-profundo: #01182C;
    --ciano-tecnologico: #38E6DD;
    --branco: #FFFFFF;
    
    /* Neutral Colors */
    --cinza-claro: #F5F7FA;
    --cinza-medio: #E9EDF2;
    --texto-escuro: #2D3748;
    
    /* Layout Constants */
    --largura-maxima: 1200px;
    --espacamento-secao: 80px;
    
    /* Brand Gradients */
    --gradiente-oficial: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-secundario) 100%);
    --gradiente-hero: linear-gradient(135deg, rgba(3, 35, 61, 0.3) 0%, rgba(1, 24, 44, 0.4) 100%);
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--texto-escuro);
    background-color: var(--branco);
    line-height: 1.6;
}

/* Standard Alignment Container */
.container {
    width: 100%;
    max-width: var(--largura-maxima);
    margin: 0 auto;
    padding: 0 24px;
}

/* Base Sections */
section:not(.hero) {
    padding: var(--espacamento-secao) 0;
}

/* Global Section Headings */
section:not(.hero) h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--azul-institucional);
    margin-bottom: 40px;
    font-weight: 700;
}

section:not(.hero) h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradiente-oficial);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Navigation & Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(3, 35, 61, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

header.scrolled {
    background-color: var(--azul-institucional);
    box-shadow: 0 4px 20px rgba(1, 24, 44, 0.25);
}

nav { 
    display: flex; 
    justify-content: center;
    align-items: center;
    height: 100px;
    transition: height 0.3s ease;
    gap: 50px;
}

header.scrolled nav {
    height: 80px;
}

.logo img { 
    height: 70px;
    width: auto;
    transition: transform 0.3s ease; 
    cursor: pointer;
    vertical-align: middle;
}

header.scrolled .logo img {
    height: 55px;
}

.logo img:hover { 
    transform: scale(1.05); 
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 24px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a { 
    color: var(--branco); 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 1rem;
    transition: all 0.3s ease; 
    padding: 8px 12px; 
    border-bottom: 2px solid transparent; 
}

.nav-links a:hover { 
    color: var(--ciano-tecnologico); 
    border-bottom-color: var(--ciano-tecnologico); 
    text-shadow: 0 0 8px rgba(56, 230, 221, 0.5); 
}

/* Responsive Burger Menu */
.menu-toggle { 
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--branco);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: var(--gradiente-hero), url('../imagens/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--branco);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(56, 230, 221, 0.15) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.hero:hover::before { 
    opacity: 1; 
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    animation: fadeInDown 1s ease-out;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.hero-logo:hover {
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 { 
    font-size: 3.5rem; 
    font-weight: 800;
    margin-bottom: 24px; 
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero p { 
    font-size: 1.25rem; 
    margin-bottom: 35px; 
    opacity: 0.95; 
    font-weight: 400;
}

.hero-buttons { 
    display: flex; 
    gap: 16px; 
    justify-content: center; 
}

/* Quem Somos Section */
#quem-somos {
    background-color: var(--branco);
}

.quem-somos-wrapper { 
    max-width: 1000px; 
    margin: 0 auto; 
}

.quem-somos-intro { 
    display: flex; 
    align-items: center; 
    gap: 50px; 
}

.quem-somos-intro img { 
    width: 320px; 
    height: auto;
    border-radius: 20px; 
    box-shadow: 0 15px 35px rgba(1, 24, 44, 0.15); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.quem-somos-intro img:hover { 
    transform: scale(1.03); 
    box-shadow: 0 20px 45px rgba(1, 24, 44, 0.25); 
}

.intro-text { 
    text-align: left; 
    flex: 1; 
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--texto-escuro);
    margin-bottom: 24px;
}

/* Modal Styles */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(1, 24, 44, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0; 
    transition: opacity 0.3s ease; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.show { 
    opacity: 1; 
}
.modal-content { 
    background-color: var(--branco); 
    padding: 40px; 
    border-radius: 20px; 
    width: 90%; 
    max-width: 800px; 
    position: relative; 
    transform: translateY(-50px); 
    transition: transform 0.3s ease; 
    box-shadow: 0 20px 50px rgba(1, 24, 44, 0.3);
}

.modal.show .modal-content { 
    transform: translateY(0); 
}

.close-modal { 
    position: absolute; 
    top: 20px; 
    right: 30px; 
    font-size: 35px; 
    cursor: pointer; 
    color: var(--azul-institucional);
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--verde-principal);
}

.modal-body { 
    text-align: justify; 
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 20px;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--cinza-claro);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--verde-principal);
    border-radius: 10px;
}

.modal h3 {
    font-size: 1.8rem;
    color: var(--azul-institucional);
    margin-bottom: 20px;
    font-weight: 700;
}

.modal h3:not(:first-child) {
    margin-top: 30px;
}

.modal p {
    font-size: 1rem;
    color: var(--texto-escuro);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Áreas de Atuação */
#areas {
    background-color: var(--cinza-claro);
    padding: var(--espacamento-secao) 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--azul-institucional);
    margin-bottom: 30px;
}

.intro-text-areas {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: var(--texto-escuro);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.area-card {
    background: var(--branco);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(1, 24, 44, 0.05);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(1, 24, 44, 0.1);
}

.area-card h3 {
    color: var(--azul-institucional);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.diferenciais-container {
    background: var(--azul-institucional);
    color: var(--branco);
    padding: 40px;
    border-radius: 20px;
}

.diferenciais-container h3 {
    text-align: center;
    margin-bottom: 25px;
}

.diferenciais-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
}

.diferenciais-list li {
    font-size: 1rem;
}


/* Projetos Section */
#projetos {
    background-color: var(--branco);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.project-card { 
    border-radius: 15px;
    padding: 30px; 
    background: var(--branco);
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(1, 24, 44, 0.03);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--cinza-medio);
}

.project-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 35px rgba(1, 24, 44, 0.08); 
    border-color: var(--verde-principal);
}

.project-image-placeholder {
    font-size: 3rem;
    background-color: var(--cinza-claro);
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .project-image-placeholder {
    transform: scale(1.1);
    background-color: rgba(18, 199, 163, 0.1);
}

.project-card h4 {
    font-size: 1.3rem;
    color: var(--azul-institucional);
    margin-bottom: 10px;
    font-weight: 700;
}

.project-card p {
    font-size: 0.95rem;
    color: var(--texto-escuro);
    line-height: 1.6;
}

/* Parceiros Section */
.parceiros-section {
    background-color: var(--branco);
    padding: var(--espacamento-secao) 0;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.parceiros-grid img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.parceiros-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Depoimentos Section */
#depoimentos {
    background-color: var(--cinza-claro);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
    width: 100%;
}

.carousel-track:active {
    cursor: grabbing;
}

.testimonial-card {
    background: var(--branco);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(1, 24, 44, 0.04);
    text-align: center;
    border-left: 5px solid var(--verde-principal);
    position: relative;
    min-width: 100%;
    box-sizing: border-box;
}

.testimonial-card::before {
    content: "“";
    font-size: 6rem;
    color: var(--verde-principal);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    left: 30px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--azul-institucional);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--verde-secundario);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--verde-principal);
    color: var(--branco);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 10;
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-btn { padding: 10px 15px; font-size: 1rem; }
    .carousel-btn.prev { left: 0; }
    .carousel-btn.next { right: 0; }
}

/* Nossos Números Section (Metrics) */
.metrics-section { 
    background: var(--azul-profundo); 
    color: var(--branco);
    padding: var(--espacamento-secao) 0;
}

.metrics-section .section-title { 
    color: var(--branco);
    text-align: center;
    margin-bottom: 50px;
}

.metrics-bar { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 30px; 
    text-align: center;
}

.metric { 
    background: rgba(255, 255, 255, 0.03); 
    padding: 40px 30px; 
    border-radius: 20px; 
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.metric:hover { 
    transform: translateY(-10px) scale(1.03); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background-color: var(--azul-institucional);
    border-color: var(--verde-principal);
}

.metric h3 { 
    font-size: 3.5rem; 
    font-weight: 800;
    color: var(--verde-principal); 
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
}

.metric p { 
    font-size: 1.1rem; 
    color: rgba(255, 255, 255, 0.8); 
    font-weight: 500; 
}

.metric:hover h3 {
    color: var(--ciano-tecnologico);
    transform: scale(1.05);
}

.metric:hover p {
    color: var(--branco);
}

/* Button UI Components */
.btn { 
    display: inline-block; 
    background: var(--gradiente-oficial); 
    color: var(--branco); 
    padding: 14px 28px; 
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none; 
    border-radius: 8px; 
    border: none;
    cursor: pointer;
    transition: all 0.3s ease; 
    box-shadow: 0 4px 15px rgba(18, 199, 163, 0.2);
}

.btn:hover { 
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 199, 163, 0.4);
}

.btn-secondary { 
    background: transparent; 
    border: 2px solid var(--branco); 
    box-shadow: none;
}

.btn-secondary:hover { 
    background-color: var(--branco); 
    color: var(--azul-institucional); 
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    padding: 15px; 
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Footer Section */
footer { 
    background: var(--azul-profundo); 
    color: var(--branco); 
    padding: 40px 0; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center; 
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-content p {
    font-size: 1rem;
    opacity: 0.8;
}

.social-links { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
}

.social-links a { 
    color: var(--branco); 
    text-decoration: none; 
    font-size: 0.95rem; 
    padding: 8px 16px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-links a:hover { 
    background-color: var(--verde-principal);
    color: var(--azul-profundo);
    transform: translateY(-3px);
    font-weight: 600;
}

/* ==========================================================================
   Responsive & Media Queries
   ========================================================================== */

@media (max-width: 991px) {
    :root {
        --espacamento-secao: 60px;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    /* Menu Mobile & Toggle active state */
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100px;
        left: 0;
        background-color: var(--azul-institucional);
        padding: 30px 24px;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(1, 24, 44, 0.15);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px;
    }
    
    header.scrolled .nav-links {
        top: 80px;
    }

    /* Hero Section Mobile */
    .hero h1 { 
        font-size: 2.2rem; 
    }
    .hero p { 
        font-size: 1.1rem; 
    }
    .hero-buttons { 
        flex-direction: column; 
        gap: 12px; 
        align-items: center; 
    }
    .hero-buttons .btn { 
        width: 100%; 
        max-width: 280px; 
    }

    /* Quem Somos Mobile */
    .quem-somos-intro { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px;
    }
    .quem-somos-intro img { 
        width: 260px; 
    }
    .intro-text { 
        text-align: center; 
    }

    /* Typography */
    section:not(.hero) h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Footer Mobile */
    .footer-content {
        gap: 15px;
    }
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .social-links a {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* Cidades Atendidas Section */
.cidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cidade-card {
    background: var(--branco);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(1, 24, 44, 0.05);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid transparent;
}

.cidade-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 199, 163, 0.15);
    border-color: var(--verde-principal);
}

.map-icon {
    width: 50px;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%2312C7A3" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cidade-card h3 {
    color: var(--azul-institucional);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Modal adjustments for City List */
#cityList ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

#cityList li {
    padding: 12px;
    background: var(--cinza-claro);
    border-radius: 8px;
    text-align: center;
    color: var(--texto-escuro);
    font-weight: 500;
    transition: background 0.3s;
}

#cityList li:hover {
    background: var(--verde-principal);
    color: var(--branco);
}

/* Centralizando o modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 24, 44, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Centralização */
    display: flex;
    align-items: center;
    justify-content: center;
}

 / *   - - -   C A R O U S E L   S E C T I O N   - - -   * / 
 . c a r o u s e l - c o n t a i n e r   { 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
         m a x - w i d t h :   8 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
         p a d d i n g :   2 0 p x   0 ; 
 } 
 
 . c a r o u s e l - t r a c k   { 
         d i s p l a y :   f l e x ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e - i n - o u t ; 
         w i d t h :   1 0 0 % ; 
 } 
 
 . t e s t i m o n i a l - c a r d   { 
         m i n - w i d t h :   1 0 0 % ; 
         b o x - s i z i n g :   b o r d e r - b o x ; 
         p a d d i n g :   2 0 p x ; 
 } 
 
 . c a r o u s e l - b t n   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   5 0 % ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
         b a c k g r o u n d :   v a r ( - - v e r d e - p r i n c i p a l ) ; 
         c o l o r :   v a r ( - - b r a n c o ) ; 
         b o r d e r :   n o n e ; 
         p a d d i n g :   1 0 p x   1 5 p x ; 
         c u r s o r :   p o i n t e r ; 
         z - i n d e x :   1 0 ; 
 } 
 
 . c a r o u s e l - b t n . p r e v   {   l e f t :   0 ;   } 
 . c a r o u s e l - b t n . n e x t   {   r i g h t :   0 ;   } 
 
 
 
 . q u e m - s o m o s - a c t i o n s   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   2 0 p x ; 
         m a r g i n - t o p :   2 0 p x ; 
 } 
 
 . s o c i a l - i c o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 0 p x ; 
 } 
 
 . s o c i a l - i c o n s   a   i m g   { 
         w i d t h :   3 5 p x ; 
         h e i g h t :   3 5 p x ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
 } 
 
 . s o c i a l - i c o n s   a : h o v e r   i m g   { 
         t r a n s f o r m :   s c a l e ( 1 . 2 ) ; 
 } 
 
 
 
 / *   S o c i a l   I c o n s   -   M o d e r n   &   E l e g a n t   * / 
 . s o c i a l - i c o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 2 p x ; 
         m a r g i n - t o p :   1 5 p x ; 
 } 
 
 . s o c i a l - i c o n   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         w i d t h :   4 5 p x ; 
         h e i g h t :   4 5 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         b a c k g r o u n d - c o l o r :   v a r ( - - c i n z a - m e d i o ) ; 
         t r a n s i t i o n :   a l l   0 . 4 s   e a s e ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 / *   U s a n d o   p s e u d o - e l e m e n t o s   p a r a    c o n e s   m o d e r n o s   ( o u   p l a c e h o l d e r s   s e   p r e f e r i r )   * / 
 . s o c i a l - i c o n : : a f t e r   { 
         c o n t e n t :   ' ' ; 
         w i d t h :   2 0 p x ; 
         h e i g h t :   2 0 p x ; 
         b a c k g r o u n d - s i z e :   c o n t a i n ; 
         b a c k g r o u n d - r e p e a t :   n o - r e p e a t ; 
         b a c k g r o u n d - p o s i t i o n :   c e n t e r ; 
 } 
 
 . s o c i a l - i c o n . w h a t s a p p : : a f t e r   {   b a c k g r o u n d - i m a g e :   u r l ( ' h t t p s : / / c d n - i c o n s - p n g . f l a t i c o n . c o m / 5 1 2 / 3 6 7 0 / 3 6 7 0 0 5 1 . p n g ' ) ;   } 
 . s o c i a l - i c o n . i n s t a g r a m : : a f t e r   {   b a c k g r o u n d - i m a g e :   u r l ( ' h t t p s : / / c d n - i c o n s - p n g . f l a t i c o n . c o m / 5 1 2 / 3 6 7 0 / 3 6 7 0 2 7 4 . p n g ' ) ;   } 
 . s o c i a l - i c o n . f a c e b o o k : : a f t e r   {   b a c k g r o u n d - i m a g e :   u r l ( ' h t t p s : / / c d n - i c o n s - p n g . f l a t i c o n . c o m / 5 1 2 / 3 6 7 0 / 3 6 7 0 0 3 2 . p n g ' ) ;   } 
 
 . s o c i a l - i c o n : h o v e r   { 
         b a c k g r o u n d - c o l o r :   v a r ( - - v e r d e - p r i n c i p a l ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
         b o x - s h a d o w :   0   8 p x   1 5 p x   r g b a ( 1 8 ,   1 9 9 ,   1 6 3 ,   0 . 3 ) ; 
 } 
 
 . s o c i a l - i c o n : h o v e r : : a f t e r   { 
         f i l t e r :   b r i g h t n e s s ( 0 )   i n v e r t ( 1 ) ; 
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 } 
 
 
 
 . c o n t a c t - i n f o   { 
         m a r g i n - b o t t o m :   2 p x   ! i m p o r t a n t ; 
         l i n e - h e i g h t :   1 . 2   ! i m p o r t a n t ; 
 } 
  
 